diff --git a/install.sh b/install.sh index 8532a98..582dfb2 100755 --- a/install.sh +++ b/install.sh @@ -17,6 +17,8 @@ fi THEME_NAME=Orchis COLOR_VARIANTS=('' '-dark') +SIZE_VARIANTS=('' '-compact') + usage() { cat << EOF Usage: $0 [OPTION]... @@ -25,6 +27,7 @@ OPTIONS: -d, --dest DIR Specify destination directory (Default: $DEST_DIR) -n, --name NAME Specify theme name (Default: $THEME_NAME) -c, --color VARIANT... Specify color variant(s) [standard|dark] (Default: All variants)s) + -s, --size VARIANT Specify size variant [standard|compact] (Default: All variants) -h, --help Show help INSTALLATION EXAMPLES: @@ -41,8 +44,9 @@ install() { local dest="$1" local name="$2" local color="$3" + local size="$4" - local THEME_DIR="$dest/$name$color" + local THEME_DIR="$dest/$name$color$size" [[ -d "$THEME_DIR" ]] && rm -rf "${THEME_DIR:?}" @@ -53,20 +57,20 @@ install() { echo "[Desktop Entry]" >> "${THEME_DIR}/index.theme" echo "Type=X-GNOME-Metatheme" >> "${THEME_DIR}/index.theme" - echo "Name=$name$color" >> "${THEME_DIR}/index.theme" + echo "Name=$name$color$size" >> "${THEME_DIR}/index.theme" echo "Comment=An Materia Gtk+ theme based on Elegant Design" >> "${THEME_DIR}/index.theme" echo "Encoding=UTF-8" >> "${THEME_DIR}/index.theme" echo "" >> "${THEME_DIR}/index.theme" echo "[X-GNOME-Metatheme]" >> "${THEME_DIR}/index.theme" - echo "GtkTheme=$name$color" >> "${THEME_DIR}/index.theme" - echo "MetacityTheme=$name$color" >> "${THEME_DIR}/index.theme" + echo "GtkTheme=$name$color$size" >> "${THEME_DIR}/index.theme" + echo "MetacityTheme=$name$color$size" >> "${THEME_DIR}/index.theme" echo "IconTheme=Adwaita" >> "${THEME_DIR}/index.theme" echo "CursorTheme=Adwaita" >> "${THEME_DIR}/index.theme" echo "ButtonLayout=close,minimize,maximize:menu" >> "${THEME_DIR}/index.theme" mkdir -p "${THEME_DIR}/gnome-shell" cp -ur "${SRC_DIR}"/gnome-shell/{extensions,message-indicator-symbolic.svg,pad-osd.css} "${THEME_DIR}/gnome-shell" - cp -ur "${SRC_DIR}/gnome-shell/gnome-shell$color.css" "${THEME_DIR}/gnome-shell/gnome-shell.css" + cp -ur "${SRC_DIR}/gnome-shell/gnome-shell$color$size.css" "${THEME_DIR}/gnome-shell/gnome-shell.css" cp -ur "${SRC_DIR}/gnome-shell/common-assets" "${THEME_DIR}/gnome-shell/assets" cp -ur "${SRC_DIR}"/gnome-shell/assets$color/*.svg "${THEME_DIR}/gnome-shell/assets" @@ -84,9 +88,9 @@ install() { mkdir -p "$THEME_DIR/gtk-3.0" ln -s ../gtk-assets "$THEME_DIR/gtk-3.0/assets" - cp -r "$SRC_DIR/gtk/3.0/gtk$color.css" "$THEME_DIR/gtk-3.0/gtk.css" + cp -r "$SRC_DIR/gtk/3.0/gtk$color$size.css" "$THEME_DIR/gtk-3.0/gtk.css" [[ "$color" != '-dark' ]] && \ - cp -r "$SRC_DIR/gtk/3.0/gtk-dark.css" "$THEME_DIR/gtk-3.0/gtk-dark.css" + cp -r "$SRC_DIR/gtk/3.0/gtk-dark$size.css" "$THEME_DIR/gtk-3.0/gtk-dark.css" mkdir -p "$THEME_DIR/plank" cp -r "$SRC_DIR/plank/dock.theme" "$THEME_DIR/plank" @@ -128,6 +132,29 @@ while [[ "$#" -gt 0 ]]; do esac done ;; + -s|--size) + shift + for variant in "$@"; do + case "$variant" in + standard) + sizes+=("${SIZE_VARIANTS[0]}") + shift + ;; + compact) + sizes+=("${SIZE_VARIANTS[1]}") + shift + ;; + -*) + break + ;; + *) + echo "ERROR: Unrecognized size variant '${1:-}'." + echo "Try '$0 --help' for more information." + exit 1 + ;; + esac + done + ;; -h|--help) usage exit 0 @@ -144,8 +171,14 @@ if [[ "${#colors[@]}" -eq 0 ]] ; then colors=("${COLOR_VARIANTS[@]}") fi +if [[ "${#sizes[@]}" -eq 0 ]] ; then + sizes=("${SIZE_VARIANTS[@]}") +fi + for color in "${colors[@]}"; do - install "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$color" + for size in "${sizes[@]}"; do + install "${dest:-$DEST_DIR}" "${_name:-$THEME_NAME}" "$color" "$size" + done done echo diff --git a/parse-sass.sh b/parse-sass.sh index 067ecc1..b7eccc2 100755 --- a/parse-sass.sh +++ b/parse-sass.sh @@ -9,14 +9,23 @@ fi SASSC_OPT=('-M' '-t' 'expanded') _COLOR_VARIANTS=('' '-dark') +_SIZE_VARIANTS=('' '-compact') if [[ -n "${COLOR_VARIANTS:-}" ]]; then IFS=', ' read -r -a _COLOR_VARIANTS <<< "${COLOR_VARIANTS:-}" fi +if [[ -n "${SIZE_VARIANTS:-}" ]]; then + IFS=', ' read -r -a _SIZE_VARIANTS <<< "${SIZE_VARIANTS:-}" +fi + echo "== Generating the CSS..." for color in "${_COLOR_VARIANTS[@]}"; do - sassc "${SASSC_OPT[@]}" "src/gtk/3.0/gtk$color."{scss,css} - sassc "${SASSC_OPT[@]}" "src/gnome-shell/gnome-shell$color."{scss,css} + for size in "${_SIZE_VARIANTS[@]}"; do + sassc "${SASSC_OPT[@]}" "src/gtk/3.0/gtk$color$size."{scss,css} + sassc "${SASSC_OPT[@]}" "src/gnome-shell/gnome-shell$color$size."{scss,css} + done done + +echo "== done!" diff --git a/src/_sass/_colors.scss b/src/_sass/_colors.scss index cb82192..dff95ba 100644 --- a/src/_sass/_colors.scss +++ b/src/_sass/_colors.scss @@ -53,7 +53,7 @@ $primary: if($variant == 'light', $primary-dark, $ $background: if($variant == 'light', #F2F2F2, #212121); $surface: if($variant == 'light', #FFFFFF, #3C3C3C); $base: if($variant == 'light', #FFFFFF, #2C2C2C); // semi-surface with 1dp elevation -$base-alt: if($variant == 'light', #FAFAFA, #2C2C2C); +$base-alt: if($variant == 'light', #FAFAFA, #242424); $os-background: #212121; $tooltip: rgba(#616161, 0.9); diff --git a/src/_sass/gtk/_common-3.20.scss b/src/_sass/gtk/_common-3.20.scss index cafc00d..5d40894 100644 --- a/src/_sass/gtk/_common-3.20.scss +++ b/src/_sass/gtk/_common-3.20.scss @@ -1876,7 +1876,7 @@ notebook { font-weight: 500; &:hover { - background-color: $overlay-hover; + background-color: $frame; color: $text; } @@ -3277,7 +3277,7 @@ tooltip { } // padding: 4px; /* not working */ - border-radius: $circular-radius; + border-radius: $corner-radius/2; box-shadow: none; // otherwise it gets inherited by windowframe.csd &:not(.csd):not(.unity-csd) { diff --git a/src/_sass/gtk/apps/_gnome-3.22.scss b/src/_sass/gtk/apps/_gnome-3.22.scss index 11b3f71..3b95eac 100644 --- a/src/_sass/gtk/apps/_gnome-3.22.scss +++ b/src/_sass/gtk/apps/_gnome-3.22.scss @@ -288,7 +288,7 @@ .icon-item-background { padding: 4px; - border-radius: 6px; + border-radius: $bar-size; } &:selected { @@ -298,8 +298,8 @@ } } -.nautilus-window .view { - border-radius: 6px; +.nautilus-window notebook :not(treeview).view { + border-radius: $bar-size; selection, &:selected { diff --git a/src/gnome-shell/gnome-shell-compact.css b/src/gnome-shell/gnome-shell-compact.css new file mode 100644 index 0000000..bb8c778 --- /dev/null +++ b/src/gnome-shell/gnome-shell-compact.css @@ -0,0 +1,3474 @@ +/* This stylesheet is generated, DO NOT EDIT */ +/* 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 */ +* { + transition-duration: 150ms; +} + +stage { + font-family: "M+ 1c", Roboto, Cantarell, Sans-Serif; + font-size: 9.75pt; + font-weight: 400; + color: rgba(0, 0, 0, 0.87); +} + +/* WIDGETS */ +/* Buttons */ +.button { + min-height: 32px; + padding: 0 16px; + border-width: 0; + border-radius: 12px; + font-size: 9.75pt; + font-weight: 500; + color: rgba(0, 0, 0, 0.54); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:hover { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:active { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.2); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:insensitive { + color: rgba(0, 0, 0, 0.26); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:focus { + color: rgba(0, 0, 0, 0.87); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +/* Entries */ +GPasteSearchEntry, +StEntry { + min-height: 32px; + padding: 0 8px; + border-radius: 0; + border-width: 0; + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); + font-size: 11.25pt; + font-weight: 400; + caret-color: rgba(0, 0, 0, 0.54); + color: rgba(0, 0, 0, 0.54); + background-color: #ffffff; + border-radius: 100px; + margin: 2px 6px 6px; + border: 2px solid transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 5px 8px rgba(0, 0, 0, 0.05); +} + +GPasteSearchEntry:hover, +StEntry:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.12); +} + +GPasteSearchEntry:focus, +StEntry:focus { + color: rgba(0, 0, 0, 0.87); + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.08); + border: 2px solid #4586D8; +} + +GPasteSearchEntry:insensitive, +StEntry:insensitive { + color: rgba(255, 255, 255, 0.7); +} + +GPasteSearchEntry StIcon.capslock-warning, +StEntry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #FF6D00; + padding: 0 0; +} + +/* Scrollbars */ +StScrollView.vfade { + -st-vfade-offset: 32px; +} + +StScrollView.hfade { + -st-hfade-offset: 32px; +} + +StScrollBar { + padding: 0; +} + +StScrollView StScrollBar { + min-width: 16px; + min-height: 6px; +} + +StScrollBar StBin#trough { + margin: 6px; + border-radius: 100px; + background-color: rgba(0, 0, 0, 0.12); +} + +StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 100px; + background-color: rgba(0, 0, 0, 0.38); + margin: 6px; +} + +StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: rgba(0, 0, 0, 0.54); +} + +StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: rgba(0, 0, 0, 0.87); +} + +#overview StScrollBar StBin#trough, #screenShieldNotifications StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.15); +} + +#overview StScrollBar StButton#vhandle, #screenShieldNotifications StScrollBar StButton#vhandle, #overview StScrollBar StButton#hhandle, #screenShieldNotifications StScrollBar StButton#hhandle { + background-color: rgba(255, 255, 255, 0.5); +} + +#overview StScrollBar StButton#vhandle:hover, #screenShieldNotifications StScrollBar StButton#vhandle:hover, #overview StScrollBar StButton#hhandle:hover, #screenShieldNotifications StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.7); +} + +#overview StScrollBar StButton#vhandle:active, #screenShieldNotifications StScrollBar StButton#vhandle:active, #overview StScrollBar StButton#hhandle:active, #screenShieldNotifications StScrollBar StButton#hhandle:active { + background-color: rgba(255, 255, 255, 0.85); +} + +/* Slider */ +.slider { + height: 20px; + color: #4586D8; + -slider-height: 2px; + -slider-background-color: rgba(0, 0, 0, 0.2); + -slider-border-color: transparent; + -slider-active-background-color: #4586D8; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 7px; + -slider-handle-border-width: 0; + -slider-handle-border-color: rgba(0, 0, 0, 0.12); + -barlevel-height: 2px; + -barlevel-background-color: rgba(0, 0, 0, 0.2); + -barlevel-border-color: transparent; + -barlevel-active-background-color: #4586D8; + -barlevel-active-border-color: transparent; + -barlevel-overdrive-color: #FF5252; + -barlevel-overdrive-border-color: transparent; + -barlevel-overdrive-separator-width: 2px; + -barlevel-border-width: 0; +} + +/* Check Boxes */ +.check-box * { + min-height: 16px; + padding: 8px 0; +} + +.check-box StBoxLayout { + spacing: 8px; +} + +.check-box StBin { + width: 24px; + height: 24px; + padding: 4px; + border-radius: 100px; + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:focus StBin { + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:hover StBin { + background-color: rgba(0, 0, 0, 0.12); +} + +.check-box:active StBin { + background-color: rgba(0, 0, 0, 0.2); +} + +.check-box:checked StBin { + background-image: url("assets/checkbox.svg"); +} + +.check-box:focus:checked StBin { + background-image: url("assets/checkbox.svg"); +} + +.check-box:hover:checked StBin { + background-color: rgba(69, 134, 216, 0.15); +} + +.check-box:active:checked StBin { + background-color: rgba(69, 134, 216, 0.3); +} + +/* Switches */ +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch:checked { + background-image: url("assets/toggle-on.svg"); +} + +.popup-menu-item.selected .toggle-switch { + background-image: url("assets/toggle-off.svg"); +} + +.popup-menu-item.selected .toggle-switch:checked { + background-image: url("assets/toggle-on.svg"); +} + +.toggle-switch-us { + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch-us:checked { + background-image: url("assets/toggle-on.svg"); +} + +.toggle-switch-intl { + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch-intl:checked { + background-image: url("assets/toggle-on.svg"); +} + +/* links */ +.shell-link { + border-radius: 12px; + color: #4586D8; + background-color: transparent; +} + +.shell-link:hover { + color: #4586D8; + background-color: rgba(69, 134, 216, 0.15); +} + +.shell-link:active { + color: #4586D8; + background-color: rgba(69, 134, 216, 0.3); +} + +/* Modal Dialogs */ +.headline { + font-size: 15pt; + font-weight: 500; +} + +.lightbox { + background-color: black; +} + +.flashspot { + background-color: white; +} + +.modal-dialog { + border-radius: 24px; + color: rgba(0, 0, 0, 0.87); + background-color: #ffffff; + border: 2px solid transparent; + box-shadow: 0 0 transparent; +} + +.modal-dialog .modal-dialog-content-box { + padding: 24px; +} + +.modal-dialog .run-dialog-entry { + width: 20em; + margin-bottom: 6px; +} + +.modal-dialog .run-dialog-error-box { + padding-top: 16px; + spacing: 6px; +} + +.modal-dialog .run-dialog-button-box { + margin: 3px; + padding-top: 1em; +} + +.modal-dialog .run-dialog-label { + font-size: 1em; + font-weight: normal; + color: rgba(0, 0, 0, 0.38); + padding-bottom: .4em; +} + +.modal-dialog-linked-button { + min-height: 40px; + padding: 0 16px; + border: none; + margin-bottom: 6px; + font-size: 9.75pt; + font-weight: 500; + color: rgba(0, 0, 0, 0.62); + background-color: rgba(0, 0, 0, 0.1); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:hover { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.15); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:active { + color: white; + background-color: #4586D8; + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:insensitive { + color: rgba(0, 0, 0, 0.26); + background-color: rgba(0, 0, 0, 0.1); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:focus { + color: #4586D8; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:focus:active { + color: white; +} + +.modal-dialog-linked-button:first-child { + margin-left: 6px; + border-radius: 100px 0px 0px 100px; +} + +.modal-dialog-linked-button:last-child { + margin-right: 6px; + border-right-width: 0px; + border-radius: 0px 100px 100px 0; +} + +.modal-dialog-linked-button:first-child:last-child { + margin: 0 6px 6px 6px; + border-right-width: 0px; + border-radius: 100px; +} + +.show-processes-dialog-subject, +.mount-dialog-subject, +.end-session-dialog-subject { + font-size: 15pt; + font-weight: 500; +} + +/* Message Dialog */ +.message-dialog-main-layout { + padding: 12px 20px 0; + spacing: 12px; +} + +.message-dialog-content { + max-width: 28em; + spacing: 20px; +} + +.message-dialog-icon { + min-width: 48px; + icon-size: 48px; +} + +.message-dialog-title { + font-weight: bold; +} + +.message-dialog-subtitle { + color: rgba(0, 0, 0, 0.54); + font-weight: bold; +} + +/* End Session Dialog */ +.end-session-dialog { + spacing: 42px; + border: 2px solid transparent; +} + +.end-session-dialog .modal-dialog-linked-button:last-child { + color: white; + background-color: #FF5252; +} + +.end-session-dialog .modal-dialog-linked-button:last-child:hover { + color: white; + background-color: #ff8080; +} + +.end-session-dialog .modal-dialog-linked-button:last-child:active { + color: white; + background-color: #ff3939; +} + +.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: #FF6D00; + padding-top: 6px; +} + +.end-session-dialog-warning:rtl { + text-align: right; +} + +.end-session-dialog-logout-icon { + border-radius: 5px; + width: 48px; + height: 48px; + background-size: contain; +} + +.end-session-dialog-shutdown-icon { + color: rgba(0, 0, 0, 0.38); + width: 48px; + height: 48px; +} + +.end-session-dialog-inhibitor-layout { + spacing: 16px; + max-height: 200px; + padding-right: 65px; + padding-left: 65px; +} + +.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: rgba(0, 0, 0, 0.38); + font-size: 1em; +} + +/* ShellMountOperation Dialogs */ +.shell-mount-operation-icon { + icon-size: 48px; +} + +.mount-dialog { + spacing: 24px; +} + +.mount-dialog .message-dialog-title { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; + max-width: 34em; +} + +.mount-dialog .message-dialog-title:rtl { + padding-left: 0px; + padding-right: 17px; +} + +.mount-dialog .message-dialog-body { + padding-left: 17px; + width: 28em; +} + +.mount-dialog .message-dialog-body:rtl { + padding-left: 0px; + padding-right: 17px; +} + +.mount-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; +} + +.mount-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; +} + +.mount-dialog-app-list-item { + color: rgba(0, 0, 0, 0.87); +} + +.mount-dialog-app-list-item:hover { + color: rgba(0, 0, 0, 0.87); +} + +.mount-dialog-app-list-item:ltr { + padding-right: 1em; +} + +.mount-dialog-app-list-item:rtl { + padding-left: 1em; +} + +.mount-dialog-app-list-item-icon:ltr { + padding-right: 17px; +} + +.mount-dialog-app-list-item-icon:rtl { + padding-left: 17px; +} + +.mount-dialog-app-list-item-name { + font-size: 1em; +} + +/* Password or Authentication Dialog */ +.prompt-dialog { + width: 34em; + border: 2px solid transparent; +} + +.prompt-dialog .message-dialog-main-layout { + spacing: 24px; + padding: 10px; +} + +.prompt-dialog .message-dialog-content { + spacing: 16px; +} + +.prompt-dialog .message-dialog-title { + font-size: 15pt; + font-weight: 500; + color: rgba(0, 0, 0, 0.87); +} + +.prompt-dialog-description:rtl { + text-align: right; +} + +.prompt-dialog-password-box { + spacing: 1em; + padding-bottom: 1em; +} + +.prompt-dialog-error-label { + font-size: 1em; + color: #DD2C00; + padding-bottom: 8px; +} + +.prompt-dialog-info-label { + font-size: 1em; + padding-bottom: 8px; +} + +.hidden { + color: rgba(0, 0, 0, 0); +} + +.prompt-dialog-null-label { + font-size: 1em; + padding-bottom: 8px; +} + +/* Polkit Dialog */ +.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: #FF6D00; +} + +.polkit-dialog-user-icon { + border-radius: 5px; + background-size: contain; + width: 48px; + height: 48px; +} + +/* Audio selection dialog */ +.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 rgba(0, 0, 0, 0.12); + border-radius: 12px; +} + +.audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus { + background-color: #4586D8; +} + +.audio-selection-device-box { + padding: 20px; + spacing: 20px; +} + +.audio-selection-device-icon { + icon-size: 64px; +} + +/* Access Dialog */ +.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: rgba(0, 0, 0, 0.54); + font-weight: bold; +} + +/* Geolocation Dialog */ +.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: rgba(0, 0, 0, 0.54); + font-weight: bold; +} + +/* Extension Dialog */ +.extension-dialog .message-dialog-main-layout { + spacing: 24px; + padding: 10px; +} + +.extension-dialog .message-dialog-title { + color: rgba(0, 0, 0, 0.54); +} + +/* Inhibit-Shortcuts Dialog */ +.inhibit-shortcuts-dialog { + spacing: 30px; +} + +/* Network Agent Dialog */ +.network-dialog-secret-table { + spacing-rows: 15px; + spacing-columns: 1em; +} + +.keyring-dialog-control-table { + spacing-rows: 15px; + spacing-columns: 1em; +} + +/* Popovers/Menus */ +.popup-menu { + min-width: 12em; + color: rgba(0, 0, 0, 0.87); + background-color: transparent; +} + +.popup-menu .popup-menu-arrow { + width: 16px; + height: 16px; +} + +.popup-menu .popup-sub-menu { + margin: 0 4px; + color: rgba(0, 0, 0, 0.75); + background-color: rgba(0, 0, 0, 0.1); + border-radius: 0 0 12px 12px; + border: none; + box-shadow: none; +} + +.popup-menu .popup-sub-menu .popup-menu-item { + margin: 0; + border-radius: 12px; + color: rgba(0, 0, 0, 0.75); +} + +.popup-menu .popup-sub-menu .popup-menu-item:hover { + color: rgba(0, 0, 0, 0.85); + background-color: rgba(0, 0, 0, 0.15); +} + +.popup-menu .popup-sub-menu .popup-menu-item:active { + color: rgba(0, 0, 0, 0.85); + background-color: rgba(0, 0, 0, 0.2); +} + +.popup-menu .popup-sub-menu .popup-menu-item.selected:active { + color: rgba(0, 0, 0, 0.75); +} + +.popup-menu .popup-sub-menu .popup-menu-item:not(:first-child):last-child { + border-radius: 0 0 12px 12px; +} + +.popup-menu .popup-menu-item { + spacing: 8px; + margin: 0 4px; + color: rgba(0, 0, 0, 0.87); + transition-duration: 100ms; + border-radius: 100px; +} + +.popup-menu .popup-menu-item:ltr { + padding: .5em 2em .5em 0em; +} + +.popup-menu .popup-menu-item:rtl { + padding: .5em 0em .5em 2em; +} + +.popup-menu .popup-menu-item:checked { + background-color: rgba(0, 0, 0, 0.15); + color: rgba(0, 0, 0, 0.75); + font-weight: normal; + border-radius: 12px 12px 0 0; + border: none; + box-shadow: none; +} + +.popup-menu .popup-menu-item:checked.selected { + background-color: rgba(0, 0, 0, 0.2); + color: rgba(0, 0, 0, 0.85); +} + +.popup-menu .popup-menu-item:checked:active { + background-color: #dfdfdf; + color: rgba(0, 0, 0, 0.75); +} + +.popup-menu .popup-menu-item:checked.selected:active { + background-color: rgba(0, 0, 0, 0.15); + color: rgba(0, 0, 0, 0.75); +} + +.popup-menu .popup-menu-item:checked:insensitive { + color: rgba(0, 0, 0, 0.35); +} + +.popup-menu .popup-menu-item.selected { + background-color: rgba(0, 0, 0, 0.12); + color: rgba(0, 0, 0, 0.87); + transition-duration: 0ms; +} + +.popup-menu .popup-menu-item:active { + background-color: rgba(0, 0, 0, 0.2); + color: rgba(0, 0, 0, 0.87); + transition-duration: 150ms; +} + +.popup-menu .popup-menu-item.selected:active { + color: rgba(0, 0, 0, 0.87); +} + +.popup-menu .popup-menu-item:insensitive { + color: rgba(0, 0, 0, 0.38); +} + +.popup-menu .popup-inactive-menu-item { + color: rgba(0, 0, 0, 0.87); +} + +.popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(0, 0, 0, 0.38); +} + +.popup-menu.panel-menu { + -boxpointer-gap: 4px; + margin-bottom: 1.75em; +} + +.popup-menu-ornament { + text-align: right; + width: 16px; + height: 16px; +} + +.candidate-popup-boxpointer { + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -arrow-box-shadow: none; + margin: 2px 10px 16px; + background-color: rgba(255, 255, 255, 0.95); + border-radius: 12px; + box-shadow: 0 10px 10px rgba(0, 0, 0, 0.285), 0 6px 3px rgba(0, 0, 0, 0.345); +} + +.popup-menu-boxpointer { + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -arrow-box-shadow: none; + margin: 0; + background-color: transparent; + border-radius: 0; + box-shadow: none; +} + +.popup-menu-boxpointer .popup-menu-content { + margin: 4px 10px 16px; + background-color: rgba(255, 255, 255, 0.95); + border-radius: 12px; + box-shadow: 0 10px 10px rgba(0, 0, 0, 0.285), 0 6px 3px rgba(0, 0, 0, 0.345); +} + +.popup-separator-menu-item { + height: 0; + margin: 0 0; + background-color: transparent; + border-color: transparent; + border-bottom-width: 0; + border-bottom-style: solid; +} + +.system-switch-user-submenu-icon.user-icon { + icon-size: 20px; + padding: 0 2px; +} + +.system-switch-user-submenu-icon.default-icon { + icon-size: 16px; + padding: 0 4px; +} + +#appMenu { + spinner-image: url("process-working.svg"); + spacing: 4px; +} + +#appMenu .label-shadow { + color: transparent; +} + +.aggregate-menu { + min-width: 21em; +} + +.aggregate-menu .popup-menu-icon { + padding: 0 4px; + -st-icon-style: symbolic; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:ltr { + /* 12px spacing + 2*4px padding */ + padding-left: 20px; + margin-left: 1.09em; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:rtl { + /* 12px spacing + 2*4px padding */ + padding-right: 20px; + margin-right: 1.09em; +} + +.system-menu-action { + color: rgba(0, 0, 0, 0.54); + background-color: rgba(0, 0, 0, 0.12); + border-radius: 100px; + /* wish we could do 50% */ + padding: 12px; + border: none; + -st-icon-style: symbolic; +} + +.system-menu-action:hover, .system-menu-action:focus { + background-color: rgba(0, 0, 0, 0.2); + color: rgba(0, 0, 0, 0.87); + border: none; + padding: 12px; +} + +.system-menu-action:active { + background-color: #4586D8; + color: white; +} + +.system-menu-action > StIcon { + icon-size: 16px; +} + +.background-menu { + -boxpointer-gap: 8px; + -arrow-rise: 0; +} + +/* 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; + margin: 32px; + min-width: 64px; + min-height: 64px; +} + +.osd-window .osd-monitor-label { + font-size: 45px; + font-weight: 400; +} + +.osd-window .level { + height: 4px; + border-radius: 2px; + background-color: rgba(69, 134, 216, 0.3); + color: rgba(0, 0, 0, 0.87); + -barlevel-height: 4px; + -barlevel-background-color: rgba(69, 134, 216, 0.3); + -barlevel-active-background-color: #4586D8; + -barlevel-overdrive-color: #FF5252; + -barlevel-overdrive-separator-width: 3px; + -barlevel-border-width: 0; +} + +.osd-window .level-bar { + background-color: #4586D8; + border-radius: 2px; +} + +/* Pad OSD */ +.pad-osd-window { + padding: 32px; + background-color: rgba(0, 0, 0, 0.6); +} + +.pad-osd-window .pad-osd-title-box { + spacing: 12px; +} + +.pad-osd-window .pad-osd-title-menu-box { + spacing: 6px; +} + +.combo-box-label { + width: 15em; +} + +/* App Switcher */ +.switcher-popup { + padding: 8px; + spacing: 16px; +} + +.switcher-list-item-container { + spacing: 8px; +} + +.switcher-list .item-box { + padding: 8px; + border-radius: 12px; +} + +.switcher-list .item-box:outlined { + padding: 8px; + border: none; + background-color: rgba(0, 0, 0, 0.12); + color: rgba(0, 0, 0, 0.87); +} + +.switcher-list .item-box:selected { + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); +} + +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} + +.switcher-list .thumbnail { + width: 256px; +} + +.switcher-list .separator { + width: 1px; + background: rgba(0, 0, 0, 0.12); +} + +.switcher-arrow { + border-color: rgba(0, 0, 0, 0); + color: rgba(0, 0, 0, 0.38); +} + +.switcher-arrow:highlighted { + color: rgba(0, 0, 0, 0.87); +} + +.input-source-switcher-symbol { + font-size: 45px; + font-weight: 400; + width: 96px; + height: 96px; +} + +/* Window Cycler */ +.cycler-highlight { + border: 4px solid #4586D8; +} + +/* Workspace Switcher */ +.workspace-switcher-group { + padding: 8px; +} + +.workspace-switcher { + background: transparent; + border: 0px; + border-radius: 0px; + padding: 0px; + spacing: 8px; +} + +.ws-switcher-active-up, .ws-switcher-active-down { + height: 48px; + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); + background-size: 32px; + border-radius: 12px; +} + +.ws-switcher-box { + height: 48px; + border: none; + background: rgba(0, 0, 0, 0.12); + border-radius: 12px; +} + +.osd-window, +.resize-popup, +.switcher-list, .workspace-switcher-container { + color: rgba(0, 0, 0, 0.87); + background-color: #ffffff; + border: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + border-radius: 12px; + padding: 12px; +} + +/* Tiled window previews */ +.tile-preview { + background-color: rgba(69, 134, 216, 0.3); + border: 1px solid #4586D8; +} + +.tile-preview-left.on-primary { + border-radius: 0 0 0 0; +} + +.tile-preview-right.on-primary { + border-radius: 0 0 0 0; +} + +.tile-preview-left.tile-preview-right.on-primary { + border-radius: 0 0 0 0; +} + +/* TOP BAR */ +#panel { + background-color: rgba(0, 0, 0, 0.5); + /* transition from solid to transparent */ + transition-duration: 250ms; + font-weight: bold; + height: 34px; + box-shadow: 0 0 8px rgba(0, 0, 0, 0.2), 0 0 4px rgba(0, 0, 0, 0.3); + border-radius: 9999px; + margin: 2px; +} + +#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { + background-color: transparent; +} + +#panel #panelLeft, #panel #panelCenter { + spacing: 0; +} + +#panel .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: rgba(0, 0, 0, 0.5); + -panel-corner-border-width: 0; + -panel-corner-border-color: transparent; +} + +#panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { + -panel-corner-border-color: rgba(255, 255, 255, 0.85); +} + +#panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-corner.unlock-screen { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-color: transparent; +} + +#panel .panel-corner StLabel { + padding: 0 4px; +} + +#panel .panel-button { + margin: 4px 6px; + -natural-hpadding: 2px; + -minimum-hpadding: 2px; + font-weight: bold; + color: #dedede; + text-shadow: none; + border-radius: 100px; + transition-duration: 150ms; +} + +#panel .panel-button StLabel { + padding: 0 3px; +} + +#panel .panel-button .popup-menu-arrow { + width: 0; + height: 0; +} + +#panel .panel-button .app-menu-icon { + -st-icon-style: symbolic; + margin-left: 4px; + margin-right: 0; +} + +#panel .panel-button .system-status-icon, +#panel .panel-button .app-menu-icon > StIcon, +#panel .panel-button .popup-menu-arrow { + icon-shadow: none; +} + +#panel .panel-button:hover { + color: #dedede; + background-color: rgba(255, 255, 255, 0.15); + text-shadow: none; +} + +#panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { + background-color: rgba(255, 255, 255, 0.25); + color: rgba(255, 255, 255, 0.85); + text-shadow: none; + box-shadow: none; +} + +#panel .panel-button:active .system-status-icon, +#panel .panel-button:active .app-menu-icon > StIcon, +#panel .panel-button:active .popup-menu-arrow, #panel .panel-button:overview .system-status-icon, +#panel .panel-button:overview .app-menu-icon > StIcon, +#panel .panel-button:overview .popup-menu-arrow, #panel .panel-button:focus .system-status-icon, +#panel .panel-button:focus .app-menu-icon > StIcon, +#panel .panel-button:focus .popup-menu-arrow, #panel .panel-button:checked .system-status-icon, +#panel .panel-button:checked .app-menu-icon > StIcon, +#panel .panel-button:checked .popup-menu-arrow { + icon-shadow: none; +} + +#panel .panel-button .system-status-icon { + icon-size: 1.2307692308em; + padding: 0 3px; +} + +.unlock-screen #panel .panel-button, +.login-screen #panel .panel-button, +.lock-screen #panel .panel-button { + color: rgba(255, 255, 255, 0.7); +} + +.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: rgba(255, 255, 255, 0.85); +} + +#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: #DD2C00; +} + +#panel .remote-access-indicator { + color: #FF6D00; +} + +#panel.solid { + background-color: #000000; + /* transition from transparent to solid */ + transition-duration: 250ms; + background-gradient-direction: none; + text-shadow: none; +} + +#panel.solid:overview { + background-color: transparent; +} + +#panel.solid .panel-corner { + -panel-corner-background-color: rgba(0, 0, 0, 0.5); +} + +#panel.solid .panel-button { + color: #dedede; + text-shadow: none; +} + +#panel.solid .panel-button:active, #panel.solid .panel-button:overview, #panel.solid .panel-button:focus, #panel.solid .panel-button:checked { + color: rgba(255, 255, 255, 0.85); + text-shadow: none; +} + +#panel.solid .system-status-icon, +#panel.solid .app-menu-icon > StIcon, +#panel.solid .popup-menu-arrow { + icon-shadow: none; +} + +#panel.solid .system-status-icon:active, #panel.solid .system-status-icon:overview, #panel.solid .system-status-icon:focus, #panel.solid .system-status-icon:checked, +#panel.solid .app-menu-icon > StIcon:active, +#panel.solid .app-menu-icon > StIcon:overview, +#panel.solid .app-menu-icon > StIcon:focus, +#panel.solid .app-menu-icon > StIcon:checked, +#panel.solid .popup-menu-arrow:active, +#panel.solid .popup-menu-arrow:overview, +#panel.solid .popup-menu-arrow:focus, +#panel.solid .popup-menu-arrow:checked { + icon-shadow: none; +} + +#panel #panelActivities.panel-button > * { + background-image: url("assets/activities-small.svg"); + background-position: center center; + background-repeat: no-repeat; + background-size: auto; + 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:hover, #panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { + background-color: transparent; + border: none; + transition: none; + animation: none; +} + +#panel #panelActivities.panel-button:active > *, #panel #panelActivities.panel-button:overview > *, #panel #panelActivities.panel-button:focus > *, #panel #panelActivities.panel-button:checked > * { + background-image: url("assets/activities-active-small.svg"); +} + +Gjs_AggregateMenu.panel-button, +Gjs_ArcMenu_ApplicationsButton.panel-button { + background-color: rgba(222, 222, 222, 0.15); +} + +#calendarArea { + padding: 8px 16px; +} + +.calendar { + margin-bottom: 0; +} + +.calendar, +.datemenu-today-button, +.datemenu-displays-box, +.message-list-sections { + margin: 0 8px; +} + +.datemenu-calendar-column { + spacing: 8px; +} + +.datemenu-displays-section { + padding-bottom: 0; +} + +.datemenu-displays-box { + spacing: 8px; +} + +.datemenu-calendar-column { + border: 0 solid rgba(0, 0, 0, 0.12); +} + +.datemenu-calendar-column:ltr { + border-left-width: 0; +} + +.datemenu-calendar-column:rtl { + border-right-width: 0; +} + +.datemenu-today-button, +.world-clocks-button, +.weather-button, +.events-section-title { + min-height: 20px; + padding: 4px 8px; + border-radius: 12px; +} + +.datemenu-today-button { + min-height: 48px; +} + +.message-list-section-list:ltr { + padding-left: 0; +} + +.message-list-section-list:rtl { + padding-right: 0; +} + +.datemenu-today-button:hover, .datemenu-today-button:focus, +.world-clocks-button:hover, +.world-clocks-button:focus, +.weather-button:hover, +.weather-button:focus, +.events-section-title:hover, +.events-section-title:focus { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.12); +} + +.datemenu-today-button:active, +.world-clocks-button:active, +.weather-button:active, +.events-section-title:active { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.2); +} + +.datemenu-today-button .date-label { + font-size: 18pt; + font-weight: 400; +} + +.world-clocks-header, +.weather-header, +.events-section-title { + color: rgba(0, 0, 0, 0.54); + font-weight: bold; +} + +.world-clocks-grid { + spacing-rows: 0.4em; +} + +.weather-box { + spacing: 0.4em; +} + +.calendar-month-label { + height: 20px; + margin: 2px; + padding: 6px 16px; + border-radius: 12px; + color: rgba(0, 0, 0, 0.87); + font-weight: bold; + text-align: center; +} + +.calendar-month-label:focus { + background-color: rgba(0, 0, 0, 0.12); +} + +.pager-button { + width: 28px; + height: 28px; + margin: 2px; + border-radius: 100px; + background-color: transparent; + color: rgba(0, 0, 0, 0.87); +} + +.pager-button:hover, .pager-button:focus { + background-color: rgba(0, 0, 0, 0.12); +} + +.pager-button:active { + background-color: rgba(0, 0, 0, 0.2); +} + +.calendar-change-month-back { + padding: 0 2px; + background-image: url("assets/calendar-arrow-left.svg"); +} + +.calendar-change-month-back:rtl { + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward { + padding: 0 2px; + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward:rtl { + background-image: url("assets/calendar-arrow-left.svg"); +} + +.calendar-day-base { + font-size: 9pt; + font-weight: 400; + text-align: center; + width: 28px; + height: 28px; + padding: 0; + margin: 2px; + border-radius: 100px; +} + +.calendar-day-base:hover, .calendar-day-base:focus { + background-color: rgba(0, 0, 0, 0.12); +} + +.calendar-day-base:active { + color: inherit; + background-color: rgba(0, 0, 0, 0.2); + border-color: transparent; +} + +.calendar-day-base:selected { + color: rgba(255, 255, 255, 0.85); + background-color: #4586D8; + border-color: transparent; +} + +.calendar-day-base.calendar-day-heading { + width: 28px; + height: 21px; + margin-top: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(0, 0, 0, 0.38); + font-size: 9pt; + font-weight: 400; + font-weight: bold; + text-align: center; +} + +.calendar-day { + border-width: 0; +} + +.calendar-day-top { + border-top-width: 0; +} + +.calendar-day-left { + border-left-width: 0; +} + +.calendar-nonwork-day { + color: rgba(0, 0, 0, 0.87); +} + +.calendar-today { + font-weight: bold !important; + border: none; +} + +.calendar-day-with-events { + color: #4586D8; + font-weight: normal; + text-decoration: underline; + background-image: none; +} + +.calendar-other-month-day { + color: rgba(0, 0, 0, 0.26); + opacity: 0.5; +} + +.calendar-week-number { + width: 28px; + height: 21px; + margin: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(0, 0, 0, 0.38); + font-size: inherit; + font-weight: bold; + text-align: center; +} + +/* Message list */ +.message-list { + width: 25em; +} + +.message-list-clear-button.button { + background-color: transparent; + margin: 8px 8px 0; +} + +.message-list-clear-button.button:hover, .message-list-clear-button.button:focus { + background-color: rgba(0, 0, 0, 0.12); +} + +.message-list-clear-button.button:active { + background-color: rgba(0, 0, 0, 0.2); +} + +.message-list-sections { + spacing: 8px; +} + +.message-list-section, +.message-list-section-list { + spacing: 8px; +} + +.message { + min-height: 56px; + background-color: transparent; + border: none; + border-radius: 12px; +} + +.message:hover, .message:focus { + background-color: rgba(0, 0, 0, 0.12); +} + +.message:active { + background-color: rgba(0, 0, 0, 0.2); +} + +.message-icon-bin { + padding: 8px 0px 8px 8px; +} + +.message-icon-bin:rtl { + padding: 8px 8px 8px 0px; +} + +.message-icon-bin > StIcon { + color: rgba(0, 0, 0, 0.87); + icon-size: 1.2307692308em; + -st-icon-style: requested; + margin: 4px 0px 4px 4px; +} + +.message-icon-bin > StIcon:rtl { + margin: 4px 4px 4px 0px; +} + +.message-secondary-bin { + padding: 0 8px; +} + +.message-secondary-bin > .event-time { + min-height: 18px; + padding-top: 2px; + color: rgba(0, 0, 0, 0.54); + font-size: 1em; + /* HACK: the label should be baseline-aligned with a 1em label, + fake this with some bottom padding */ + padding-bottom: 0; +} + +.message-secondary-bin > StIcon { + icon-size: 1.2307692308em; +} + +.message-title { + min-height: 18px; + padding-top: 2px; + color: rgba(0, 0, 0, 0.87); + font-weight: bold; + font-size: 1em; +} + +.message-content { + min-height: 40px; + padding: 8px; + color: rgba(0, 0, 0, 0.54); + font-size: 1em; +} + +.message-content * > StIcon { + icon-size: 16px; + border-radius: 16px; + padding: 2px; + color: rgba(0, 0, 0, 0.54); +} + +/* FIXME: how do you do this in sass? */ +.message-content *:hover > StIcon, +.message-content *:focus > StIcon { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.12); +} + +.message-content *:active > StIcon { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.2); +} + +.message-media-control { + margin: 16px 0; + padding: 8px; + border-radius: 100px; + color: rgba(0, 0, 0, 0.54); +} + +.message-media-control:hover, .message-media-control:focus { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.12); +} + +.message-media-control:active { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.2); +} + +.message-media-control:insensitive { + color: rgba(0, 0, 0, 0.26); +} + +.message-media-control:last-child:ltr { + margin-right: 16px; + padding-right: 8px; +} + +.message-media-control:last-child:rtl { + margin-left: 16px; + padding-left: 8px; +} + +.media-message-cover-icon { + icon-size: 32px !important; + margin: 8px 0px 8px 4px !important; +} + +.media-message-cover-icon:rtl { + margin: 8px 4px 8px 0px !important; +} + +.media-message-cover-icon.fallback { + icon-size: 16px !important; + padding: 8px; + border: none; + border-radius: 12px; + background-color: rgba(0, 0, 0, 0.12); + color: rgba(0, 0, 0, 0.38); +} + +.ripple-box { + width: 48px; + height: 48px; + border-radius: 0 0 48px 0; + background-color: rgba(255, 255, 255, 0.3); + background-image: none; + background-size: auto; +} + +.ripple-box:rtl { + border-radius: 0 0 0 48px; + background-image: none; +} + +.popup-menu-arrow { + width: 16px; + height: 16px; +} + +.popup-menu-icon { + icon-size: 1.2307692308em; +} + +.window-close { + transition-duration: 0ms; + height: 42px; + width: 42px; + -shell-close-overlap: 20px; + border: none; + border-image: none; + box-shadow: none; + padding: 0; + margin: 0; + color: transparent; + background-color: transparent; + background-image: url("assets/window-close.svg"); +} + +.window-close:hover { + height: 42px; + width: 42px; + border: none; + border-image: none; + box-shadow: none; + padding: 0; + margin: 0; + color: transparent; + background-color: transparent; + background-image: url("assets/window-close-hover.svg"); +} + +.window-close:active { + height: 42px; + width: 42px; + border: none; + border-image: none; + box-shadow: none; + padding: 0; + margin: 0; + color: transparent; + background-color: transparent; + background-image: url("assets/window-close-active.svg"); +} + +/* NETWORK DIALOGS */ +.nm-dialog { + max-height: 34em; + min-height: 31em; + min-width: 32em; +} + +.nm-dialog-content { + spacing: 20px; + padding: 24px; +} + +.nm-dialog-header-hbox { + spacing: 10px; +} + +.nm-dialog-airplane-box { + spacing: 12px; +} + +.nm-dialog-airplane-headline { + font-weight: bold; + text-align: center; +} + +.nm-dialog-airplane-text { + color: rgba(0, 0, 0, 0.87); +} + +.nm-dialog-header-icon { + icon-size: 32px; +} + +.nm-dialog-scroll-view { + border: none; +} + +.nm-dialog-header { + font-size: 15pt; + font-weight: 500; +} + +.nm-dialog-item { + font-size: 1em; + border-bottom: none; + border-radius: 12px; + padding: 12px; + spacing: 20px; +} + +.nm-dialog-item:hover, .nm-dialog-item:focus { + background-color: rgba(0, 0, 0, 0.12); +} + +.nm-dialog-item:active { + background-color: rgba(0, 0, 0, 0.2); +} + +.nm-dialog-item:selected { + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); +} + +.nm-dialog-icons { + spacing: .5em; +} + +.nm-dialog-icon { + icon-size: 16px; +} + +.no-networks-label { + color: rgba(0, 0, 0, 0.38); +} + +.no-networks-box { + spacing: 12px; +} + +/* OVERVIEW */ +#overview { + spacing: 24px; +} + +.overview-controls { + padding-bottom: 32px; +} + +.window-picker { + -horizontal-spacing: 16px; + -vertical-spacing: 16px; + padding: 0 16px 32px; +} + +.window-picker.external-monitor { + padding: 16px; +} + +.window-clone-border { + border: 4px solid rgba(255, 255, 255, 0.3); + border-radius: 5px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); +} + +.window-caption { + spacing: 25px; + color: rgba(255, 255, 255, 0.85); + background-color: rgba(0, 0, 0, 0.6); + border-radius: 12px; + padding: 4px 8px; +} + +.search-entry { + width: 304px; + padding: 0 8px; + border: none; + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(0, 0, 0, 0.75); + color: rgba(0, 0, 0, 0.75); + background-color: rgba(255, 255, 255, 0.75); + border-radius: 100px; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); +} + +.search-entry:focus { + color: rgba(0, 0, 0, 0.85); + border-color: transparent; + background-color: rgba(255, 255, 255, 0.95); + border: none; + box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.55); + padding: 0 8px; +} + +.search-entry .search-entry-icon { + icon-size: 16px; + padding: 0 0; + color: rgba(0, 0, 0, 0.75); +} + +.search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { + color: rgba(0, 0, 0, 0.75); +} + +#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 { + height: 1px; + background-color: rgba(255, 255, 255, 0.15); +} + +.list-search-result-content { + spacing: 30px; +} + +.list-search-result-title { + font-size: 11.25pt; + font-weight: 400; + color: rgba(255, 255, 255, 0.85); + spacing: 12px; +} + +.list-search-result-description { + color: rgba(255, 255, 255, 0.7); +} + +.list-search-provider-details { + width: 150px; + color: rgba(255, 255, 255, 0.7); + margin-top: 0.24em; +} + +.list-search-provider-content { + spacing: 20px; +} + +.search-provider-icon { + padding: 15px; +} + +/* DASHBOARD */ +#dash { + font-size: 1em; + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.13); + padding: 3px 0; + margin: 6px; + border: none; + border-radius: 100px; +} + +#dash:rtl { + border-radius: 100px; +} + +#dash .placeholder { + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; + height: 24px; +} + +#dash .empty-dash-drop-target { + width: 24px; + height: 24px; +} + +.dash-item-container > StWidget { + padding: 3px 6px; +} + +.dash-label { + border-radius: 100px; + padding: 8px 10px; + color: rgba(255, 255, 255, 0.85); + background-color: rgba(0, 0, 0, 0.75); + border: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-align: center; + -x-offset: 8px; +} + +/* App Vault/Grid */ +.icon-grid { + spacing: 30px; + -shell-grid-horizontal-item-size: 136px; + -shell-grid-vertical-item-size: 136px; +} + +.icon-grid .overview-icon { + icon-size: 96px; +} + +.system-action-icon { + box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); + background-color: #212121; + color: #FFFFFF; + border-radius: 99px; + icon-size: 48px; +} + +.app-view-controls { + width: 320px; + margin-bottom: 32px; + padding: 0; + border-radius: 100px; + background-color: rgba(255, 255, 255, 0.15); +} + +.app-view-control { + padding: 0 16px; + margin: 3px; + border-radius: 100px; + font-weight: bold; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; +} + +.app-view-control:hover { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.2); +} + +.app-view-control:active { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.3); +} + +.app-view-control:checked { + color: white; + background-color: #4586D8; + box-shadow: none; +} + +.app-view-control:first-child { + border-right-width: 0; + margin-right: 0; +} + +.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(255, 255, 255, 0.15); + transition-duration: 0ms; +} + +.search-provider-icon:active, .search-provider-icon:checked, +.list-search-result:active, +.list-search-result:checked { + background-color: rgba(255, 255, 255, 0.3); + transition-duration: 150ms; +} + +.show-apps:hover .overview-icon, +.show-apps:focus .overview-icon, +.show-apps:selected .overview-icon, +.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(255, 255, 255, 0.15); + transition-duration: 0ms; + border-image: none; + background-image: none; +} + +.show-apps:active .overview-icon, +.show-apps:checked .overview-icon, +.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(255, 255, 255, 0.3); + box-shadow: none; + transition-duration: 150ms; +} + +.app-well-app-running-dot { + width: 5px; + height: 2px; + border-radius: 0; + background-color: rgba(255, 255, 255, 0.85); + margin-bottom: 0; +} + +StWidget.focused .app-well-app-running-dot { + width: 16px; + background-color: #4586D8; +} + +.search-provider-icon, +.list-search-result, .show-apps .overview-icon, +.app-well-app .overview-icon, +.app-well-app.app-folder .overview-icon, +.grid-search-result .overview-icon { + color: rgba(255, 255, 255, 0.85); + border-radius: 100px; + padding: 6px; + border: none; + transition-duration: 150ms; + text-align: center; +} + +.app-well-app.app-folder > .overview-icon { + background-color: rgba(255, 255, 255, 0.13); +} + +.show-apps .show-apps-icon { + color: rgba(255, 255, 255, 0.7); +} + +.show-apps:hover .show-apps-icon, +.show-apps:active .show-apps-icon, +.show-apps:checked .show-apps-icon, +.show-apps:focus .show-apps-icon { + color: rgba(255, 255, 255, 0.85); + transition-duration: 150ms; +} + +.app-folder-popup { + -arrow-border-radius: 12px; + -arrow-background-color: rgba(255, 255, 255, 0.13); + -arrow-base: 0; + -arrow-rise: 12px; +} + +.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: 12px; + height: 12px; + margin: 0; + padding: 0; + border: none; + border-radius: 12px; + background-image: none; + background-color: rgba(255, 255, 255, 0.3); +} + +.page-indicator:hover .page-indicator-icon { + margin: 0; + padding: 0; + border: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.5); +} + +.page-indicator:active .page-indicator-icon { + margin: 0; + padding: 0; + border: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.7); +} + +.page-indicator:checked .page-indicator-icon { + margin: 0; + padding: 0; + border: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.85); + transition-duration: 0ms; +} + +.page-indicator:checked:active { + background-image: none; +} + +.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 { + visible-width: 32px; + spacing: 12px; + padding: 16px; + border-radius: 12px; + margin: 6px; +} + +.workspace-thumbnail-indicator { + border: 0 solid #4586D8; + border-width: 2px; + padding: 6px; + border-radius: 2px; +} + +.search-display > StBoxLayout, +.all-apps, +.frequent-apps > StBoxLayout { + padding: 0px 88px 10px 88px; +} + +.workspace-thumbnails { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.13); + border: none; +} + +.search-statustext, .no-frequent-applications-label { + font-size: 45px; + font-weight: 400; + color: rgba(255, 255, 255, 0.5); +} + +/* NOTIFICATIONS & MESSAGE TRAY */ +.url-highlighter { + link-color: #4586D8; +} + +.notification-banner { + font-size: 1em; + width: 34em; + min-height: 56px; + margin: 5px; + border-radius: 12px; + color: rgba(0, 0, 0, 0.87); + background-color: rgba(255, 255, 255, 0.92); + border: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.notification-banner:hover { + background-color: rgba(255, 255, 255, 0.95); +} + +.notification-banner:focus { + background-color: #ffffff; +} + +.notification-banner .notification-icon { + padding: 5px; +} + +.notification-banner .notification-content { + padding: 5px; + spacing: 5px; +} + +.notification-banner .secondary-icon { + icon-size: 1.2307692308em; +} + +.notification-banner .notification-actions { + background-color: transparent; + padding-top: 0; + border-top: 1px solid rgba(0, 0, 0, 0.12); + spacing: 1px; +} + +.notification-banner .notification-button { + min-height: 40px; + padding: 0 16px; + background-color: transparent; + color: rgba(0, 0, 0, 0.54); + font-weight: 500; +} + +.notification-banner .notification-button:first-child { + border-radius: 0 0 0 2px; +} + +.notification-banner .notification-button:last-child { + border-radius: 0 0 2px 0; +} + +.notification-banner .notification-button:hover, .notification-banner .notification-buttonfocus { + background-color: rgba(0, 0, 0, 0.12); + color: rgba(0, 0, 0, 0.87); +} + +.notification-banner .notification-button:active { + background-color: rgba(0, 0, 0, 0.2); + color: rgba(0, 0, 0, 0.87); +} + +.summary-source-counter { + font-size: 1em; + font-weight: bold; + height: 1.6em; + width: 1.6em; + -shell-counter-overlap-x: 3px; + -shell-counter-overlap-y: 3px; + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); + border: 2px solid #4586D8; + box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5); + border-radius: 0.9em; +} + +.secondary-icon { + icon-size: 1.2307692308em; +} + +.chat-body { + spacing: 5px; +} + +.chat-response { + margin: 5px; +} + +.chat-log-message { + color: rgba(0, 0, 0, 0.87); +} + +.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: rgba(0, 0, 0, 0.54); +} + +.chat-sent:rtl { + padding-left: 0; + padding-right: 18pt; +} + +.chat-meta-message { + padding-left: 4px; + font-size: 9pt; + font-weight: 400; + color: rgba(0, 0, 0, 0.38); +} + +.chat-meta-message:rtl { + padding-left: 0; + padding-right: 4px; +} + +.hotplug-transient-box { + spacing: 6px; + padding: 2px 72px 2px 12px; +} + +.hotplug-notification-item { + padding: 2px 10px; +} + +.hotplug-notification-item:focus { + padding: 1px 71px 1px 11px; +} + +.hotplug-notification-item-icon { + icon-size: 24px; + padding: 2px 5px; +} + +.hotplug-resident-box { + spacing: 8px; +} + +.hotplug-resident-mount { + spacing: 8px; + border-radius: 12px; +} + +.hotplug-resident-mount:hover { + background-color: rgba(0, 0, 0, 0.12); +} + +.hotplug-resident-mount:active { + background-color: rgba(0, 0, 0, 0.2); +} + +.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: 12px; + color: rgba(0, 0, 0, 0.87); +} + +/* Eeeky things */ +.magnifier-zoom-region { + border: 2px solid #4586D8; +} + +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +/* On-screen Keyboard */ +.word-suggestions { + font-size: 14pt; + spacing: 12px; + min-height: 20pt; +} + +#keyboard { + background-color: rgba(0, 0, 0, 0.25); +} + +.keyboard-layout { + padding: 4px; + spacing: 4px; +} + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 12px; + border: none; + color: inherit; + background-color: #FAFAFA; + box-shadow: 0 1px rgba(0, 0, 0, 0.2); +} + +.keyboard-key:focus, .keyboard-key:hover { + color: rgba(255, 255, 255, 0.85); + background-color: #4586D8; +} + +.keyboard-key:checked, .keyboard-key:active { + color: rgba(255, 255, 255, 0.85); + background-color: #2c76d2; +} + +.keyboard-key:grayed { + background-color: rgba(0, 0, 0, 0.3); + color: rgba(255, 255, 255, 0.85); + border-color: rgba(0, 0, 0, 0.3); +} + +.keyboard-key.default-key { + background-size: 20px; +} + +.keyboard-key.default-key, .keyboard-key.enter-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { + background-color: #E0E0E0; + box-shadow: 0 1px rgba(0, 0, 0, 0.2); +} + +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { + color: rgba(0, 0, 0, 0.62); + background-color: #FAFAFA; +} + +.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.enter-key:checked, .keyboard-key.enter-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { + color: rgba(0, 0, 0, 0.62); + background-color: #ebebeb; +} + +.keyboard-key.enter-key { + background-color: #4586D8; + background-image: url("assets/key-enter.svg"); +} + +.keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { + color: rgba(255, 255, 255, 0.85); + background-color: #5a94dc; +} + +.keyboard-key.enter-key:checked, .keyboard-key.enter-key:active { + color: rgba(255, 255, 255, 0.85); + background-color: #296cc1; +} + +.keyboard-key.shift-key-lowercase { + background-image: url("assets/key-shift.svg"); +} + +.keyboard-key.shift-key-uppercase { + background-image: url("assets/key-shift-uppercase.svg"); +} + +.keyboard-key.shift-key-uppercase:latched { + background-image: url("assets/key-shift-latched-uppercase.svg"); +} + +.keyboard-key.hide-key { + background-image: url("assets/key-hide.svg"); +} + +.keyboard-key.layout-key { + background-image: url("assets/key-layout.svg"); +} + +.keyboard-subkeys { + color: inherit; + -arrow-border-radius: 12px; + -arrow-background-color: rgba(0, 0, 0, 0.45); + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.candidate-popup-content { + padding: 8px; + spacing: 0; +} + +.candidate-index { + padding: 0 4px 0 0; + color: rgba(0, 0, 0, 0.38); +} + +.candidate-box:selected .candidate-index { + color: rgba(255, 255, 255, 0.5); +} + +.candidate-box { + transition-duration: 0ms; + min-height: 28px; + padding: 0 8px; + border-radius: 12px; +} + +.candidate-box:hover { + background-color: rgba(0, 0, 0, 0.12); + color: rgba(0, 0, 0, 0.87); +} + +.candidate-box:active { + background-color: rgba(0, 0, 0, 0.2); + color: rgba(0, 0, 0, 0.87); +} + +.candidate-box:selected { + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); +} + +.candidate-page-button-box { + height: 28px; +} + +.vertical .candidate-page-button-box { + padding-top: 0; +} + +.horizontal .candidate-page-button-box { + padding-left: 0; +} + +.candidate-page-button { + min-width: 28px; + min-height: 28px; + padding: 0; +} + +.candidate-page-button-previous { + border-radius: 12px; + border-right-width: 0; +} + +.candidate-page-button-next { + border-radius: 12px; +} + +.candidate-page-button-icon { + icon-size: 1.2307692308em; +} + +/* Auth Dialogs & Screen Shield */ +.framed-user-icon { + background-size: contain; + border: none; + color: rgba(255, 255, 255, 0.85); + border-radius: 12px; +} + +.framed-user-icon:hover { + border-color: rgba(255, 255, 255, 0.85); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-banner-view { + padding-top: 24px; + max-width: 23em; +} + +.login-dialog { + border: none; + background-color: transparent; +} + +.login-dialog StEntry { + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(0, 0, 0, 0.54); + color: rgba(0, 0, 0, 0.54); + background-color: #ffffff; + border-radius: 100px; + margin: 2px 6px 6px; + border: 2px solid transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 5px 8px rgba(0, 0, 0, 0.05); +} + +.login-dialog StEntry:focus { + color: rgba(0, 0, 0, 0.87); + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.08); + border: 2px solid #4586D8; +} + +.login-dialog StEntry:insensitive { + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog .modal-dialog-button-box { + spacing: 3px; +} + +.login-dialog .modal-dialog-button { + padding: 0 16px; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:hover, .login-dialog .modal-dialog-button:focus { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.15); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:active { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:insensitive { + color: rgba(255, 255, 255, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default { + color: rgba(255, 255, 255, 0.85); + background-color: #4586D8; + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(69, 134, 216, 0.15); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:active { + color: white; + background-color: #4586D8; + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:insensitive { + color: rgba(255, 255, 255, 0.5); + background-color: rgba(255, 255, 255, 0.15); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog-logo-bin { + padding: 24px 0px; +} + +.login-dialog-banner { + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-button-box { + spacing: 5px; +} + +.login-dialog-message-warning { + color: #FF6D00; +} + +.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-label, +.login-dialog-not-listed-button:hover .login-dialog-not-listed-label { + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-not-listed-label { + font-size: 1em; + font-weight: bold; + color: rgba(255, 255, 255, 0.7); + padding-top: 1em; +} + +.login-dialog-not-listed-label:hover { + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-not-listed-label:focus { + background-color: rgba(255, 255, 255, 0.15); +} + +.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:selected { + background-color: rgba(255, 255, 255, 0.15); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:hover { + background-color: rgba(255, 255, 255, 0.15); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:active { + background-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { + border-right: 2px solid rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list-item { + border-radius: 12px; + padding: 6px; + color: rgba(255, 255, 255, 0.7); +} + +.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: rgba(255, 255, 255, 0.15); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list-item:active { + background-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list-item .login-dialog-timed-login-indicator { + height: 2px; + margin: 6px 0 0 0; + background-color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { + background-color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-username, +.user-widget-label { + color: rgba(255, 255, 255, 0.85); + font-size: 15pt; + font-weight: 500; + 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: rgba(255, 255, 255, 0.5); + font-size: 1em; + padding-top: 1em; +} + +.login-dialog-session-list-button StIcon { + icon-size: 1.25em; +} + +.login-dialog-session-list-button { + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-session-list-button:active { + color: rgba(255, 255, 255, 0.85); +} + +.screen-shield-arrows { + padding-bottom: 3em; +} + +.screen-shield-arrows Gjs_Arrow { + color: white; + width: 80px; + height: 48px; + -arrow-thickness: 12px; + -arrow-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); +} + +.screen-shield-clock { + color: white; + text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + font-weight: normal; + text-align: center; + padding-bottom: 1.5em; +} + +.screen-shield-clock-time { + font-size: 112px; + font-weight: 300; + text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); +} + +.screen-shield-clock-date { + font-size: 45px; + font-weight: 400; +} + +.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: 8px; + border: none; + background-color: rgba(0, 0, 0, 0.3); + color: rgba(255, 255, 255, 0.85); + border-radius: 12px; +} + +.screen-shield-notifications-container .notification { + margin-right: 16px; +} + +.screen-shield-notification-label { + min-height: 18px; + padding: 2px 0px 0px 16px; + font-weight: bold; +} + +.screen-shield-notification-count-text { + min-height: 18px; + padding: 2px 0px 0px 16px; + color: rgba(255, 255, 255, 0.7); +} + +#panel.lock-screen { + background-color: rgba(0, 0, 0, 0.3); +} + +.screen-shield-background { + background: black; + box-shadow: 0 19px 19px rgba(0, 0, 0, 0.6), 0 15px 6px rgba(0, 0, 0, 0.44); +} + +#lockDialogGroup { + background: #333333 url("assets/noise-texture.svg"); + background-size: cover; +} + +#LookingGlassDialog { + background-color: #ffffff; + spacing: 4px; + padding: 0; + border: none; + border-radius: 12px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +#LookingGlassDialog > #Toolbar { + padding: 0 8px; + border: none; + border-radius: 0; + background-color: rgba(255, 255, 255, 0.01); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12); +} + +#LookingGlassDialog .labels { + spacing: 0; +} + +#LookingGlassDialog .notebook-tab { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + font-weight: bold; + color: rgba(0, 0, 0, 0.38); + transition-duration: 150ms; + padding-left: 16px; + padding-right: 16px; + min-height: 32px; + padding: 0 32px; +} + +#LookingGlassDialog .notebook-tab:hover { + box-shadow: inset 0 -2px 0px rgba(0, 0, 0, 0.2); + color: rgba(0, 0, 0, 0.87); + text-shadow: none; +} + +#LookingGlassDialog .notebook-tab:selected { + border-bottom-width: 0; + border-color: transparent; + background-color: rgba(255, 255, 255, 0.01); + box-shadow: inset 0 -2px 0px rgba(255, 255, 255, 0.85); + color: rgba(0, 0, 0, 0.87); + text-shadow: none; +} + +#LookingGlassDialog StBoxLayout#EvalBox { + padding: 4px; + spacing: 4px; +} + +#LookingGlassDialog StBoxLayout#ResultsArea { + spacing: 4px; +} + +.lg-dialog StEntry { + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); +} + +.lg-dialog .shell-link { + color: #4586D8; +} + +.lg-dialog .shell-link:hover { + color: #4586D8; +} + +.lg-completions-text { + font-size: 1em; + font-style: italic; +} + +.lg-obj-inspector-title { + spacing: 4px; +} + +.lg-obj-inspector-button { + min-height: 32px; + padding: 0 16px; + border: none; + border-radius: 12px; + font-size: 9.75pt; + font-weight: 500; + color: rgba(0, 0, 0, 0.54); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:hover { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:active { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.2); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:insensitive { + color: rgba(0, 0, 0, 0.26); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:focus { + color: rgba(0, 0, 0, 0.87); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.lg-obj-inspector-button:hover { + border: none; +} + +#lookingGlassExtensions { + padding: 4px; +} + +.lg-extensions-list { + padding: 4px; + spacing: 6px; +} + +.lg-extension { + border: none; + border-radius: 12px; + padding: 4px; +} + +.lg-extension-name { + font-size: 18pt; + font-weight: 400; +} + +.lg-extension-meta { + spacing: 6px; +} + +#LookingGlassPropertyInspector { + background: #ffffff; + border: none; + border-radius: 12px; + padding: 6px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +#dashtodockContainer { + background: transparent; +} + +#dashtodockContainer #dash, +#dashtodockContainer:overview #dash, +#dashtodockContainer.extended #dash, +#dashtodockContainer.extended:overview #dash { + padding: 0; + border: none; + margin: 0; +} + +#dashtodockContainer.top #dash, +#dashtodockContainer.top:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.top.extended #dash, +#dashtodockContainer.top.extended:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.bottom #dash, +#dashtodockContainer.bottom:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.bottom.extended #dash, +#dashtodockContainer.bottom.extended:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.left #dash, +#dashtodockContainer.left:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.left.extended #dash, +#dashtodockContainer.left.extended:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.right #dash, +#dashtodockContainer.right:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.right.extended #dash, +#dashtodockContainer.right.extended:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer #dash { + background-color: rgba(0, 0, 0, 0.5); + box-shadow: none; +} + +#dashtodockContainer.opaque #dash { + background-color: #000000; +} + +#dashtodockContainer.transparent #dash { + background-color: rgba(0, 0, 0, 0.5); +} + +#dashtodockContainer:overview #dash { + background-color: rgba(0, 0, 0, 0.5); +} + +#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash { + background-color: transparent !important; + box-shadow: none !important; +} + +#dashtodockContainer.extended:overview #dash, #dashtodockContainer.opaque.extended:overview #dash, #dashtodockContainer.transparent.extended:overview #dash { + background-color: rgba(0, 0, 0, 0.5); +} + +#dashtodockContainer .app-well-app .overview-icon, +#dashtodockContainer .show-apps .overview-icon { + padding: 9px; + background-size: contain; +} + +/* Simple Dock */ +#dash:desktop { + background-color: rgba(0, 0, 0, 0.5); +} + +.openweather-provider { + padding: 0 16px; + font-weight: 500; + color: rgba(0, 0, 0, 0.54); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.openweather-provider:hover { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.openweather-provider:focus { + color: rgba(0, 0, 0, 0.87); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.openweather-provider:active { + color: rgba(0, 0, 0, 0.87); + background-color: rgba(0, 0, 0, 0.2); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.openweather-current-icon, .openweather-current-summary, .openweather-current-summarybox { + background: none; + color: rgba(0, 0, 0, 0.87); +} + +.openweather-current-databox-values { + background: none; + color: rgba(0, 0, 0, 0.38); +} + +.openweather-current-databox-captions { + background: none; + color: rgba(0, 0, 0, 0.38); +} + +.openweather-forecast-icon, .openweather-forecast-summary { + background: none; + color: rgba(0, 0, 0, 0.54); +} + +.openweather-forecast-day, .openweather-forecast-temperature { + background: none; + color: rgba(0, 0, 0, 0.38); +} + +.openweather-sunrise-icon, .openweather-sunset-icon, .openweather-build-icon { + color: rgba(0, 0, 0, 0.54); +} + +/* GPaste */ +.popup-menu .search-entry { + color: rgba(0, 0, 0, 0.87); + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(0, 0, 0, 0.54); + color: rgba(0, 0, 0, 0.54); + background-color: #ffffff; + border-radius: 100px; + margin: 2px 6px 6px; + border: 2px solid transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 5px 8px rgba(0, 0, 0, 0.05); +} + +.popup-menu .search-entry:focus { + color: rgba(0, 0, 0, 0.87); + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.08); + border: 2px solid #4586D8; + color: rgba(0, 0, 0, 0.87); +} + +.popup-menu .search-entry .search-entry-icon { + color: rgba(0, 0, 0, 0.38); +} + +.popup-menu .search-entry:hover .search-entry-icon, .popup-menu .search-entry:focus .search-entry-icon { + color: rgba(0, 0, 0, 0.87); +} diff --git a/src/gnome-shell/gnome-shell-compact.scss b/src/gnome-shell/gnome-shell-compact.scss new file mode 100644 index 0000000..f2caaa1 --- /dev/null +++ b/src/gnome-shell/gnome-shell-compact.scss @@ -0,0 +1,10 @@ +$variant: 'light'; +$laptop: 'true'; +$panel: 'light'; +$trans: 'true'; + +@import 'sass/variables'; +@import 'sass/colors'; +@import 'sass/drawing'; +@import 'sass/common'; +@import 'sass/extensions'; diff --git a/src/gnome-shell/gnome-shell-dark-compact.css b/src/gnome-shell/gnome-shell-dark-compact.css new file mode 100644 index 0000000..7968406 --- /dev/null +++ b/src/gnome-shell/gnome-shell-dark-compact.css @@ -0,0 +1,3474 @@ +/* This stylesheet is generated, DO NOT EDIT */ +/* 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 */ +* { + transition-duration: 150ms; +} + +stage { + font-family: "M+ 1c", Roboto, Cantarell, Sans-Serif; + font-size: 9.75pt; + font-weight: 400; + color: rgba(255, 255, 255, 0.9); +} + +/* WIDGETS */ +/* Buttons */ +.button { + min-height: 32px; + padding: 0 16px; + border-width: 0; + border-radius: 12px; + font-size: 9.75pt; + font-weight: 500; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:hover { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.06); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:active { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:insensitive { + color: rgba(255, 255, 255, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.button:focus { + color: rgba(255, 255, 255, 0.9); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +/* Entries */ +GPasteSearchEntry, +StEntry { + min-height: 32px; + padding: 0 8px; + border-radius: 0; + border-width: 0; + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); + font-size: 11.25pt; + font-weight: 400; + caret-color: rgba(255, 255, 255, 0.7); + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.15); + border-radius: 100px; + margin: 2px 6px 6px; + border: 2px solid transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 5px 8px rgba(0, 0, 0, 0.05); +} + +GPasteSearchEntry:hover, +StEntry:hover { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.12); +} + +GPasteSearchEntry:focus, +StEntry:focus { + color: rgba(255, 255, 255, 0.9); + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.08); + border: 2px solid #4586D8; +} + +GPasteSearchEntry:insensitive, +StEntry:insensitive { + color: rgba(255, 255, 255, 0.7); +} + +GPasteSearchEntry StIcon.capslock-warning, +StEntry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #FF6D00; + padding: 0 0; +} + +/* Scrollbars */ +StScrollView.vfade { + -st-vfade-offset: 32px; +} + +StScrollView.hfade { + -st-hfade-offset: 32px; +} + +StScrollBar { + padding: 0; +} + +StScrollView StScrollBar { + min-width: 16px; + min-height: 6px; +} + +StScrollBar StBin#trough { + margin: 6px; + border-radius: 100px; + background-color: rgba(255, 255, 255, 0.06); +} + +StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 100px; + background-color: rgba(255, 255, 255, 0.5); + margin: 6px; +} + +StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.7); +} + +StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: rgba(255, 255, 255, 0.9); +} + +#overview StScrollBar StBin#trough, #screenShieldNotifications StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.15); +} + +#overview StScrollBar StButton#vhandle, #screenShieldNotifications StScrollBar StButton#vhandle, #overview StScrollBar StButton#hhandle, #screenShieldNotifications StScrollBar StButton#hhandle { + background-color: rgba(255, 255, 255, 0.5); +} + +#overview StScrollBar StButton#vhandle:hover, #screenShieldNotifications StScrollBar StButton#vhandle:hover, #overview StScrollBar StButton#hhandle:hover, #screenShieldNotifications StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.7); +} + +#overview StScrollBar StButton#vhandle:active, #screenShieldNotifications StScrollBar StButton#vhandle:active, #overview StScrollBar StButton#hhandle:active, #screenShieldNotifications StScrollBar StButton#hhandle:active { + background-color: rgba(255, 255, 255, 0.85); +} + +/* Slider */ +.slider { + height: 20px; + color: white; + -slider-height: 2px; + -slider-background-color: rgba(255, 255, 255, 0.1); + -slider-border-color: transparent; + -slider-active-background-color: #4586D8; + -slider-active-border-color: transparent; + -slider-border-width: 0; + -slider-handle-radius: 7px; + -slider-handle-border-width: 0; + -slider-handle-border-color: rgba(255, 255, 255, 0.12); + -barlevel-height: 2px; + -barlevel-background-color: rgba(255, 255, 255, 0.1); + -barlevel-border-color: transparent; + -barlevel-active-background-color: #4586D8; + -barlevel-active-border-color: transparent; + -barlevel-overdrive-color: #FF5252; + -barlevel-overdrive-border-color: transparent; + -barlevel-overdrive-separator-width: 2px; + -barlevel-border-width: 0; +} + +/* Check Boxes */ +.check-box * { + min-height: 16px; + padding: 8px 0; +} + +.check-box StBoxLayout { + spacing: 8px; +} + +.check-box StBin { + width: 24px; + height: 24px; + padding: 4px; + border-radius: 100px; + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:focus StBin { + background-image: url("assets/checkbox-off.svg"); +} + +.check-box:hover StBin { + background-color: rgba(255, 255, 255, 0.06); +} + +.check-box:active StBin { + background-color: rgba(255, 255, 255, 0.1); +} + +.check-box:checked StBin { + background-image: url("assets/checkbox.svg"); +} + +.check-box:focus:checked StBin { + background-image: url("assets/checkbox.svg"); +} + +.check-box:hover:checked StBin { + background-color: rgba(69, 134, 216, 0.15); +} + +.check-box:active:checked StBin { + background-color: rgba(69, 134, 216, 0.3); +} + +/* Switches */ +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch:checked { + background-image: url("assets/toggle-on.svg"); +} + +.popup-menu-item.selected .toggle-switch { + background-image: url("assets/toggle-off.svg"); +} + +.popup-menu-item.selected .toggle-switch:checked { + background-image: url("assets/toggle-on.svg"); +} + +.toggle-switch-us { + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch-us:checked { + background-image: url("assets/toggle-on.svg"); +} + +.toggle-switch-intl { + background-image: url("assets/toggle-off.svg"); +} + +.toggle-switch-intl:checked { + background-image: url("assets/toggle-on.svg"); +} + +/* links */ +.shell-link { + border-radius: 12px; + color: #4586D8; + background-color: transparent; +} + +.shell-link:hover { + color: #4586D8; + background-color: rgba(69, 134, 216, 0.15); +} + +.shell-link:active { + color: #4586D8; + background-color: rgba(69, 134, 216, 0.3); +} + +/* Modal Dialogs */ +.headline { + font-size: 15pt; + font-weight: 500; +} + +.lightbox { + background-color: black; +} + +.flashspot { + background-color: white; +} + +.modal-dialog { + border-radius: 24px; + color: rgba(255, 255, 255, 0.9); + background-color: #202020; + border: 2px solid rgba(255, 255, 255, 0.12); + box-shadow: 0 0 transparent; +} + +.modal-dialog .modal-dialog-content-box { + padding: 24px; +} + +.modal-dialog .run-dialog-entry { + width: 20em; + margin-bottom: 6px; +} + +.modal-dialog .run-dialog-error-box { + padding-top: 16px; + spacing: 6px; +} + +.modal-dialog .run-dialog-button-box { + margin: 3px; + padding-top: 1em; +} + +.modal-dialog .run-dialog-label { + font-size: 1em; + font-weight: normal; + color: rgba(255, 255, 255, 0.5); + padding-bottom: .4em; +} + +.modal-dialog-linked-button { + min-height: 40px; + padding: 0 16px; + border: none; + margin-bottom: 6px; + font-size: 9.75pt; + font-weight: 500; + color: rgba(255, 255, 255, 0.8); + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:hover { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.15); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:active { + color: white; + background-color: #4586D8; + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:insensitive { + color: rgba(255, 255, 255, 0.3); + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:focus { + color: #4586D8; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog-linked-button:focus:active { + color: white; +} + +.modal-dialog-linked-button:first-child { + margin-left: 6px; + border-radius: 100px 0px 0px 100px; +} + +.modal-dialog-linked-button:last-child { + margin-right: 6px; + border-right-width: 0px; + border-radius: 0px 100px 100px 0; +} + +.modal-dialog-linked-button:first-child:last-child { + margin: 0 6px 6px 6px; + border-right-width: 0px; + border-radius: 100px; +} + +.show-processes-dialog-subject, +.mount-dialog-subject, +.end-session-dialog-subject { + font-size: 15pt; + font-weight: 500; +} + +/* Message Dialog */ +.message-dialog-main-layout { + padding: 12px 20px 0; + spacing: 12px; +} + +.message-dialog-content { + max-width: 28em; + spacing: 20px; +} + +.message-dialog-icon { + min-width: 48px; + icon-size: 48px; +} + +.message-dialog-title { + font-weight: bold; +} + +.message-dialog-subtitle { + color: rgba(255, 255, 255, 0.7); + font-weight: bold; +} + +/* End Session Dialog */ +.end-session-dialog { + spacing: 42px; + border: 2px solid rgba(255, 255, 255, 0.12); +} + +.end-session-dialog .modal-dialog-linked-button:last-child { + color: white; + background-color: #FF5252; +} + +.end-session-dialog .modal-dialog-linked-button:last-child:hover { + color: white; + background-color: #ff8080; +} + +.end-session-dialog .modal-dialog-linked-button:last-child:active { + color: white; + background-color: #ff3939; +} + +.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: #FF6D00; + padding-top: 6px; +} + +.end-session-dialog-warning:rtl { + text-align: right; +} + +.end-session-dialog-logout-icon { + border-radius: 5px; + width: 48px; + height: 48px; + background-size: contain; +} + +.end-session-dialog-shutdown-icon { + color: rgba(255, 255, 255, 0.5); + width: 48px; + height: 48px; +} + +.end-session-dialog-inhibitor-layout { + spacing: 16px; + max-height: 200px; + padding-right: 65px; + padding-left: 65px; +} + +.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: rgba(255, 255, 255, 0.5); + font-size: 1em; +} + +/* ShellMountOperation Dialogs */ +.shell-mount-operation-icon { + icon-size: 48px; +} + +.mount-dialog { + spacing: 24px; +} + +.mount-dialog .message-dialog-title { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; + max-width: 34em; +} + +.mount-dialog .message-dialog-title:rtl { + padding-left: 0px; + padding-right: 17px; +} + +.mount-dialog .message-dialog-body { + padding-left: 17px; + width: 28em; +} + +.mount-dialog .message-dialog-body:rtl { + padding-left: 0px; + padding-right: 17px; +} + +.mount-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; +} + +.mount-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; +} + +.mount-dialog-app-list-item { + color: rgba(255, 255, 255, 0.9); +} + +.mount-dialog-app-list-item:hover { + color: rgba(255, 255, 255, 0.9); +} + +.mount-dialog-app-list-item:ltr { + padding-right: 1em; +} + +.mount-dialog-app-list-item:rtl { + padding-left: 1em; +} + +.mount-dialog-app-list-item-icon:ltr { + padding-right: 17px; +} + +.mount-dialog-app-list-item-icon:rtl { + padding-left: 17px; +} + +.mount-dialog-app-list-item-name { + font-size: 1em; +} + +/* Password or Authentication Dialog */ +.prompt-dialog { + width: 34em; + border: 2px solid rgba(255, 255, 255, 0.12); +} + +.prompt-dialog .message-dialog-main-layout { + spacing: 24px; + padding: 10px; +} + +.prompt-dialog .message-dialog-content { + spacing: 16px; +} + +.prompt-dialog .message-dialog-title { + font-size: 15pt; + font-weight: 500; + color: rgba(255, 255, 255, 0.9); +} + +.prompt-dialog-description:rtl { + text-align: right; +} + +.prompt-dialog-password-box { + spacing: 1em; + padding-bottom: 1em; +} + +.prompt-dialog-error-label { + font-size: 1em; + color: #DD2C00; + padding-bottom: 8px; +} + +.prompt-dialog-info-label { + font-size: 1em; + padding-bottom: 8px; +} + +.hidden { + color: rgba(0, 0, 0, 0); +} + +.prompt-dialog-null-label { + font-size: 1em; + padding-bottom: 8px; +} + +/* Polkit Dialog */ +.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: #FF6D00; +} + +.polkit-dialog-user-icon { + border-radius: 5px; + background-size: contain; + width: 48px; + height: 48px; +} + +/* Audio selection dialog */ +.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 rgba(255, 255, 255, 0.12); + border-radius: 12px; +} + +.audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus { + background-color: #4586D8; +} + +.audio-selection-device-box { + padding: 20px; + spacing: 20px; +} + +.audio-selection-device-icon { + icon-size: 64px; +} + +/* Access Dialog */ +.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: rgba(255, 255, 255, 0.7); + font-weight: bold; +} + +/* Geolocation Dialog */ +.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: rgba(255, 255, 255, 0.7); + font-weight: bold; +} + +/* Extension Dialog */ +.extension-dialog .message-dialog-main-layout { + spacing: 24px; + padding: 10px; +} + +.extension-dialog .message-dialog-title { + color: rgba(255, 255, 255, 0.7); +} + +/* Inhibit-Shortcuts Dialog */ +.inhibit-shortcuts-dialog { + spacing: 30px; +} + +/* Network Agent Dialog */ +.network-dialog-secret-table { + spacing-rows: 15px; + spacing-columns: 1em; +} + +.keyring-dialog-control-table { + spacing-rows: 15px; + spacing-columns: 1em; +} + +/* Popovers/Menus */ +.popup-menu { + min-width: 12em; + color: rgba(255, 255, 255, 0.9); + background-color: transparent; +} + +.popup-menu .popup-menu-arrow { + width: 16px; + height: 16px; +} + +.popup-menu .popup-sub-menu { + margin: 0 4px; + color: rgba(0, 0, 0, 0.75); + background-color: rgba(255, 255, 255, 0.95); + border-radius: 0 0 12px 12px; + border: none; + box-shadow: none; +} + +.popup-menu .popup-sub-menu .popup-menu-item { + margin: 0; + border-radius: 12px; + color: rgba(0, 0, 0, 0.75); +} + +.popup-menu .popup-sub-menu .popup-menu-item:hover { + color: rgba(0, 0, 0, 0.85); + background-color: rgba(0, 0, 0, 0.15); +} + +.popup-menu .popup-sub-menu .popup-menu-item:active { + color: rgba(0, 0, 0, 0.85); + background-color: rgba(0, 0, 0, 0.2); +} + +.popup-menu .popup-sub-menu .popup-menu-item.selected:active { + color: rgba(0, 0, 0, 0.75); +} + +.popup-menu .popup-sub-menu .popup-menu-item:not(:first-child):last-child { + border-radius: 0 0 12px 12px; +} + +.popup-menu .popup-menu-item { + spacing: 8px; + margin: 0 4px; + color: rgba(255, 255, 255, 0.9); + transition-duration: 100ms; + border-radius: 100px; +} + +.popup-menu .popup-menu-item:ltr { + padding: .5em 2em .5em 0em; +} + +.popup-menu .popup-menu-item:rtl { + padding: .5em 0em .5em 2em; +} + +.popup-menu .popup-menu-item:checked { + background-color: #eaeaea; + color: rgba(0, 0, 0, 0.75); + font-weight: normal; + border-radius: 12px 12px 0 0; + border: none; + box-shadow: none; +} + +.popup-menu .popup-menu-item:checked.selected { + background-color: #e5e5e5; + color: rgba(0, 0, 0, 0.85); +} + +.popup-menu .popup-menu-item:checked:active { + background-color: #dfdfdf; + color: rgba(0, 0, 0, 0.75); +} + +.popup-menu .popup-menu-item:checked.selected:active { + background-color: #e0e0e0; + color: rgba(0, 0, 0, 0.75); +} + +.popup-menu .popup-menu-item:checked:insensitive { + color: rgba(0, 0, 0, 0.35); +} + +.popup-menu .popup-menu-item.selected { + background-color: rgba(255, 255, 255, 0.06); + color: rgba(255, 255, 255, 0.9); + transition-duration: 0ms; +} + +.popup-menu .popup-menu-item:active { + background-color: rgba(255, 255, 255, 0.1); + color: rgba(255, 255, 255, 0.9); + transition-duration: 150ms; +} + +.popup-menu .popup-menu-item.selected:active { + color: rgba(255, 255, 255, 0.9); +} + +.popup-menu .popup-menu-item:insensitive { + color: rgba(255, 255, 255, 0.5); +} + +.popup-menu .popup-inactive-menu-item { + color: rgba(255, 255, 255, 0.9); +} + +.popup-menu .popup-inactive-menu-item:insensitive { + color: rgba(255, 255, 255, 0.5); +} + +.popup-menu.panel-menu { + -boxpointer-gap: 4px; + margin-bottom: 1.75em; +} + +.popup-menu-ornament { + text-align: right; + width: 16px; + height: 16px; +} + +.candidate-popup-boxpointer { + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -arrow-box-shadow: none; + margin: 2px 10px 16px; + background-color: rgba(32, 32, 32, 0.95); + border-radius: 12px; + box-shadow: 0 10px 10px rgba(0, 0, 0, 0.285), 0 6px 3px rgba(0, 0, 0, 0.345); +} + +.popup-menu-boxpointer { + -arrow-border-radius: 0; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 0; + -arrow-rise: 0; + -arrow-box-shadow: none; + margin: 0; + background-color: transparent; + border-radius: 0; + box-shadow: none; +} + +.popup-menu-boxpointer .popup-menu-content { + margin: 4px 10px 16px; + background-color: rgba(32, 32, 32, 0.95); + border-radius: 12px; + box-shadow: 0 10px 10px rgba(0, 0, 0, 0.285), 0 6px 3px rgba(0, 0, 0, 0.345); +} + +.popup-separator-menu-item { + height: 0; + margin: 0 0; + background-color: transparent; + border-color: transparent; + border-bottom-width: 0; + border-bottom-style: solid; +} + +.system-switch-user-submenu-icon.user-icon { + icon-size: 20px; + padding: 0 2px; +} + +.system-switch-user-submenu-icon.default-icon { + icon-size: 16px; + padding: 0 4px; +} + +#appMenu { + spinner-image: url("process-working.svg"); + spacing: 4px; +} + +#appMenu .label-shadow { + color: transparent; +} + +.aggregate-menu { + min-width: 21em; +} + +.aggregate-menu .popup-menu-icon { + padding: 0 4px; + -st-icon-style: symbolic; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:ltr { + /* 12px spacing + 2*4px padding */ + padding-left: 20px; + margin-left: 1.09em; +} + +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:rtl { + /* 12px spacing + 2*4px padding */ + padding-right: 20px; + margin-right: 1.09em; +} + +.system-menu-action { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.06); + border-radius: 100px; + /* wish we could do 50% */ + padding: 12px; + border: none; + -st-icon-style: symbolic; +} + +.system-menu-action:hover, .system-menu-action:focus { + background-color: rgba(255, 255, 255, 0.1); + color: rgba(255, 255, 255, 0.9); + border: none; + padding: 12px; +} + +.system-menu-action:active { + background-color: #4586D8; + color: white; +} + +.system-menu-action > StIcon { + icon-size: 16px; +} + +.background-menu { + -boxpointer-gap: 8px; + -arrow-rise: 0; +} + +/* 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; + margin: 32px; + min-width: 64px; + min-height: 64px; +} + +.osd-window .osd-monitor-label { + font-size: 45px; + font-weight: 400; +} + +.osd-window .level { + height: 4px; + border-radius: 2px; + background-color: rgba(69, 134, 216, 0.3); + color: rgba(255, 255, 255, 0.9); + -barlevel-height: 4px; + -barlevel-background-color: rgba(69, 134, 216, 0.3); + -barlevel-active-background-color: #4586D8; + -barlevel-overdrive-color: #FF5252; + -barlevel-overdrive-separator-width: 3px; + -barlevel-border-width: 0; +} + +.osd-window .level-bar { + background-color: #4586D8; + border-radius: 2px; +} + +/* Pad OSD */ +.pad-osd-window { + padding: 32px; + background-color: rgba(0, 0, 0, 0.6); +} + +.pad-osd-window .pad-osd-title-box { + spacing: 12px; +} + +.pad-osd-window .pad-osd-title-menu-box { + spacing: 6px; +} + +.combo-box-label { + width: 15em; +} + +/* App Switcher */ +.switcher-popup { + padding: 8px; + spacing: 16px; +} + +.switcher-list-item-container { + spacing: 8px; +} + +.switcher-list .item-box { + padding: 8px; + border-radius: 12px; +} + +.switcher-list .item-box:outlined { + padding: 8px; + border: none; + background-color: rgba(255, 255, 255, 0.06); + color: rgba(255, 255, 255, 0.9); +} + +.switcher-list .item-box:selected { + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); +} + +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} + +.switcher-list .thumbnail { + width: 256px; +} + +.switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.12); +} + +.switcher-arrow { + border-color: rgba(0, 0, 0, 0); + color: rgba(255, 255, 255, 0.5); +} + +.switcher-arrow:highlighted { + color: rgba(255, 255, 255, 0.9); +} + +.input-source-switcher-symbol { + font-size: 45px; + font-weight: 400; + width: 96px; + height: 96px; +} + +/* Window Cycler */ +.cycler-highlight { + border: 4px solid #4586D8; +} + +/* Workspace Switcher */ +.workspace-switcher-group { + padding: 8px; +} + +.workspace-switcher { + background: transparent; + border: 0px; + border-radius: 0px; + padding: 0px; + spacing: 8px; +} + +.ws-switcher-active-up, .ws-switcher-active-down { + height: 48px; + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); + background-size: 32px; + border-radius: 12px; +} + +.ws-switcher-box { + height: 48px; + border: none; + background: rgba(255, 255, 255, 0.06); + border-radius: 12px; +} + +.osd-window, +.resize-popup, +.switcher-list, .workspace-switcher-container { + color: rgba(255, 255, 255, 0.9); + background-color: #202020; + border: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + border-radius: 12px; + padding: 12px; +} + +/* Tiled window previews */ +.tile-preview { + background-color: rgba(69, 134, 216, 0.3); + border: 1px solid #4586D8; +} + +.tile-preview-left.on-primary { + border-radius: 0 0 0 0; +} + +.tile-preview-right.on-primary { + border-radius: 0 0 0 0; +} + +.tile-preview-left.tile-preview-right.on-primary { + border-radius: 0 0 0 0; +} + +/* TOP BAR */ +#panel { + background-color: rgba(0, 0, 0, 0.5); + /* transition from solid to transparent */ + transition-duration: 250ms; + font-weight: bold; + height: 34px; + box-shadow: 0 0 8px rgba(0, 0, 0, 0.2), 0 0 4px rgba(0, 0, 0, 0.3); + border-radius: 9999px; + margin: 2px; +} + +#panel:overview, #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { + background-color: transparent; +} + +#panel #panelLeft, #panel #panelCenter { + spacing: 0; +} + +#panel .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: rgba(0, 0, 0, 0.5); + -panel-corner-border-width: 0; + -panel-corner-border-color: transparent; +} + +#panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { + -panel-corner-border-color: rgba(255, 255, 255, 0.85); +} + +#panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-corner.unlock-screen { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-color: transparent; +} + +#panel .panel-corner StLabel { + padding: 0 4px; +} + +#panel .panel-button { + margin: 4px 6px; + -natural-hpadding: 2px; + -minimum-hpadding: 2px; + font-weight: bold; + color: #dedede; + text-shadow: none; + border-radius: 100px; + transition-duration: 150ms; +} + +#panel .panel-button StLabel { + padding: 0 3px; +} + +#panel .panel-button .popup-menu-arrow { + width: 0; + height: 0; +} + +#panel .panel-button .app-menu-icon { + -st-icon-style: symbolic; + margin-left: 4px; + margin-right: 0; +} + +#panel .panel-button .system-status-icon, +#panel .panel-button .app-menu-icon > StIcon, +#panel .panel-button .popup-menu-arrow { + icon-shadow: none; +} + +#panel .panel-button:hover { + color: #dedede; + background-color: rgba(255, 255, 255, 0.15); + text-shadow: none; +} + +#panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { + background-color: rgba(255, 255, 255, 0.25); + color: rgba(255, 255, 255, 0.85); + text-shadow: none; + box-shadow: none; +} + +#panel .panel-button:active .system-status-icon, +#panel .panel-button:active .app-menu-icon > StIcon, +#panel .panel-button:active .popup-menu-arrow, #panel .panel-button:overview .system-status-icon, +#panel .panel-button:overview .app-menu-icon > StIcon, +#panel .panel-button:overview .popup-menu-arrow, #panel .panel-button:focus .system-status-icon, +#panel .panel-button:focus .app-menu-icon > StIcon, +#panel .panel-button:focus .popup-menu-arrow, #panel .panel-button:checked .system-status-icon, +#panel .panel-button:checked .app-menu-icon > StIcon, +#panel .panel-button:checked .popup-menu-arrow { + icon-shadow: none; +} + +#panel .panel-button .system-status-icon { + icon-size: 1.2307692308em; + padding: 0 3px; +} + +.unlock-screen #panel .panel-button, +.login-screen #panel .panel-button, +.lock-screen #panel .panel-button { + color: rgba(255, 255, 255, 0.7); +} + +.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: rgba(255, 255, 255, 0.85); +} + +#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: #DD2C00; +} + +#panel .remote-access-indicator { + color: #FF6D00; +} + +#panel.solid { + background-color: #000000; + /* transition from transparent to solid */ + transition-duration: 250ms; + background-gradient-direction: none; + text-shadow: none; +} + +#panel.solid:overview { + background-color: transparent; +} + +#panel.solid .panel-corner { + -panel-corner-background-color: rgba(0, 0, 0, 0.5); +} + +#panel.solid .panel-button { + color: #dedede; + text-shadow: none; +} + +#panel.solid .panel-button:active, #panel.solid .panel-button:overview, #panel.solid .panel-button:focus, #panel.solid .panel-button:checked { + color: rgba(255, 255, 255, 0.85); + text-shadow: none; +} + +#panel.solid .system-status-icon, +#panel.solid .app-menu-icon > StIcon, +#panel.solid .popup-menu-arrow { + icon-shadow: none; +} + +#panel.solid .system-status-icon:active, #panel.solid .system-status-icon:overview, #panel.solid .system-status-icon:focus, #panel.solid .system-status-icon:checked, +#panel.solid .app-menu-icon > StIcon:active, +#panel.solid .app-menu-icon > StIcon:overview, +#panel.solid .app-menu-icon > StIcon:focus, +#panel.solid .app-menu-icon > StIcon:checked, +#panel.solid .popup-menu-arrow:active, +#panel.solid .popup-menu-arrow:overview, +#panel.solid .popup-menu-arrow:focus, +#panel.solid .popup-menu-arrow:checked { + icon-shadow: none; +} + +#panel #panelActivities.panel-button > * { + background-image: url("assets/activities-small.svg"); + background-position: center center; + background-repeat: no-repeat; + background-size: auto; + 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:hover, #panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { + background-color: transparent; + border: none; + transition: none; + animation: none; +} + +#panel #panelActivities.panel-button:active > *, #panel #panelActivities.panel-button:overview > *, #panel #panelActivities.panel-button:focus > *, #panel #panelActivities.panel-button:checked > * { + background-image: url("assets/activities-active-small.svg"); +} + +Gjs_AggregateMenu.panel-button, +Gjs_ArcMenu_ApplicationsButton.panel-button { + background-color: rgba(222, 222, 222, 0.15); +} + +#calendarArea { + padding: 8px 16px; +} + +.calendar { + margin-bottom: 0; +} + +.calendar, +.datemenu-today-button, +.datemenu-displays-box, +.message-list-sections { + margin: 0 8px; +} + +.datemenu-calendar-column { + spacing: 8px; +} + +.datemenu-displays-section { + padding-bottom: 0; +} + +.datemenu-displays-box { + spacing: 8px; +} + +.datemenu-calendar-column { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +.datemenu-calendar-column:ltr { + border-left-width: 0; +} + +.datemenu-calendar-column:rtl { + border-right-width: 0; +} + +.datemenu-today-button, +.world-clocks-button, +.weather-button, +.events-section-title { + min-height: 20px; + padding: 4px 8px; + border-radius: 12px; +} + +.datemenu-today-button { + min-height: 48px; +} + +.message-list-section-list:ltr { + padding-left: 0; +} + +.message-list-section-list:rtl { + padding-right: 0; +} + +.datemenu-today-button:hover, .datemenu-today-button:focus, +.world-clocks-button:hover, +.world-clocks-button:focus, +.weather-button:hover, +.weather-button:focus, +.events-section-title:hover, +.events-section-title:focus { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.06); +} + +.datemenu-today-button:active, +.world-clocks-button:active, +.weather-button:active, +.events-section-title:active { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.1); +} + +.datemenu-today-button .date-label { + font-size: 18pt; + font-weight: 400; +} + +.world-clocks-header, +.weather-header, +.events-section-title { + color: rgba(255, 255, 255, 0.7); + font-weight: bold; +} + +.world-clocks-grid { + spacing-rows: 0.4em; +} + +.weather-box { + spacing: 0.4em; +} + +.calendar-month-label { + height: 20px; + margin: 2px; + padding: 6px 16px; + border-radius: 12px; + color: rgba(255, 255, 255, 0.9); + font-weight: bold; + text-align: center; +} + +.calendar-month-label:focus { + background-color: rgba(255, 255, 255, 0.06); +} + +.pager-button { + width: 28px; + height: 28px; + margin: 2px; + border-radius: 100px; + background-color: transparent; + color: rgba(255, 255, 255, 0.9); +} + +.pager-button:hover, .pager-button:focus { + background-color: rgba(255, 255, 255, 0.06); +} + +.pager-button:active { + background-color: rgba(255, 255, 255, 0.1); +} + +.calendar-change-month-back { + padding: 0 2px; + background-image: url("assets/calendar-arrow-left.svg"); +} + +.calendar-change-month-back:rtl { + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward { + padding: 0 2px; + background-image: url("assets/calendar-arrow-right.svg"); +} + +.calendar-change-month-forward:rtl { + background-image: url("assets/calendar-arrow-left.svg"); +} + +.calendar-day-base { + font-size: 9pt; + font-weight: 400; + text-align: center; + width: 28px; + height: 28px; + padding: 0; + margin: 2px; + border-radius: 100px; +} + +.calendar-day-base:hover, .calendar-day-base:focus { + background-color: rgba(255, 255, 255, 0.06); +} + +.calendar-day-base:active { + color: inherit; + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; +} + +.calendar-day-base:selected { + color: rgba(255, 255, 255, 0.85); + background-color: #4586D8; + border-color: transparent; +} + +.calendar-day-base.calendar-day-heading { + width: 28px; + height: 21px; + margin-top: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(255, 255, 255, 0.5); + font-size: 9pt; + font-weight: 400; + font-weight: bold; + text-align: center; +} + +.calendar-day { + border-width: 0; +} + +.calendar-day-top { + border-top-width: 0; +} + +.calendar-day-left { + border-left-width: 0; +} + +.calendar-nonwork-day { + color: rgba(255, 255, 255, 0.9); +} + +.calendar-today { + font-weight: bold !important; + border: none; +} + +.calendar-day-with-events { + color: #4586D8; + font-weight: normal; + text-decoration: underline; + background-image: none; +} + +.calendar-other-month-day { + color: rgba(255, 255, 255, 0.3); + opacity: 0.5; +} + +.calendar-week-number { + width: 28px; + height: 21px; + margin: 2px; + padding: 7px 0 0; + border-radius: 100px; + background-color: transparent; + color: rgba(255, 255, 255, 0.5); + font-size: inherit; + font-weight: bold; + text-align: center; +} + +/* Message list */ +.message-list { + width: 25em; +} + +.message-list-clear-button.button { + background-color: transparent; + margin: 8px 8px 0; +} + +.message-list-clear-button.button:hover, .message-list-clear-button.button:focus { + background-color: rgba(255, 255, 255, 0.06); +} + +.message-list-clear-button.button:active { + background-color: rgba(255, 255, 255, 0.1); +} + +.message-list-sections { + spacing: 8px; +} + +.message-list-section, +.message-list-section-list { + spacing: 8px; +} + +.message { + min-height: 56px; + background-color: transparent; + border: none; + border-radius: 12px; +} + +.message:hover, .message:focus { + background-color: rgba(255, 255, 255, 0.06); +} + +.message:active { + background-color: rgba(255, 255, 255, 0.1); +} + +.message-icon-bin { + padding: 8px 0px 8px 8px; +} + +.message-icon-bin:rtl { + padding: 8px 8px 8px 0px; +} + +.message-icon-bin > StIcon { + color: rgba(255, 255, 255, 0.9); + icon-size: 1.2307692308em; + -st-icon-style: requested; + margin: 4px 0px 4px 4px; +} + +.message-icon-bin > StIcon:rtl { + margin: 4px 4px 4px 0px; +} + +.message-secondary-bin { + padding: 0 8px; +} + +.message-secondary-bin > .event-time { + min-height: 18px; + padding-top: 2px; + color: rgba(255, 255, 255, 0.7); + font-size: 1em; + /* HACK: the label should be baseline-aligned with a 1em label, + fake this with some bottom padding */ + padding-bottom: 0; +} + +.message-secondary-bin > StIcon { + icon-size: 1.2307692308em; +} + +.message-title { + min-height: 18px; + padding-top: 2px; + color: rgba(255, 255, 255, 0.9); + font-weight: bold; + font-size: 1em; +} + +.message-content { + min-height: 40px; + padding: 8px; + color: rgba(255, 255, 255, 0.7); + font-size: 1em; +} + +.message-content * > StIcon { + icon-size: 16px; + border-radius: 16px; + padding: 2px; + color: rgba(255, 255, 255, 0.7); +} + +/* FIXME: how do you do this in sass? */ +.message-content *:hover > StIcon, +.message-content *:focus > StIcon { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.06); +} + +.message-content *:active > StIcon { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.1); +} + +.message-media-control { + margin: 16px 0; + padding: 8px; + border-radius: 100px; + color: rgba(255, 255, 255, 0.7); +} + +.message-media-control:hover, .message-media-control:focus { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.06); +} + +.message-media-control:active { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.1); +} + +.message-media-control:insensitive { + color: rgba(255, 255, 255, 0.3); +} + +.message-media-control:last-child:ltr { + margin-right: 16px; + padding-right: 8px; +} + +.message-media-control:last-child:rtl { + margin-left: 16px; + padding-left: 8px; +} + +.media-message-cover-icon { + icon-size: 32px !important; + margin: 8px 0px 8px 4px !important; +} + +.media-message-cover-icon:rtl { + margin: 8px 4px 8px 0px !important; +} + +.media-message-cover-icon.fallback { + icon-size: 16px !important; + padding: 8px; + border: none; + border-radius: 12px; + background-color: rgba(255, 255, 255, 0.06); + color: rgba(255, 255, 255, 0.5); +} + +.ripple-box { + width: 48px; + height: 48px; + border-radius: 0 0 48px 0; + background-color: rgba(255, 255, 255, 0.3); + background-image: none; + background-size: auto; +} + +.ripple-box:rtl { + border-radius: 0 0 0 48px; + background-image: none; +} + +.popup-menu-arrow { + width: 16px; + height: 16px; +} + +.popup-menu-icon { + icon-size: 1.2307692308em; +} + +.window-close { + transition-duration: 0ms; + height: 42px; + width: 42px; + -shell-close-overlap: 20px; + border: none; + border-image: none; + box-shadow: none; + padding: 0; + margin: 0; + color: transparent; + background-color: transparent; + background-image: url("assets/window-close.svg"); +} + +.window-close:hover { + height: 42px; + width: 42px; + border: none; + border-image: none; + box-shadow: none; + padding: 0; + margin: 0; + color: transparent; + background-color: transparent; + background-image: url("assets/window-close-hover.svg"); +} + +.window-close:active { + height: 42px; + width: 42px; + border: none; + border-image: none; + box-shadow: none; + padding: 0; + margin: 0; + color: transparent; + background-color: transparent; + background-image: url("assets/window-close-active.svg"); +} + +/* NETWORK DIALOGS */ +.nm-dialog { + max-height: 34em; + min-height: 31em; + min-width: 32em; +} + +.nm-dialog-content { + spacing: 20px; + padding: 24px; +} + +.nm-dialog-header-hbox { + spacing: 10px; +} + +.nm-dialog-airplane-box { + spacing: 12px; +} + +.nm-dialog-airplane-headline { + font-weight: bold; + text-align: center; +} + +.nm-dialog-airplane-text { + color: rgba(255, 255, 255, 0.9); +} + +.nm-dialog-header-icon { + icon-size: 32px; +} + +.nm-dialog-scroll-view { + border: none; +} + +.nm-dialog-header { + font-size: 15pt; + font-weight: 500; +} + +.nm-dialog-item { + font-size: 1em; + border-bottom: none; + border-radius: 12px; + padding: 12px; + spacing: 20px; +} + +.nm-dialog-item:hover, .nm-dialog-item:focus { + background-color: rgba(255, 255, 255, 0.06); +} + +.nm-dialog-item:active { + background-color: rgba(255, 255, 255, 0.1); +} + +.nm-dialog-item:selected { + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); +} + +.nm-dialog-icons { + spacing: .5em; +} + +.nm-dialog-icon { + icon-size: 16px; +} + +.no-networks-label { + color: rgba(255, 255, 255, 0.5); +} + +.no-networks-box { + spacing: 12px; +} + +/* OVERVIEW */ +#overview { + spacing: 24px; +} + +.overview-controls { + padding-bottom: 32px; +} + +.window-picker { + -horizontal-spacing: 16px; + -vertical-spacing: 16px; + padding: 0 16px 32px; +} + +.window-picker.external-monitor { + padding: 16px; +} + +.window-clone-border { + border: 4px solid rgba(255, 255, 255, 0.3); + border-radius: 5px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); +} + +.window-caption { + spacing: 25px; + color: rgba(255, 255, 255, 0.85); + background-color: rgba(0, 0, 0, 0.6); + border-radius: 12px; + padding: 4px 8px; +} + +.search-entry { + width: 304px; + padding: 0 8px; + border: none; + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(0, 0, 0, 0.75); + color: rgba(0, 0, 0, 0.75); + background-color: rgba(255, 255, 255, 0.75); + border-radius: 100px; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); +} + +.search-entry:focus { + color: rgba(0, 0, 0, 0.85); + border-color: transparent; + background-color: rgba(255, 255, 255, 0.95); + border: none; + box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.55); + padding: 0 8px; +} + +.search-entry .search-entry-icon { + icon-size: 16px; + padding: 0 0; + color: rgba(0, 0, 0, 0.75); +} + +.search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { + color: rgba(0, 0, 0, 0.75); +} + +#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 { + height: 1px; + background-color: rgba(255, 255, 255, 0.15); +} + +.list-search-result-content { + spacing: 30px; +} + +.list-search-result-title { + font-size: 11.25pt; + font-weight: 400; + color: rgba(255, 255, 255, 0.85); + spacing: 12px; +} + +.list-search-result-description { + color: rgba(255, 255, 255, 0.7); +} + +.list-search-provider-details { + width: 150px; + color: rgba(255, 255, 255, 0.7); + margin-top: 0.24em; +} + +.list-search-provider-content { + spacing: 20px; +} + +.search-provider-icon { + padding: 15px; +} + +/* DASHBOARD */ +#dash { + font-size: 1em; + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.13); + padding: 3px 0; + margin: 6px; + border: none; + border-radius: 100px; +} + +#dash:rtl { + border-radius: 100px; +} + +#dash .placeholder { + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; + height: 24px; +} + +#dash .empty-dash-drop-target { + width: 24px; + height: 24px; +} + +.dash-item-container > StWidget { + padding: 3px 6px; +} + +.dash-label { + border-radius: 100px; + padding: 8px 10px; + color: rgba(255, 255, 255, 0.85); + background-color: rgba(0, 0, 0, 0.75); + border: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); + text-align: center; + -x-offset: 8px; +} + +/* App Vault/Grid */ +.icon-grid { + spacing: 30px; + -shell-grid-horizontal-item-size: 136px; + -shell-grid-vertical-item-size: 136px; +} + +.icon-grid .overview-icon { + icon-size: 96px; +} + +.system-action-icon { + box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); + background-color: #212121; + color: #FFFFFF; + border-radius: 99px; + icon-size: 48px; +} + +.app-view-controls { + width: 320px; + margin-bottom: 32px; + padding: 0; + border-radius: 100px; + background-color: rgba(255, 255, 255, 0.15); +} + +.app-view-control { + padding: 0 16px; + margin: 3px; + border-radius: 100px; + font-weight: bold; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; +} + +.app-view-control:hover { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.2); +} + +.app-view-control:active { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.3); +} + +.app-view-control:checked { + color: white; + background-color: #4586D8; + box-shadow: none; +} + +.app-view-control:first-child { + border-right-width: 0; + margin-right: 0; +} + +.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(255, 255, 255, 0.15); + transition-duration: 0ms; +} + +.search-provider-icon:active, .search-provider-icon:checked, +.list-search-result:active, +.list-search-result:checked { + background-color: rgba(255, 255, 255, 0.3); + transition-duration: 150ms; +} + +.show-apps:hover .overview-icon, +.show-apps:focus .overview-icon, +.show-apps:selected .overview-icon, +.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(255, 255, 255, 0.15); + transition-duration: 0ms; + border-image: none; + background-image: none; +} + +.show-apps:active .overview-icon, +.show-apps:checked .overview-icon, +.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(255, 255, 255, 0.3); + box-shadow: none; + transition-duration: 150ms; +} + +.app-well-app-running-dot { + width: 5px; + height: 2px; + border-radius: 0; + background-color: rgba(255, 255, 255, 0.85); + margin-bottom: 0; +} + +StWidget.focused .app-well-app-running-dot { + width: 16px; + background-color: #4586D8; +} + +.search-provider-icon, +.list-search-result, .show-apps .overview-icon, +.app-well-app .overview-icon, +.app-well-app.app-folder .overview-icon, +.grid-search-result .overview-icon { + color: rgba(255, 255, 255, 0.85); + border-radius: 100px; + padding: 6px; + border: none; + transition-duration: 150ms; + text-align: center; +} + +.app-well-app.app-folder > .overview-icon { + background-color: rgba(255, 255, 255, 0.13); +} + +.show-apps .show-apps-icon { + color: rgba(255, 255, 255, 0.7); +} + +.show-apps:hover .show-apps-icon, +.show-apps:active .show-apps-icon, +.show-apps:checked .show-apps-icon, +.show-apps:focus .show-apps-icon { + color: rgba(255, 255, 255, 0.85); + transition-duration: 150ms; +} + +.app-folder-popup { + -arrow-border-radius: 12px; + -arrow-background-color: rgba(255, 255, 255, 0.13); + -arrow-base: 0; + -arrow-rise: 12px; +} + +.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: 12px; + height: 12px; + margin: 0; + padding: 0; + border: none; + border-radius: 12px; + background-image: none; + background-color: rgba(255, 255, 255, 0.3); +} + +.page-indicator:hover .page-indicator-icon { + margin: 0; + padding: 0; + border: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.5); +} + +.page-indicator:active .page-indicator-icon { + margin: 0; + padding: 0; + border: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.7); +} + +.page-indicator:checked .page-indicator-icon { + margin: 0; + padding: 0; + border: none; + background-image: none; + background-color: rgba(255, 255, 255, 0.85); + transition-duration: 0ms; +} + +.page-indicator:checked:active { + background-image: none; +} + +.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 { + visible-width: 32px; + spacing: 12px; + padding: 16px; + border-radius: 12px; + margin: 6px; +} + +.workspace-thumbnail-indicator { + border: 0 solid #4586D8; + border-width: 2px; + padding: 6px; + border-radius: 2px; +} + +.search-display > StBoxLayout, +.all-apps, +.frequent-apps > StBoxLayout { + padding: 0px 88px 10px 88px; +} + +.workspace-thumbnails { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.13); + border: none; +} + +.search-statustext, .no-frequent-applications-label { + font-size: 45px; + font-weight: 400; + color: rgba(255, 255, 255, 0.5); +} + +/* NOTIFICATIONS & MESSAGE TRAY */ +.url-highlighter { + link-color: #4586D8; +} + +.notification-banner { + font-size: 1em; + width: 34em; + min-height: 56px; + margin: 5px; + border-radius: 12px; + color: rgba(255, 255, 255, 0.9); + background-color: rgba(32, 32, 32, 0.92); + border: none; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.notification-banner:hover { + background-color: rgba(32, 32, 32, 0.95); +} + +.notification-banner:focus { + background-color: #202020; +} + +.notification-banner .notification-icon { + padding: 5px; +} + +.notification-banner .notification-content { + padding: 5px; + spacing: 5px; +} + +.notification-banner .secondary-icon { + icon-size: 1.2307692308em; +} + +.notification-banner .notification-actions { + background-color: transparent; + padding-top: 0; + border-top: 1px solid rgba(255, 255, 255, 0.12); + spacing: 1px; +} + +.notification-banner .notification-button { + min-height: 40px; + padding: 0 16px; + background-color: transparent; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.notification-banner .notification-button:first-child { + border-radius: 0 0 0 2px; +} + +.notification-banner .notification-button:last-child { + border-radius: 0 0 2px 0; +} + +.notification-banner .notification-button:hover, .notification-banner .notification-buttonfocus { + background-color: rgba(255, 255, 255, 0.06); + color: rgba(255, 255, 255, 0.9); +} + +.notification-banner .notification-button:active { + background-color: rgba(255, 255, 255, 0.1); + color: rgba(255, 255, 255, 0.9); +} + +.summary-source-counter { + font-size: 1em; + font-weight: bold; + height: 1.6em; + width: 1.6em; + -shell-counter-overlap-x: 3px; + -shell-counter-overlap-y: 3px; + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); + border: 2px solid #4586D8; + box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5); + border-radius: 0.9em; +} + +.secondary-icon { + icon-size: 1.2307692308em; +} + +.chat-body { + spacing: 5px; +} + +.chat-response { + margin: 5px; +} + +.chat-log-message { + color: rgba(255, 255, 255, 0.9); +} + +.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: rgba(255, 255, 255, 0.7); +} + +.chat-sent:rtl { + padding-left: 0; + padding-right: 18pt; +} + +.chat-meta-message { + padding-left: 4px; + font-size: 9pt; + font-weight: 400; + color: rgba(255, 255, 255, 0.5); +} + +.chat-meta-message:rtl { + padding-left: 0; + padding-right: 4px; +} + +.hotplug-transient-box { + spacing: 6px; + padding: 2px 72px 2px 12px; +} + +.hotplug-notification-item { + padding: 2px 10px; +} + +.hotplug-notification-item:focus { + padding: 1px 71px 1px 11px; +} + +.hotplug-notification-item-icon { + icon-size: 24px; + padding: 2px 5px; +} + +.hotplug-resident-box { + spacing: 8px; +} + +.hotplug-resident-mount { + spacing: 8px; + border-radius: 12px; +} + +.hotplug-resident-mount:hover { + background-color: rgba(255, 255, 255, 0.06); +} + +.hotplug-resident-mount:active { + background-color: rgba(255, 255, 255, 0.1); +} + +.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: 12px; + color: rgba(255, 255, 255, 0.9); +} + +/* Eeeky things */ +.magnifier-zoom-region { + border: 2px solid #4586D8; +} + +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +/* On-screen Keyboard */ +.word-suggestions { + font-size: 14pt; + spacing: 12px; + min-height: 20pt; +} + +#keyboard { + background-color: rgba(0, 0, 0, 0.25); +} + +.keyboard-layout { + padding: 4px; + spacing: 4px; +} + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 12px; + border: none; + color: inherit; + background-color: #414141; + box-shadow: 0 1px rgba(0, 0, 0, 0.2); +} + +.keyboard-key:focus, .keyboard-key:hover { + color: rgba(255, 255, 255, 0.85); + background-color: #4586D8; +} + +.keyboard-key:checked, .keyboard-key:active { + color: rgba(255, 255, 255, 0.85); + background-color: #2c76d2; +} + +.keyboard-key:grayed { + background-color: rgba(0, 0, 0, 0.3); + color: rgba(255, 255, 255, 0.85); + border-color: rgba(0, 0, 0, 0.3); +} + +.keyboard-key.default-key { + background-size: 20px; +} + +.keyboard-key.default-key, .keyboard-key.enter-key, .keyboard-key.shift-key-lowercase, .keyboard-key.shift-key-uppercase, .keyboard-key.hide-key, .keyboard-key.layout-key { + background-color: #212121; + box-shadow: 0 1px rgba(0, 0, 0, 0.2); +} + +.keyboard-key.default-key:focus, .keyboard-key.default-key:hover, .keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover, .keyboard-key.shift-key-lowercase:focus, .keyboard-key.shift-key-lowercase:hover, .keyboard-key.shift-key-uppercase:focus, .keyboard-key.shift-key-uppercase:hover, .keyboard-key.hide-key:focus, .keyboard-key.hide-key:hover, .keyboard-key.layout-key:focus, .keyboard-key.layout-key:hover { + color: rgba(255, 255, 255, 0.8); + background-color: #414141; +} + +.keyboard-key.default-key:checked, .keyboard-key.default-key:active, .keyboard-key.enter-key:checked, .keyboard-key.enter-key:active, .keyboard-key.shift-key-lowercase:checked, .keyboard-key.shift-key-lowercase:active, .keyboard-key.shift-key-uppercase:checked, .keyboard-key.shift-key-uppercase:active, .keyboard-key.hide-key:checked, .keyboard-key.hide-key:active, .keyboard-key.layout-key:checked, .keyboard-key.layout-key:active { + color: rgba(255, 255, 255, 0.8); + background-color: #323232; +} + +.keyboard-key.enter-key { + background-color: #4586D8; + background-image: url("assets/key-enter.svg"); +} + +.keyboard-key.enter-key:focus, .keyboard-key.enter-key:hover { + color: rgba(255, 255, 255, 0.85); + background-color: #5a94dc; +} + +.keyboard-key.enter-key:checked, .keyboard-key.enter-key:active { + color: rgba(255, 255, 255, 0.85); + background-color: #296cc1; +} + +.keyboard-key.shift-key-lowercase { + background-image: url("assets/key-shift.svg"); +} + +.keyboard-key.shift-key-uppercase { + background-image: url("assets/key-shift-uppercase.svg"); +} + +.keyboard-key.shift-key-uppercase:latched { + background-image: url("assets/key-shift-latched-uppercase.svg"); +} + +.keyboard-key.hide-key { + background-image: url("assets/key-hide.svg"); +} + +.keyboard-key.layout-key { + background-image: url("assets/key-layout.svg"); +} + +.keyboard-subkeys { + color: inherit; + -arrow-border-radius: 12px; + -arrow-background-color: rgba(0, 0, 0, 0.45); + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 3px 3px rgba(0, 0, 0, 0.345); +} + +.candidate-popup-content { + padding: 8px; + spacing: 0; +} + +.candidate-index { + padding: 0 4px 0 0; + color: rgba(255, 255, 255, 0.5); +} + +.candidate-box:selected .candidate-index { + color: rgba(255, 255, 255, 0.5); +} + +.candidate-box { + transition-duration: 0ms; + min-height: 28px; + padding: 0 8px; + border-radius: 12px; +} + +.candidate-box:hover { + background-color: rgba(255, 255, 255, 0.06); + color: rgba(255, 255, 255, 0.9); +} + +.candidate-box:active { + background-color: rgba(255, 255, 255, 0.1); + color: rgba(255, 255, 255, 0.9); +} + +.candidate-box:selected { + background-color: #4586D8; + color: rgba(255, 255, 255, 0.85); +} + +.candidate-page-button-box { + height: 28px; +} + +.vertical .candidate-page-button-box { + padding-top: 0; +} + +.horizontal .candidate-page-button-box { + padding-left: 0; +} + +.candidate-page-button { + min-width: 28px; + min-height: 28px; + padding: 0; +} + +.candidate-page-button-previous { + border-radius: 12px; + border-right-width: 0; +} + +.candidate-page-button-next { + border-radius: 12px; +} + +.candidate-page-button-icon { + icon-size: 1.2307692308em; +} + +/* Auth Dialogs & Screen Shield */ +.framed-user-icon { + background-size: contain; + border: none; + color: rgba(255, 255, 255, 0.85); + border-radius: 12px; +} + +.framed-user-icon:hover { + border-color: rgba(255, 255, 255, 0.85); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-banner-view { + padding-top: 24px; + max-width: 23em; +} + +.login-dialog { + border: none; + background-color: transparent; +} + +.login-dialog StEntry { + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(255, 255, 255, 0.7); + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.15); + border-radius: 100px; + margin: 2px 6px 6px; + border: 2px solid transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 5px 8px rgba(0, 0, 0, 0.05); +} + +.login-dialog StEntry:focus { + color: rgba(255, 255, 255, 0.9); + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.08); + border: 2px solid #4586D8; +} + +.login-dialog StEntry:insensitive { + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog .modal-dialog-button-box { + spacing: 3px; +} + +.login-dialog .modal-dialog-button { + padding: 0 16px; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:hover, .login-dialog .modal-dialog-button:focus { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.15); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:active { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:insensitive { + color: rgba(255, 255, 255, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default { + color: rgba(255, 255, 255, 0.85); + background-color: #4586D8; + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { + color: rgba(255, 255, 255, 0.85); + background-color: rgba(69, 134, 216, 0.15); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:active { + color: white; + background-color: #4586D8; + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog .modal-dialog-button:default:insensitive { + color: rgba(255, 255, 255, 0.5); + background-color: rgba(255, 255, 255, 0.15); + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog-logo-bin { + padding: 24px 0px; +} + +.login-dialog-banner { + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-button-box { + spacing: 5px; +} + +.login-dialog-message-warning { + color: #FF6D00; +} + +.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-label, +.login-dialog-not-listed-button:hover .login-dialog-not-listed-label { + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-not-listed-label { + font-size: 1em; + font-weight: bold; + color: rgba(255, 255, 255, 0.7); + padding-top: 1em; +} + +.login-dialog-not-listed-label:hover { + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-not-listed-label:focus { + background-color: rgba(255, 255, 255, 0.15); +} + +.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:selected { + background-color: rgba(255, 255, 255, 0.15); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:hover { + background-color: rgba(255, 255, 255, 0.15); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:active { + background-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { + border-right: 2px solid rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list-item { + border-radius: 12px; + padding: 6px; + color: rgba(255, 255, 255, 0.7); +} + +.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: rgba(255, 255, 255, 0.15); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list-item:active { + background-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list-item .login-dialog-timed-login-indicator { + height: 2px; + margin: 6px 0 0 0; + background-color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { + background-color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-username, +.user-widget-label { + color: rgba(255, 255, 255, 0.85); + font-size: 15pt; + font-weight: 500; + 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: rgba(255, 255, 255, 0.5); + font-size: 1em; + padding-top: 1em; +} + +.login-dialog-session-list-button StIcon { + icon-size: 1.25em; +} + +.login-dialog-session-list-button { + color: rgba(255, 255, 255, 0.7); +} + +.login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { + color: rgba(255, 255, 255, 0.85); +} + +.login-dialog-session-list-button:active { + color: rgba(255, 255, 255, 0.85); +} + +.screen-shield-arrows { + padding-bottom: 3em; +} + +.screen-shield-arrows Gjs_Arrow { + color: white; + width: 80px; + height: 48px; + -arrow-thickness: 12px; + -arrow-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); +} + +.screen-shield-clock { + color: white; + text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); + font-weight: normal; + text-align: center; + padding-bottom: 1.5em; +} + +.screen-shield-clock-time { + font-size: 112px; + font-weight: 300; + text-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24); +} + +.screen-shield-clock-date { + font-size: 45px; + font-weight: 400; +} + +.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: 8px; + border: none; + background-color: rgba(0, 0, 0, 0.3); + color: rgba(255, 255, 255, 0.85); + border-radius: 12px; +} + +.screen-shield-notifications-container .notification { + margin-right: 16px; +} + +.screen-shield-notification-label { + min-height: 18px; + padding: 2px 0px 0px 16px; + font-weight: bold; +} + +.screen-shield-notification-count-text { + min-height: 18px; + padding: 2px 0px 0px 16px; + color: rgba(255, 255, 255, 0.7); +} + +#panel.lock-screen { + background-color: rgba(0, 0, 0, 0.3); +} + +.screen-shield-background { + background: black; + box-shadow: 0 19px 19px rgba(0, 0, 0, 0.6), 0 15px 6px rgba(0, 0, 0, 0.44); +} + +#lockDialogGroup { + background: #333333 url("assets/noise-texture.svg"); + background-size: cover; +} + +#LookingGlassDialog { + background-color: #202020; + spacing: 4px; + padding: 0; + border: none; + border-radius: 12px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +#LookingGlassDialog > #Toolbar { + padding: 0 8px; + border: none; + border-radius: 0; + background-color: rgba(32, 32, 32, 0.01); + box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12); +} + +#LookingGlassDialog .labels { + spacing: 0; +} + +#LookingGlassDialog .notebook-tab { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + font-weight: bold; + color: rgba(255, 255, 255, 0.5); + transition-duration: 150ms; + padding-left: 16px; + padding-right: 16px; + min-height: 32px; + padding: 0 32px; +} + +#LookingGlassDialog .notebook-tab:hover { + box-shadow: inset 0 -2px 0px rgba(255, 255, 255, 0.1); + color: rgba(255, 255, 255, 0.9); + text-shadow: none; +} + +#LookingGlassDialog .notebook-tab:selected { + border-bottom-width: 0; + border-color: transparent; + background-color: rgba(32, 32, 32, 0.01); + box-shadow: inset 0 -2px 0px rgba(255, 255, 255, 0.85); + color: rgba(255, 255, 255, 0.9); + text-shadow: none; +} + +#LookingGlassDialog StBoxLayout#EvalBox { + padding: 4px; + spacing: 4px; +} + +#LookingGlassDialog StBoxLayout#ResultsArea { + spacing: 4px; +} + +.lg-dialog StEntry { + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); +} + +.lg-dialog .shell-link { + color: #4586D8; +} + +.lg-dialog .shell-link:hover { + color: #4586D8; +} + +.lg-completions-text { + font-size: 1em; + font-style: italic; +} + +.lg-obj-inspector-title { + spacing: 4px; +} + +.lg-obj-inspector-button { + min-height: 32px; + padding: 0 16px; + border: none; + border-radius: 12px; + font-size: 9.75pt; + font-weight: 500; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:hover { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.06); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:active { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:insensitive { + color: rgba(255, 255, 255, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.lg-obj-inspector-button:focus { + color: rgba(255, 255, 255, 0.9); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.lg-obj-inspector-button:hover { + border: none; +} + +#lookingGlassExtensions { + padding: 4px; +} + +.lg-extensions-list { + padding: 4px; + spacing: 6px; +} + +.lg-extension { + border: none; + border-radius: 12px; + padding: 4px; +} + +.lg-extension-name { + font-size: 18pt; + font-weight: 400; +} + +.lg-extension-meta { + spacing: 6px; +} + +#LookingGlassPropertyInspector { + background: #202020; + border: none; + border-radius: 12px; + padding: 6px; + box-shadow: 0 14px 14px rgba(0, 0, 0, 0.5), 0 10px 5px rgba(0, 0, 0, 0.44); +} + +#dashtodockContainer { + background: transparent; +} + +#dashtodockContainer #dash, +#dashtodockContainer:overview #dash, +#dashtodockContainer.extended #dash, +#dashtodockContainer.extended:overview #dash { + padding: 0; + border: none; + margin: 0; +} + +#dashtodockContainer.top #dash, +#dashtodockContainer.top:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.top.extended #dash, +#dashtodockContainer.top.extended:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.bottom #dash, +#dashtodockContainer.bottom:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.bottom.extended #dash, +#dashtodockContainer.bottom.extended:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.left #dash, +#dashtodockContainer.left:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.left.extended #dash, +#dashtodockContainer.left.extended:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.right #dash, +#dashtodockContainer.right:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer.right.extended #dash, +#dashtodockContainer.right.extended:overview #dash { + border-radius: 16px 16px 16px 16px; +} + +#dashtodockContainer #dash { + background-color: rgba(0, 0, 0, 0.5); + box-shadow: none; +} + +#dashtodockContainer.opaque #dash { + background-color: #000000; +} + +#dashtodockContainer.transparent #dash { + background-color: rgba(0, 0, 0, 0.5); +} + +#dashtodockContainer:overview #dash { + background-color: rgba(0, 0, 0, 0.5); +} + +#dashtodockContainer.opaque:overview #dash, #dashtodockContainer.transparent:overview #dash { + background-color: transparent !important; + box-shadow: none !important; +} + +#dashtodockContainer.extended:overview #dash, #dashtodockContainer.opaque.extended:overview #dash, #dashtodockContainer.transparent.extended:overview #dash { + background-color: rgba(0, 0, 0, 0.5); +} + +#dashtodockContainer .app-well-app .overview-icon, +#dashtodockContainer .show-apps .overview-icon { + padding: 9px; + background-size: contain; +} + +/* Simple Dock */ +#dash:desktop { + background-color: rgba(0, 0, 0, 0.5); +} + +.openweather-provider { + padding: 0 16px; + font-weight: 500; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.openweather-provider:hover { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.06); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.openweather-provider:focus { + color: rgba(255, 255, 255, 0.9); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} + +.openweather-provider:active { + color: rgba(255, 255, 255, 0.9); + background-color: rgba(255, 255, 255, 0.1); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.openweather-current-icon, .openweather-current-summary, .openweather-current-summarybox { + background: none; + color: rgba(255, 255, 255, 0.9); +} + +.openweather-current-databox-values { + background: none; + color: rgba(255, 255, 255, 0.5); +} + +.openweather-current-databox-captions { + background: none; + color: rgba(255, 255, 255, 0.5); +} + +.openweather-forecast-icon, .openweather-forecast-summary { + background: none; + color: rgba(255, 255, 255, 0.7); +} + +.openweather-forecast-day, .openweather-forecast-temperature { + background: none; + color: rgba(255, 255, 255, 0.5); +} + +.openweather-sunrise-icon, .openweather-sunset-icon, .openweather-build-icon { + color: rgba(255, 255, 255, 0.7); +} + +/* GPaste */ +.popup-menu .search-entry { + color: rgba(255, 255, 255, 0.9); + selection-background-color: #4586D8; + selected-color: rgba(255, 255, 255, 0.85); + caret-color: rgba(255, 255, 255, 0.7); + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.15); + border-radius: 100px; + margin: 2px 6px 6px; + border: 2px solid transparent; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.24), 0 5px 8px rgba(0, 0, 0, 0.05); +} + +.popup-menu .search-entry:focus { + color: rgba(255, 255, 255, 0.9); + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.08); + border: 2px solid #4586D8; + color: rgba(255, 255, 255, 0.9); +} + +.popup-menu .search-entry .search-entry-icon { + color: rgba(255, 255, 255, 0.5); +} + +.popup-menu .search-entry:hover .search-entry-icon, .popup-menu .search-entry:focus .search-entry-icon { + color: rgba(255, 255, 255, 0.9); +} diff --git a/src/gnome-shell/gnome-shell-dark-compact.scss b/src/gnome-shell/gnome-shell-dark-compact.scss new file mode 100644 index 0000000..f01230f --- /dev/null +++ b/src/gnome-shell/gnome-shell-dark-compact.scss @@ -0,0 +1,10 @@ +$variant: 'dark'; +$laptop: 'true'; +$panel: 'dark'; +$trans: 'true'; + +@import 'sass/variables'; +@import 'sass/colors'; +@import 'sass/drawing'; +@import 'sass/common'; +@import 'sass/extensions'; diff --git a/src/gtk/3.0/gtk-compact.css b/src/gtk/3.0/gtk-compact.css new file mode 100644 index 0000000..e5c8d96 --- /dev/null +++ b/src/gtk/3.0/gtk-compact.css @@ -0,0 +1,7269 @@ +@keyframes ripple { + to { + background-size: 1000% 1000%; + } +} + +@keyframes ripple-on-slider { + to { + background-size: auto, 1000% 1000%; + } +} + +@keyframes ripple-on-headerbar { + from { + background-image: radial-gradient(circle, #1A73E8 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #1A73E8 100%, transparent 0%); + } +} + +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #D93025; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 4; + outline-style: solid; + outline-width: 2px; + outline-color: transparent; + outline-offset: -4px; + -gtk-outline-radius: 12px; + -gtk-secondary-caret-color: #1A73E8; +} + +*:focus { + outline-color: alpha(currentColor, 0.1); +} + +/*************** + * Base States * + ***************/ +.background { + background-color: rgba(242, 242, 242, 0.999); + color: rgba(0, 0, 0, 0.87); +} + +.background.csd { + border-radius: 0 0 18px 18px; +} + +.background.maximized, .background.solid-csd { + border-radius: 0; +} + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #F2F2F2; + color: rgba(0, 0, 0, 0.87); +} + +.gtkstyle-fallback:hover { + background-color: #e5e5e5; + color: rgba(0, 0, 0, 0.87); +} + +.gtkstyle-fallback:active { + background-color: #d9d9d9; + color: rgba(0, 0, 0, 0.87); +} + +.gtkstyle-fallback:disabled { + background-color: #F2F2F2; + color: rgba(0, 0, 0, 0.38); +} + +.gtkstyle-fallback:selected { + background-color: #1A73E8; + color: white; +} + +.view, filechooser stack.view scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view { + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.87); +} + +.view:hover, filechooser stack.view scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +.view:selected:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:hover { + box-shadow: inset 0 0 0 9999px rgba(26, 115, 232, 0.08); +} + +.view:disabled, filechooser stack.view scrolledwindow treeview.view:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:disabled { + color: rgba(0, 0, 0, 0.38); +} + +.view:hover, filechooser stack.view scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover, .view:selected, filechooser stack.view scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected { + border-radius: 12px; +} + +.view:selected, filechooser stack.view scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected { + background-color: #1A73E8; +} + +textview text { + background-color: #FFFFFF; +} + +textview border { + background-color: #FAFAFA; + color: rgba(0, 0, 0, 0.6); +} + +.rubberband, +rubberband, +flowbox rubberband, +treeview.view rubberband, +filechooser stack.view scrolledwindow treeview.view rubberband, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view rubberband, +.content-view rubberband, +.content-view .rubberband, +XfdesktopIconView.view .rubberband { + border: 1px solid #3281ea; + background-color: rgba(50, 129, 234, 0.3); +} + +flowbox flowboxchild { + padding: 4px; + border-radius: 12px; +} + +.content-view .tile:selected { + background-color: transparent; +} + +label { + caret-color: currentColor; +} + +label.separator { + color: rgba(0, 0, 0, 0.6); +} + +label:disabled { + color: rgba(0, 0, 0, 0.38); +} + +headerbar label:disabled, +tab label:disabled, +button label:disabled { + color: inherit; +} + +label.osd { + border-radius: 12px; + background-color: rgba(97, 97, 97, 0.9); + color: white; +} + +.dim-label { + color: rgba(0, 0, 0, 0.6); +} + +assistant .sidebar { + padding: 4px 0; +} + +assistant .sidebar label { + min-height: 32px; + padding: 0 12px; + color: rgba(0, 0, 0, 0.38); + font-weight: 500; +} + +assistant .sidebar label.highlight { + color: rgba(0, 0, 0, 0.87); +} + +/********************* + * Spinner Animation * + *********************/ +@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; +} + +/**************** + * Text Entries * + ****************/ +spinbutton:not(.vertical), spinbutton.vertical, +entry { + min-height: 32px; + padding: 0 8px; + border-radius: 12px; + caret-color: currentColor; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.87); +} + +spinbutton:focus:not(.vertical), spinbutton.vertical:focus, +entry:focus { + background-color: rgba(0, 0, 0, 0.04); + box-shadow: inset 0 0 0 2px #1A73E8; +} + +spinbutton:drop(active):not(.vertical), spinbutton.vertical:drop(active), +entry:drop(active) { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +spinbutton:disabled:not(.vertical), spinbutton.vertical:disabled, +entry:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + +spinbutton.flat:not(.vertical), spinbutton.flat.vertical, +entry.flat { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: transparent; +} + +spinbutton:not(.vertical) image, spinbutton.vertical image, +entry image { + color: rgba(0, 0, 0, 0.6); +} + +spinbutton:not(.vertical) image:hover, spinbutton.vertical image:hover, spinbutton:not(.vertical) image:active, spinbutton.vertical image:active, +entry image:hover, +entry image:active { + color: rgba(0, 0, 0, 0.87); +} + +spinbutton:not(.vertical) image:disabled, spinbutton.vertical image:disabled, +entry image:disabled { + color: rgba(0, 0, 0, 0.38); +} + +spinbutton:not(.vertical) image.left, spinbutton.vertical image.left, +entry image.left { + margin-left: 0px; + margin-right: 6px; +} + +spinbutton:not(.vertical) image.right, spinbutton.vertical image.right, +entry image.right { + margin-left: 6px; + margin-right: 0px; +} + +spinbutton:not(.vertical) undershoot.left, spinbutton.vertical undershoot.left, +entry undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(0, 0, 0, 0.26) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; + margin: 0 4px; + margin: 4px 0; +} + +spinbutton:not(.vertical) undershoot.right, spinbutton.vertical undershoot.right, +entry undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(0, 0, 0, 0.26) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; + margin: 0 4px; + margin: 4px 0; +} + +spinbutton.error:not(.vertical), spinbutton.error.vertical, +entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.87); +} + +spinbutton.error:focus:not(.vertical), spinbutton.error.vertical:focus, +entry.error:focus { + background-color: rgba(0, 0, 0, 0.04); + box-shadow: inset 0 0 0 2px #D93025; +} + +spinbutton.error:disabled:not(.vertical), spinbutton.error.vertical:disabled, +entry.error:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + +spinbutton.warning:not(.vertical), spinbutton.warning.vertical, +entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.87); +} + +spinbutton.warning:focus:not(.vertical), spinbutton.warning.vertical:focus, +entry.warning:focus { + background-color: rgba(0, 0, 0, 0.04); + box-shadow: inset 0 0 0 2px #F4B400; +} + +spinbutton.warning:disabled:not(.vertical), spinbutton.warning.vertical:disabled, +entry.warning:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + +spinbutton:not(.vertical) progress, spinbutton.vertical progress, +entry progress { + margin: 2px -8px; + border-bottom: 2px solid #1A73E8; + background-color: transparent; +} + +.gedit-search-slider .linked:not(.vertical) > entry { + border-radius: 12px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: inset 0 0 0 2px transparent; + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.87); +} + +.gedit-search-slider .linked:not(.vertical) > entry:focus { + border-image: none; + box-shadow: inset 0 0 0 2px #1A73E8; +} + +.gedit-search-slider .linked:not(.vertical) > entry:drop(active) { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +.gedit-search-slider .linked:not(.vertical) > entry:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: #FAFAFA; + color: rgba(0, 0, 0, 0.38); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: inset 0 0 0 2px transparent; + background-color: #D93025; + color: white; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error:focus { + border-image: none; + box-shadow: inset 0 0 0 2px #D93025; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: #FAFAFA; + color: rgba(0, 0, 0, 0.38); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error image { + color: rgba(255, 255, 255, 0.7); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error image:hover, .gedit-search-slider .linked:not(.vertical) > entry.error image:active { + color: white; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error image:disabled { + color: rgba(255, 255, 255, 0.5); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: inset 0 0 0 2px transparent; + background-color: #F4B400; + color: rgba(0, 0, 0, 0.87); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning:focus { + border-image: none; + box-shadow: inset 0 0 0 2px #F4B400; +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: #FAFAFA; + color: rgba(0, 0, 0, 0.38); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning image { + color: rgba(0, 0, 0, 0.6); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning image:hover, .gedit-search-slider .linked:not(.vertical) > entry.warning image:active { + color: rgba(0, 0, 0, 0.87); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning image:disabled { + color: rgba(0, 0, 0, 0.38); +} + +treeview entry.flat, treeview entry { + background-color: #FFFFFF; +} + +treeview entry.flat, treeview entry.flat:focus, treeview entry, treeview entry:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .documents-entry-tag, .photos-entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(0, 0, 0, 0.12); + color: rgba(0, 0, 0, 0.87); +} + +.entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +:dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} + +:dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} + +.entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active) { + color: rgba(0, 0, 0, 0.6); +} + +/*********** + * Buttons * + ***********/ +@keyframes needs-attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#1A73E8), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#1A73E8), to(transparent)); + } +} + + +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 12px; + font-weight: 500; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + box-shadow: inset 0 0 0 9999px transparent; + background-color: alpha(currentColor, 0.05); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: rgba(0, 0, 0, 0.87); +} + + +button:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + + +button:hover, +button:drop(active) { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + + +button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; +} + + +button:disabled { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + + +button:checked { + box-shadow: none; + background-color: #1A73E8; + color: white; +} + + +button:checked:hover, +button:checked:drop(active) { + box-shadow: inset 0 0 0 9999px transparent; +} + + +button:checked:disabled { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.1); + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + +modelbutton.flat, +.menuitem.button.flat, spinbutton:not(.vertical) button, spinbutton.vertical button, notebook > header > tabs > arrow, scrollbar button, check, +radio, row.activatable button.circular, treeview.view header button button.circular, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular, calendar.button, button.sidebar-button, .gedit-search-slider .linked > button, popover.messagepopover .popover-action-area button, #MatePanelPopupWindow button, #mate-menu button, .budgie-settings-window buttonbox.inline-toolbar button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, combobox > .linked:not(.vertical) > button:not(:only-child), .caja-pathbar button, +.path-bar.linked:not(.vertical) > button, layouttabbar button, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, .xfce4-panel.background button, toolbar button, .titlebar button:not(.suggested-action):not(.destructive-action), popover.background.menu button, +popover.background button.model, actionbar > revealer > box button:not(.suggested-action):not(.destructive-action), .app-notification button, messagedialog.csd .dialog-action-box button, filechooser #pathbarbox > stack > box > button, infobar.info button, infobar.question button, .lock-dialog button, #buttonbox_frame button, .nemo-window .toolbar button, +button.flat { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + box-shadow: inset 0 0 0 9999px transparent; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: rgba(0, 0, 0, 0.6); +} + +modelbutton.flat:focus, +.menuitem.button.flat:focus, spinbutton:not(.vertical) button:focus, spinbutton.vertical button:focus, notebook > header > tabs > arrow:focus, scrollbar button:focus, check:focus, +radio:focus, row.activatable button.circular:focus, treeview.view header button button.circular:focus, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:focus, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:focus, calendar.button:focus, button.sidebar-button:focus, .gedit-search-slider .linked > button:focus, popover.messagepopover .popover-action-area button:focus, #MatePanelPopupWindow button:focus, #mate-menu button:focus, .budgie-settings-window buttonbox.inline-toolbar button:focus, .drop-shadow button:focus, .budgie-session-dialog .linked.horizontal > button:focus, combobox > .linked:not(.vertical) > button:focus:not(:only-child), .caja-pathbar button:focus, +.path-bar.linked:not(.vertical) > button:focus, layouttabbar button:focus, .mate-panel-menu-bar button:focus, .budgie-panel button:focus, .raven stackswitcher.linked > button:focus, .xfce4-panel.background button:focus, toolbar button:focus, .titlebar button:focus:not(.suggested-action):not(.destructive-action), popover.background.menu button:focus, +popover.background button.model:focus, actionbar > revealer > box button:focus:not(.suggested-action):not(.destructive-action), .app-notification button:focus, messagedialog.csd .dialog-action-box button:focus, filechooser #pathbarbox > stack > box > button:focus, infobar.info button:focus, infobar.question button:focus, .lock-dialog button:focus, #buttonbox_frame button:focus, .nemo-window .toolbar button:focus, +button.flat:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); + color: rgba(0, 0, 0, 0.87); +} + +modelbutton.flat:hover, +.menuitem.button.flat:hover, spinbutton:not(.vertical) button:hover, +spinbutton:not(.vertical) button:drop(active), spinbutton.vertical button:hover, +spinbutton.vertical button:drop(active), notebook > header > tabs > arrow:hover, scrollbar button:hover, +scrollbar button:drop(active), check:hover, +radio:hover, row.activatable button.circular:hover, treeview.view header button button.circular:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:hover, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:hover, +row.activatable button.circular:drop(active), +treeview.view header button button.circular:drop(active), +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:drop(active), +.budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:drop(active), calendar.button:hover, button.sidebar-button:hover, +button.sidebar-button:drop(active), .gedit-search-slider .linked > button:hover, +.gedit-search-slider .linked > button:drop(active), popover.messagepopover .popover-action-area button:hover, +popover.messagepopover .popover-action-area button:drop(active), #MatePanelPopupWindow button:hover, +#MatePanelPopupWindow button:drop(active), #mate-menu button:hover, +#mate-menu button:drop(active), .budgie-settings-window buttonbox.inline-toolbar button:hover, +.budgie-settings-window buttonbox.inline-toolbar button:drop(active), .drop-shadow button:hover, +.drop-shadow button:drop(active), .budgie-session-dialog .linked.horizontal > button:hover, +.budgie-session-dialog .linked.horizontal > button:drop(active), combobox > .linked:not(.vertical) > button:hover:not(:only-child), +combobox > .linked:not(.vertical) > button:not(:only-child):drop(active), .caja-pathbar button:hover, +.caja-pathbar button:drop(active), +.path-bar.linked:not(.vertical) > button:hover, +.path-bar.linked:not(.vertical) > button:drop(active), layouttabbar button:hover, +layouttabbar button:drop(active), .mate-panel-menu-bar button:hover, +.mate-panel-menu-bar button:drop(active), .budgie-panel button:hover, +.budgie-panel button:drop(active), .raven stackswitcher.linked > button:hover, +.raven stackswitcher.linked > button:drop(active), .xfce4-panel.background button:hover, +.xfce4-panel.background button:drop(active), toolbar button:hover, +toolbar button:drop(active), .titlebar button:hover:not(.suggested-action):not(.destructive-action), +.titlebar button:not(.suggested-action):not(.destructive-action):drop(active), popover.background.menu button:hover, +popover.background.menu button:drop(active), +popover.background button.model:hover, +popover.background button.model:drop(active), actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):drop(active), .app-notification button:hover, +.app-notification button:drop(active), messagedialog.csd .dialog-action-box button:hover, +messagedialog.csd .dialog-action-box button:drop(active), filechooser #pathbarbox > stack > box > button:hover, +filechooser #pathbarbox > stack > box > button:drop(active), infobar.info button:hover, +infobar.info button:drop(active), infobar.question button:hover, +infobar.question button:drop(active), .lock-dialog button:hover, +.lock-dialog button:drop(active), #buttonbox_frame button:hover, +#buttonbox_frame button:drop(active), .nemo-window .toolbar button:hover, +.nemo-window .toolbar button:drop(active), +button.flat:hover, +toolbar button:drop(active), +.titlebar button:drop(active):not(.suggested-action):not(.destructive-action), +popover.background.menu button:drop(active), +popover.background button.model:drop(active), +actionbar > revealer > box button:drop(active):not(.suggested-action):not(.destructive-action), +.app-notification button:drop(active), +messagedialog.csd .dialog-action-box button:drop(active), +filechooser #pathbarbox > stack > box > button:drop(active), +infobar.info button:drop(active), +infobar.question button:drop(active), +.lock-dialog button:drop(active), +#buttonbox_frame button:drop(active), +.nemo-window .toolbar button:drop(active), +button.flat:drop(active) { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); + color: rgba(0, 0, 0, 0.87); +} + +modelbutton.flat:active, +.menuitem.button.flat:active, spinbutton:not(.vertical) button:active, spinbutton.vertical button:active, notebook > header > tabs > arrow:active, scrollbar button:active, check:active, +radio:active, row.activatable button.circular:active, treeview.view header button button.circular:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:active, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:active, calendar.button:active, button.sidebar-button:active, .gedit-search-slider .linked > button:active, popover.messagepopover .popover-action-area button:active, #MatePanelPopupWindow button:active, #mate-menu button:active, .budgie-settings-window buttonbox.inline-toolbar button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, combobox > .linked:not(.vertical) > button:active:not(:only-child), .caja-pathbar button:active, +.path-bar.linked:not(.vertical) > button:active, layouttabbar button:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, .xfce4-panel.background button:active, toolbar button:active, .titlebar button:active:not(.suggested-action):not(.destructive-action), popover.background.menu button:active, +popover.background button.model:active, actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action), .app-notification button:active, messagedialog.csd .dialog-action-box button:active, filechooser #pathbarbox > stack > box > button:active, infobar.info button:active, infobar.question button:active, .lock-dialog button:active, #buttonbox_frame button:active, .nemo-window .toolbar button:active, +button.flat:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: rgba(0, 0, 0, 0.87); +} + +modelbutton.flat:disabled, +.menuitem.button.flat:disabled, spinbutton:not(.vertical) button:disabled, spinbutton.vertical button:disabled, notebook > header > tabs > arrow:disabled, scrollbar button:disabled, check:disabled, +radio:disabled, row.activatable button.circular:disabled, treeview.view header button button.circular:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:disabled, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:disabled, calendar.button:disabled, button.sidebar-button:disabled, .gedit-search-slider .linked > button:disabled, popover.messagepopover .popover-action-area button:disabled, #MatePanelPopupWindow button:disabled, #mate-menu button:disabled, .budgie-settings-window buttonbox.inline-toolbar button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, combobox > .linked:not(.vertical) > button:disabled:not(:only-child), .caja-pathbar button:disabled, +.path-bar.linked:not(.vertical) > button:disabled, layouttabbar button:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, .xfce4-panel.background button:disabled, toolbar button:disabled, .titlebar button:disabled:not(.suggested-action):not(.destructive-action), popover.background.menu button:disabled, +popover.background button.model:disabled, actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action), .app-notification button:disabled, messagedialog.csd .dialog-action-box button:disabled, filechooser #pathbarbox > stack > box > button:disabled, infobar.info button:disabled, infobar.question button:disabled, .lock-dialog button:disabled, #buttonbox_frame button:disabled, .nemo-window .toolbar button:disabled, +button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(0, 0, 0, 0.26); +} + +combobox > .linked:not(.vertical) > button:checked:not(:only-child), .caja-pathbar button:checked, +.path-bar.linked:not(.vertical) > button:checked, layouttabbar button:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, .xfce4-panel.background button:checked, combobox > .linked:not(.vertical) > button:checked:hover:not(:only-child), +combobox > .linked:not(.vertical) > button:checked:not(:only-child):drop(active), .caja-pathbar button:checked:hover, +.caja-pathbar button:checked:drop(active), +.path-bar.linked:not(.vertical) > button:checked:hover, +.path-bar.linked:not(.vertical) > button:checked:drop(active), layouttabbar button:checked:hover, +layouttabbar button:checked:drop(active), .mate-panel-menu-bar button:checked:hover, +.mate-panel-menu-bar button:checked:drop(active), .budgie-panel button:checked:hover, +.budgie-panel button:checked:drop(active), .raven stackswitcher.linked > button:checked:hover, +.raven stackswitcher.linked > button:checked:drop(active), .xfce4-panel.background button:checked:hover, +.xfce4-panel.background button:checked:drop(active), toolbar button:checked, .path-bar-box .linked.nautilus-path-bar button:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:checked:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked, +popover.background button.model:checked, actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action), .app-notification button:checked, messagedialog.csd .dialog-action-box button:checked, filechooser #pathbarbox > stack > box > button:checked, infobar.info button:checked, infobar.question button:checked, .lock-dialog button:checked, #buttonbox_frame button:checked, .nemo-window .toolbar button:checked, toolbar button:checked:hover, +toolbar button:checked:drop(active), .path-bar-box .linked.nautilus-path-bar button:hover:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), +.path-bar-box .linked.nautilus-path-bar button:last-child:not(.suggested-action):not(.destructive-action):dir(ltr):drop(active), .path-bar-box .linked.nautilus-path-bar button:hover:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), +.path-bar-box .linked.nautilus-path-bar button:first-child:not(.suggested-action):not(.destructive-action):dir(rtl):drop(active), .titlebar button:checked:hover:not(.suggested-action):not(.destructive-action), +.titlebar button:checked:not(.suggested-action):not(.destructive-action):drop(active), popover.background.menu button:checked:hover, +popover.background.menu button:checked:drop(active), +popover.background button.model:checked:hover, +popover.background button.model:checked:drop(active), actionbar > revealer > box button:checked:hover:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):drop(active), .app-notification button:checked:hover, +.app-notification button:checked:drop(active), messagedialog.csd .dialog-action-box button:checked:hover, +messagedialog.csd .dialog-action-box button:checked:drop(active), filechooser #pathbarbox > stack > box > button:checked:hover, +filechooser #pathbarbox > stack > box > button:checked:drop(active), infobar.info button:checked:hover, +infobar.info button:checked:drop(active), infobar.question button:checked:hover, +infobar.question button:checked:drop(active), .lock-dialog button:checked:hover, +.lock-dialog button:checked:drop(active), #buttonbox_frame button:checked:hover, +#buttonbox_frame button:checked:drop(active), .nemo-window .toolbar button:checked:hover, +.nemo-window .toolbar button:checked:drop(active), +button.flat:checked, +button.flat:checked:hover, +toolbar button:checked:drop(active), +.path-bar-box .linked.nautilus-path-bar button:last-child:drop(active):not(.suggested-action):not(.destructive-action):dir(ltr), +.path-bar-box .linked.nautilus-path-bar button:first-child:drop(active):not(.suggested-action):not(.destructive-action):dir(rtl), +.titlebar button:checked:drop(active):not(.suggested-action):not(.destructive-action), +popover.background.menu button:checked:drop(active), +popover.background button.model:checked:drop(active), +actionbar > revealer > box button:checked:drop(active):not(.suggested-action):not(.destructive-action), +.app-notification button:checked:drop(active), +messagedialog.csd .dialog-action-box button:checked:drop(active), +filechooser #pathbarbox > stack > box > button:checked:drop(active), +infobar.info button:checked:drop(active), +infobar.question button:checked:drop(active), +.lock-dialog button:checked:drop(active), +#buttonbox_frame button:checked:drop(active), +.nemo-window .toolbar button:checked:drop(active), +button.flat:checked:drop(active) { + background-color: alpha(currentColor, 0.1); + color: rgba(0, 0, 0, 0.87); +} + +combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child), .caja-pathbar button:checked:disabled, +.path-bar.linked:not(.vertical) > button:checked:disabled, layouttabbar button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .xfce4-panel.background button:checked:disabled, toolbar button:checked:disabled, .path-bar-box .linked.nautilus-path-bar button:disabled:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:disabled:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:checked:disabled:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:disabled, +popover.background button.model:checked:disabled, actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action), .app-notification button:checked:disabled, messagedialog.csd .dialog-action-box button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, infobar.info button:checked:disabled, infobar.question button:checked:disabled, .lock-dialog button:checked:disabled, #buttonbox_frame button:checked:disabled, .nemo-window .toolbar button:checked:disabled, +button.flat:checked:disabled { + background-color: alpha(currentColor, 0.1); + color: rgba(0, 0, 0, 0.38); +} + + +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} + +toolbar button.text-button, .titlebar button.text-button:not(.suggested-action):not(.destructive-action), popover.background.menu button.text-button, +popover.background button.text-button.model, actionbar > revealer > box button.text-button:not(.suggested-action):not(.destructive-action), .app-notification button.text-button, messagedialog.csd .dialog-action-box button.text-button, filechooser #pathbarbox > stack > box > button.text-button, infobar.info button.text-button, infobar.question button.text-button, .lock-dialog button.text-button, #buttonbox_frame button.text-button, .nemo-window .toolbar button.text-button, +button.text-button.flat { + min-width: 48px; + padding-left: 8px; + padding-right: 8px; +} + + +button.image-button { + min-width: 24px; + padding: 4px; +} + + +button.text-button.image-button { + min-width: 24px; + padding: 4px; + border-radius: 12px; +} + + +button.text-button.image-button label:first-child { + margin-left: 12px; +} + + +button.text-button.image-button label:last-child { + margin-right: 12px; +} + +toolbar button.text-button.image-button label:first-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, popover.background.menu button.text-button.image-button label:first-child, popover.background button.text-button.image-button.model label:first-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, .app-notification button.text-button.image-button label:first-child, messagedialog.csd .dialog-action-box button.text-button.image-button label:first-child, filechooser #pathbarbox > stack > box > button.text-button.image-button label:first-child, infobar.info button.text-button.image-button label:first-child, infobar.question button.text-button.image-button label:first-child, .lock-dialog button.text-button.image-button label:first-child, #buttonbox_frame button.text-button.image-button label:first-child, .nemo-window .toolbar button.text-button.image-button label:first-child, +button.text-button.image-button.flat label:first-child { + margin-left: 8px; +} + +toolbar button.text-button.image-button label:last-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, popover.background.menu button.text-button.image-button label:last-child, popover.background button.text-button.image-button.model label:last-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, .app-notification button.text-button.image-button label:last-child, messagedialog.csd .dialog-action-box button.text-button.image-button label:last-child, filechooser #pathbarbox > stack > box > button.text-button.image-button label:last-child, infobar.info button.text-button.image-button label:last-child, infobar.question button.text-button.image-button label:last-child, .lock-dialog button.text-button.image-button label:last-child, #buttonbox_frame button.text-button.image-button label:last-child, .nemo-window .toolbar button.text-button.image-button label:last-child, +button.text-button.image-button.flat label:last-child { + margin-right: 8px; +} + + +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} + +toolbar .linked:not(.vertical) > button:not(:only-child), .titlebar .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:not(:only-child), +popover.background .linked:not(.vertical) > button.model:not(:only-child), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), .app-notification .linked:not(.vertical) > button:not(:only-child), messagedialog.csd .dialog-action-box .linked:not(.vertical) > button:not(:only-child), filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:not(:only-child), infobar.info .linked:not(.vertical) > button:not(:only-child), infobar.question .linked:not(.vertical) > button:not(:only-child), .lock-dialog .linked:not(.vertical) > button:not(:only-child), #buttonbox_frame .linked:not(.vertical) > button:not(:only-child), .nemo-window .toolbar .linked:not(.vertical) > button:not(:only-child), +toolbar .linked.vertical > button:not(:only-child), +.titlebar .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), +popover.background.menu .linked.vertical > button:not(:only-child), +popover.background .linked.vertical > button.model:not(:only-child), +actionbar > revealer > box .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > button:not(:only-child), +messagedialog.csd .dialog-action-box .linked.vertical > button:not(:only-child), +filechooser #pathbarbox > stack > box.linked.vertical > button:not(:only-child), +infobar.info .linked.vertical > button:not(:only-child), +infobar.question .linked.vertical > button:not(:only-child), +.lock-dialog .linked.vertical > button:not(:only-child), +#buttonbox_frame .linked.vertical > button:not(:only-child), +.nemo-window .toolbar .linked.vertical > button:not(:only-child), .linked:not(.vertical) > +button.flat:not(:only-child), +.linked.vertical > +button.flat:not(:only-child) { + border-radius: 12px; +} + +toolbar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .titlebar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), +popover.background .linked:not(.vertical) > button:not(:only-child).image-button.model:not(.text-button), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), .app-notification .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), messagedialog.csd .dialog-action-box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.info .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.question .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .lock-dialog .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), #buttonbox_frame .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .nemo-window .toolbar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), +toolbar .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.titlebar .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), +popover.background.menu .linked.vertical > button:not(:only-child).image-button:not(.text-button), +popover.background .linked.vertical > button:not(:only-child).image-button.model:not(.text-button), +actionbar > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > button:not(:only-child).image-button:not(.text-button), +messagedialog.csd .dialog-action-box .linked.vertical > button:not(:only-child).image-button:not(.text-button), +filechooser #pathbarbox > stack > box.linked.vertical > button:not(:only-child).image-button:not(.text-button), +infobar.info .linked.vertical > button:not(:only-child).image-button:not(.text-button), +infobar.question .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.lock-dialog .linked.vertical > button:not(:only-child).image-button:not(.text-button), +#buttonbox_frame .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.nemo-window .toolbar .linked.vertical > button:not(:only-child).image-button:not(.text-button), .linked:not(.vertical) > +button.flat:not(:only-child).image-button:not(.text-button), +.linked.vertical > +button.flat:not(:only-child).image-button:not(.text-button) { + border-radius: 9999px; +} + +toolbar .linked:not(.vertical) > button:focus, .titlebar .linked:not(.vertical) > button:focus:not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:focus, +popover.background .linked:not(.vertical) > button.model:focus, actionbar > revealer > box .linked:not(.vertical) > button:focus:not(.suggested-action):not(.destructive-action), .app-notification .linked:not(.vertical) > button:focus, messagedialog.csd .dialog-action-box .linked:not(.vertical) > button:focus, filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:focus, infobar.info .linked:not(.vertical) > button:focus, infobar.question .linked:not(.vertical) > button:focus, .lock-dialog .linked:not(.vertical) > button:focus, #buttonbox_frame .linked:not(.vertical) > button:focus, .nemo-window .toolbar .linked:not(.vertical) > button:focus, +toolbar .linked.vertical > button:focus, +.titlebar .linked.vertical > button:focus:not(.suggested-action):not(.destructive-action), +popover.background.menu .linked.vertical > button:focus, +popover.background .linked.vertical > button.model:focus, +actionbar > revealer > box .linked.vertical > button:focus:not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > button:focus, +messagedialog.csd .dialog-action-box .linked.vertical > button:focus, +filechooser #pathbarbox > stack > box.linked.vertical > button:focus, +infobar.info .linked.vertical > button:focus, +infobar.question .linked.vertical > button:focus, +.lock-dialog .linked.vertical > button:focus, +#buttonbox_frame .linked.vertical > button:focus, +.nemo-window .toolbar .linked.vertical > button:focus, .linked:not(.vertical) > +button.flat:focus, +.linked.vertical > +button.flat:focus { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +infobar.error button.flat, .mate-panel-menu-bar button, .budgie-panel button, .raven-mpris button.image-button, .xfce4-panel.background button { + color: rgba(255, 255, 255, 0.7); +} + +infobar.error button.flat:focus, .mate-panel-menu-bar button:focus, .budgie-panel button:focus, .raven-mpris button.image-button:focus, .xfce4-panel.background button:focus, infobar.error button.flat:hover, infobar.error toolbar button:drop(active), toolbar infobar.error button:drop(active), infobar.error .titlebar button:drop(active):not(.suggested-action):not(.destructive-action), .titlebar infobar.error button:drop(active):not(.suggested-action):not(.destructive-action), infobar.error popover.background.menu button:drop(active), popover.background.menu infobar.error button:drop(active), +infobar.error popover.background button.model:drop(active), popover.background infobar.error button.model:drop(active), infobar.error actionbar > revealer > box button:drop(active):not(.suggested-action):not(.destructive-action), actionbar > revealer > box infobar.error button:drop(active):not(.suggested-action):not(.destructive-action), infobar.error .app-notification button:drop(active), .app-notification infobar.error button:drop(active), infobar.error messagedialog.csd .dialog-action-box button:drop(active), messagedialog.csd .dialog-action-box infobar.error button:drop(active), infobar.error filechooser #pathbarbox > stack > box > button:drop(active), filechooser infobar.error #pathbarbox > stack > box > button:drop(active), infobar.error infobar.info button:drop(active), infobar.info infobar.error button:drop(active), infobar.error infobar.question button:drop(active), infobar.question infobar.error button:drop(active), infobar.error .lock-dialog button:drop(active), .lock-dialog infobar.error button:drop(active), infobar.error #buttonbox_frame button:drop(active), #buttonbox_frame infobar.error button:drop(active), infobar.error .nemo-window .toolbar button:drop(active), .nemo-window .toolbar infobar.error button:drop(active), +infobar.error button.flat:drop(active), .mate-panel-menu-bar button:hover, +.mate-panel-menu-bar button:drop(active), .budgie-panel button:hover, +.budgie-panel button:drop(active), .raven-mpris button.image-button:hover, +.raven-mpris button.image-button:drop(active), .xfce4-panel.background button:hover, +.xfce4-panel.background button:drop(active), infobar.error button.flat:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven-mpris button.image-button:active, .xfce4-panel.background button:active, infobar.error button.flat:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven-mpris button.image-button:checked, .xfce4-panel.background button:checked { + color: white; +} + +infobar.error button.flat:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven-mpris button.image-button:disabled, .xfce4-panel.background button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +infobar.error button.flat:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven-mpris button.image-button:checked:disabled, .xfce4-panel.background button:checked:disabled { + color: rgba(255, 255, 255, 0.5); +} + + +button.osd { + padding: 8px 12px; +} + + +button.osd.image-button { + padding: 8px; +} + + +button.osd:disabled { + opacity: 0; +} + + +button.suggested-action { + background-color: #1A73E8; + color: white; + box-shadow: none; +} + + +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + + +button.suggested-action:hover, +button.suggested-action:drop(active) { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(26, 115, 232, 0.2), 0 4px 3px 0 rgba(26, 115, 232, 0.14), 0 1px 6px 0 rgba(26, 115, 232, 0.12); +} + + +button.suggested-action:checked { + background-color: #5f9def; +} + + +button.suggested-action:checked:hover, +button.suggested-action:checked:drop(active) { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(26, 115, 232, 0.3), 0 2px 3px -1px rgba(26, 115, 232, 0.24), 0 2px 5px 0 rgba(26, 115, 232, 0.12); +} + + +button.suggested-action:focus { + box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.35); +} + + +button.suggested-action.flat { + background-color: transparent; + color: #1A73E8; +} + + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(0, 0, 0, 0.26); +} + + +button.suggested-action.flat:checked { + background-color: rgba(26, 115, 232, 0.3); +} + + +button.destructive-action { + background-color: #D93025; + color: white; + box-shadow: none; +} + + +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + + +button.destructive-action:hover, +button.destructive-action:drop(active) { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(217, 48, 37, 0.2), 0 4px 3px 0 rgba(217, 48, 37, 0.14), 0 1px 6px 0 rgba(217, 48, 37, 0.12); +} + + +button.destructive-action:checked { + background-color: #e46e66; +} + + +button.destructive-action:checked:hover, +button.destructive-action:checked:drop(active) { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(217, 48, 37, 0.3), 0 2px 3px -1px rgba(217, 48, 37, 0.24), 0 2px 5px 0 rgba(217, 48, 37, 0.12); +} + + +button.destructive-action:focus { + box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.35); +} + + +button.destructive-action.flat { + background-color: transparent; + color: #D93025; +} + + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(0, 0, 0, 0.26); +} + + +button.destructive-action.flat:checked { + background-color: rgba(217, 48, 37, 0.3); +} + +.stack-switcher > +button > label { + margin: 0 -6px; + padding: 0 6px; +} + +.stack-switcher > +button > image { + margin: -3px -6px; + padding: 3px 6px; +} + +.stack-switcher > +button.needs-attention:checked > label, +.stack-switcher > +button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +.primary-toolbar +button { + -gtk-icon-shadow: none; +} + + +button.image-button, .inline-toolbar button:not(.text-button), check, +radio, filechooser #pathbarbox > stack > box > button, button.titlebutton, .linked:not(.vertical) > button.disclosure-button:not(.suggested-action):not(.destructive-action):not(:only-child), .nautilus-window headerbar revealer > button, .raven .expander-button, +button.close, +button.circular { + border-radius: 9999px; +} + +spinbutton:not(.vertical) button, spinbutton.vertical button, notebook > header tab button.flat, button.sidebar-button, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider .linked > button, .pluma-window paned.horizontal box.vertical box.horizontal button.flat { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +.stack-switcher > button.needs-attention > label, +.stack-switcher > button.needs-attention > image, stacksidebar.sidebar row.needs-attention > label { + animation: needs-attention 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +.stack-switcher > button.needs-attention > label:dir(rtl), +.stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar.sidebar row.needs-attention > label:dir(rtl) { + background-position: left 3px; +} + +.linked:not(.vertical) > spinbutton:not(:first-child):not(.vertical), .linked:not(.vertical) > spinbutton.vertical:not(:first-child), .linked:not(.vertical) > entry:not(:first-child), .linked:not(.vertical) > button:not(:first-child), combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.linked:not(.vertical) > spinbutton:not(:last-child):not(.vertical), .linked:not(.vertical) > spinbutton.vertical:not(:last-child), .linked:not(.vertical) > entry:not(:last-child), .linked:not(.vertical) > button:not(:last-child), combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:not(:last-child) > box > button.combo { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.linked.vertical > spinbutton:not(:first-child):not(.vertical), .linked.vertical > spinbutton.vertical:not(:first-child), .linked.vertical > entry:not(:first-child), .linked.vertical > button:not(:first-child), .linked.vertical > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.linked.vertical > spinbutton:not(:last-child):not(.vertical), .linked.vertical > spinbutton.vertical:not(:last-child), .linked.vertical > entry:not(:last-child), .linked.vertical > button:not(:last-child), .linked.vertical > combobox:not(:last-child) > box > button.combo { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.linked:not(.vertical) > button.image-button:first-child:not(.text-button) { + border-top-left-radius: 12px; + border-bottom-left-radius: 12px; +} + +.linked:not(.vertical) > button.image-button:last-child:not(.text-button) { + border-top-right-radius: 12px; + border-bottom-right-radius: 12px; +} + +.linked:not(.vertical) > button.image-button:only-child:not(.text-button) { + border-radius: 9999px; +} + +.linked.vertical > button.image-button:first-child:not(.text-button) { + border-top-left-radius: 12px; + border-top-right-radius: 12px; +} + +.linked.vertical > button.image-button:last-child:not(.text-button) { + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; +} + +.linked.vertical > button.image-button:only-child:not(.text-button) { + border-radius: 9999px; +} + +/* menu buttons */ +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 12px; + color: rgba(0, 0, 0, 0.87); +} + +modelbutton.flat arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +modelbutton.flat arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +button.color { + min-height: 24px; + min-width: 24px; + padding: 4px; +} + +/********* + * Links * + *********/ +*:link, button.link:link, button.link:link:focus, button.link:link:hover, +button.link:link:drop(active), button.link:link:active { + color: #1A73E8; +} + +*:visited, button.link:visited, button.link:visited:focus, button.link:visited:hover, +button.link:visited:drop(active), button.link:visited:active { + color: #9C27B0; +} + +button.link > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton:not(.vertical) { + padding: 0; +} + +spinbutton:not(.vertical) entry { + min-width: 24px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +spinbutton:not(.vertical) button { + border: solid 4px transparent; +} + +spinbutton:not(.vertical) button:focus:not(:hover):not(:active):not(:disabled) { + box-shadow: inset 0 0 0 9999px transparent; + color: rgba(0, 0, 0, 0.6); +} + +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -2px; +} + +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -2px; +} + +spinbutton.vertical { + padding: 0; +} + +spinbutton.vertical:disabled { + color: rgba(0, 0, 0, 0.38); +} + +spinbutton.vertical entry { + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; + min-height: 32px; + min-width: 36px; + padding: 0; +} + +spinbutton.vertical button { + padding: 0; + border: solid 4px transparent; +} + +spinbutton.vertical button:focus:not(:hover):not(:active) { + box-shadow: inset 0 0 0 9999px transparent; + color: rgba(0, 0, 0, 0.6); +} + +spinbutton.vertical button.up { + margin: 0 2px; +} + +spinbutton.vertical button.down { + margin: 0 2px; +} + +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} + +treeview spinbutton:not(.vertical) entry { + min-height: 0; + padding: 1px 2px; +} + +/************** + * ComboBoxes * + **************/ +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +combobox decoration { + transition: none; +} + +combobox button.combo cellview:dir(ltr) { + margin-left: 0px; +} + +combobox button.combo cellview:dir(rtl) { + margin-right: 0px; +} + +combobox menu { + padding: 2px 0; +} + +combobox menu menuitem { + min-height: 28px; + padding: 0 8px; +} + +combobox menu > arrow.top { + margin-top: -2px; +} + +combobox menu > arrow.bottom { + margin-top: 4px; + margin-bottom: -6px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 12px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -32px; + padding-right: 32px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -32px; + padding-left: 32px; +} + +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 4px; + padding: 4px; + border-radius: 9999px; +} + +button.combo:only-child { + border-radius: 12px; + font-weight: normal; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.87); +} + +button.combo:only-child:focus { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.26); +} + +button.combo:only-child:hover, +button.combo:only-child:drop(active) { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +button.combo:only-child:checked { + background-color: rgba(0, 0, 0, 0.04); + box-shadow: inset 0 0 0 2px #1A73E8; +} + +button.combo:only-child:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + +/************ + * Toolbars * + ************/ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; + background-color: #F2F2F2; +} + +.osd toolbar { + background-color: transparent; +} + +toolbar.osd, .app-notification, frame.documents-dropdown { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px; + border-radius: 12px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +toolbar.osd:backdrop, .app-notification:backdrop, frame.documents-dropdown:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.4); +} + +toolbar.osd.left, .left.app-notification, frame.left.documents-dropdown, toolbar.osd.right, .right.app-notification, frame.right.documents-dropdown, toolbar.osd.top, .top.app-notification, frame.top.documents-dropdown, toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown { + border-radius: 0; +} + +toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown { + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4)); +} + +toolbar.horizontal > separator { + margin: 2px; +} + +toolbar.vertical > separator { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) scale, +toolbar:not(.inline-toolbar):not(.osd) entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton, +toolbar:not(.inline-toolbar):not(.osd) button { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { + margin-left: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { + margin-right: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton button { + margin: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) switch { + margin: 6px 2px; +} + +.inline-toolbar { + padding: 4px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(0, 0, 0, 0.08); + background-color: #FAFAFA; +} + +searchbar > revealer > box, +.location-bar { + padding: 4px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(0, 0, 0, 0.12); + background-color: #F2F2F2; + background-clip: border-box; +} + +searchbar > revealer > box { + margin: -6px; + padding: 4px; +} + +/*************** + * Header bars * + ***************/ +.titlebar { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 18px 18px 0 0; + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.08); + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.87); +} + +.titlebar:disabled { + color: rgba(0, 0, 0, 0.38); +} + +.titlebar:backdrop { + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.6); +} + +.titlebar:backdrop:disabled { + color: rgba(0, 0, 0, 0.26); +} + +.titlebar .title { + padding: 0 12px; + font-weight: bold; +} + +.titlebar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +.titlebar .subtitle, +.titlebar .dim-label { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(0, 0, 0, 0.6); +} + +.titlebar .subtitle:backdrop, +.titlebar .dim-label:backdrop { + color: rgba(0, 0, 0, 0.38); +} + +.titlebar .titlebar { + background-color: transparent; +} + +.titlebar headerbar + separator { + background-color: rgba(0, 0, 0, 0.12); +} + +.titlebar entry { + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.87); +} + +.titlebar entry:disabled { + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + +.titlebar entry image { + color: rgba(0, 0, 0, 0.6); +} + +.titlebar entry image:hover, .titlebar entry image:active { + color: rgba(0, 0, 0, 0.87); +} + +.titlebar entry image:disabled { + color: rgba(0, 0, 0, 0.38); +} + +.titlebar .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 12px; +} + +.titlebar button:not(.suggested-action):not(.destructive-action) { + color: rgba(0, 0, 0, 0.6); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):focus, .titlebar button:not(.suggested-action):not(.destructive-action):hover, +.titlebar button:not(.suggested-action):not(.destructive-action):drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):active { + color: rgba(0, 0, 0, 0.87); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(0, 0, 0, 0.26); +} + +.path-bar-box .linked.nautilus-path-bar button:disabled:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:disabled:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; + color: rgba(0, 0, 0, 0.38); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(0, 0, 0, 0.38); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:focus, .titlebar button:not(.suggested-action):not(.destructive-action):backdrop:hover, +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):backdrop:active { + color: rgba(0, 0, 0, 0.6); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(0, 0, 0, 0.26); +} + +.path-bar-box .linked.nautilus-path-bar button:backdrop:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:backdrop:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(0, 0, 0, 0.6); +} + +.path-bar-box .linked.nautilus-path-bar button:backdrop:disabled:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:backdrop:disabled:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(0, 0, 0, 0.26); +} + +.titlebar button.suggested-action:disabled, .titlebar button.destructive-action:disabled { + background-color: rgba(0, 0, 0, 0.04); + color: rgba(0, 0, 0, 0.38); +} + +.titlebar stackswitcher { + min-height: 0; + border-radius: 9999px; + background-color: alpha(currentColor, 0.05); + padding: 0; + margin: 4px 0; +} + +.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button { + margin: 0 0; + min-width: 104px; + border-radius: 9999px; +} + +.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button:active { + box-shadow: inset 0 0 0 9999px alpha(#1A73E8, 0.08); + background-image: radial-gradient(circle, alpha(#1A73E8, 0.08) 10%, transparent 0%); +} + +.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button:checked { + background-color: #1A73E8; + color: white; +} + +.titlebar .path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; + padding-left: 4px; + padding-right: 4px; +} + +.titlebar.selection-mode { + transition: background-color 0.1ms 225ms, color 75ms cubic-bezier(0, 0, 0.2, 1); + animation: ripple-on-headerbar 225ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17), inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #1A73E8; + color: white; +} + +.titlebar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode .subtitle:link { + color: white; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: white; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(255, 255, 255, 0.5); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; + color: white; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(255, 255, 255, 0.5); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.titlebar.selection-mode .selection-menu arrow { + -GtkArrow-arrow-scaling: 1; +} + +.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.titlebar .selection-mode { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #1A73E8; +} + +.tiled .titlebar, +.tiled-top .titlebar, +.tiled-right .titlebar, +.tiled-bottom .titlebar, +.tiled-left .titlebar, +.maximized .titlebar, +.fullscreen .titlebar { + border-radius: 0; +} + +.titlebar.default-decoration { + background-color: #FFFFFF; + min-height: 24px; + padding: 4px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); + border-radius: 12px 12px 0 0; +} + +.titlebar.default-decoration:backdrop { + background-color: #FFFFFF; +} + +.tiled .titlebar.default-decoration, +.maximized .titlebar.default-decoration, +.fullscreen .titlebar.default-decoration { + box-shadow: none; + border-radius: 0; +} + +.titlebar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} + +.background:not(.csd) .titlebar.default-decoration button.titlebutton:active { + background-size: 1000% 1000%; +} + +.solid-csd .titlebar:dir(rtl), .solid-csd .titlebar:dir(ltr) { + border-radius: 0; + box-shadow: none; +} + +headerbar { + min-height: 40px; + padding: 0 4px; +} + +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 4px; + margin-bottom: 4px; +} + +headerbar separator.titlebutton { + margin-top: 10px; + margin-bottom: 10px; + background-color: rgba(0, 0, 0, 0.12); +} + +headerbar switch { + margin-top: 8px; + margin-bottom: 8px; +} + +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} + +headerbar .entry-tag, headerbar .documents-entry-tag, headerbar .photos-entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +/************ + * Pathbars * + ************/ +.caja-pathbar button, +.path-bar.linked:not(.vertical) > button { + padding-left: 4px; + padding-right: 4px; + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #1A73E8 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 12px; +} + +.caja-pathbar button:checked, +.path-bar.linked:not(.vertical) > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #1A73E8 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.caja-pathbar button:checked, .caja-pathbar button:checked:disabled, +.path-bar.linked:not(.vertical) > button:checked, +.path-bar.linked:not(.vertical) > button:checked:disabled { + background-color: transparent; +} + +.caja-pathbar button label:not(:only-child):first-child, +.path-bar.linked:not(.vertical) > button label:not(:only-child):first-child { + margin-left: 0; +} + +.caja-pathbar button label:not(:only-child):last-child, +.path-bar.linked:not(.vertical) > button label:not(:only-child):last-child { + margin-right: 0; +} + +.caja-pathbar button.text-button, +.path-bar.linked:not(.vertical) > button.text-button { + min-width: 0; +} + +.caja-pathbar button.slider-button, +.path-bar.linked:not(.vertical) > button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +/************** + * Tree Views * + **************/ +treeview.view, filechooser stack.view scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view { + border-left-color: rgba(0, 0, 0, 0.26); + border-top-color: rgba(0, 0, 0, 0.12); +} + +* { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; +} + +treeview.view:selected, filechooser stack.view scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected { + background-color: #FFFFFF; + background-image: image(alpha(currentColor, 0.1)); +} + +treeview.view:hover, filechooser stack.view scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover, treeview.view:selected, filechooser stack.view scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected { + border-radius: 0; +} + +treeview.view.separator, filechooser stack.view scrolledwindow treeview.separator.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.separator.view { + min-height: 5px; + color: rgba(0, 0, 0, 0.12); +} + +treeview.view:drop(active), filechooser stack.view scrolledwindow treeview.view:drop(active), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:drop(active) { + border-style: solid none; + border-width: 9999px; + border-color: alpha(currentColor, 0.08); +} + +treeview.view:drop(active).after, filechooser stack.view scrolledwindow treeview:drop(active).after.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview:drop(active).after.view { + border-top-style: none; +} + +treeview.view:drop(active).before, filechooser stack.view scrolledwindow treeview:drop(active).before.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview:drop(active).before.view { + border-bottom-style: none; +} + +treeview.view.expander, filechooser stack.view scrolledwindow treeview.expander.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(0, 0, 0, 0.6); +} + +treeview.view.expander:dir(rtl), filechooser stack.view scrolledwindow treeview.expander.view:dir(rtl), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view.expander:checked, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:checked { + -gtk-icon-transform: unset; +} + +treeview.view.expander:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:hover, treeview.view.expander:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:active { + color: rgba(0, 0, 0, 0.87); +} + +treeview.view.expander:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:disabled { + color: rgba(0, 0, 0, 0.26); +} + +treeview.view.progressbar, filechooser stack.view scrolledwindow treeview.progressbar.view, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar:focus { + border-bottom: 6px solid #1A73E8; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +treeview.view.progressbar:selected:hover, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar:selected:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar:selected:hover { + box-shadow: none; +} + +treeview.view.trough, filechooser stack.view scrolledwindow treeview.trough.view, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.trough, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.trough { + border-bottom: 6px solid rgba(0, 0, 0, 0.12); + box-shadow: none; + background-color: transparent; + background-image: none; +} + +treeview.view.trough:selected:hover, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.trough:selected:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.trough:selected:hover { + box-shadow: none; +} + +treeview.view header button, filechooser stack.view scrolledwindow treeview.view header button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.12); + border-radius: 0; + background-clip: border-box; +} + +treeview.view header button:not(:focus):not(:hover):not(:active), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:not(:focus):not(:hover):not(:active) { + color: rgba(0, 0, 0, 0.6); +} + +treeview.view header button, filechooser stack.view scrolledwindow treeview.view header button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button, treeview.view header button:disabled, filechooser stack.view scrolledwindow treeview.view header button:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:disabled { + background-color: #FFFFFF; +} + +treeview.view header button:last-child, filechooser stack.view scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child { + border-right-style: none; +} + +treeview.view button.dnd, filechooser stack.view scrolledwindow treeview.view button.dnd, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view button.dnd, +treeview.view header.button.dnd, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.12); + border-radius: 0; + box-shadow: none; + background-color: #FFFFFF; + background-clip: border-box; + color: #1A73E8; +} + +treeview.view acceleditor > label, filechooser stack.view scrolledwindow treeview.view acceleditor > label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view acceleditor > label { + background-color: #1A73E8; +} + +/********* + * Menus * + *********/ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.87); +} + +menubar:backdrop, +.menubar:backdrop { + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.6); +} + +.csd menubar, .csd +.menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +menubar > menuitem, +.menubar > menuitem { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(0, 0, 0, 0.6); +} + +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: alpha(currentColor, 0.1); + color: rgba(0, 0, 0, 0.87); +} + +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(0, 0, 0, 0.26); +} + +menubar > menuitem label:disabled, +.menubar > menuitem label:disabled { + color: inherit; +} + +.background.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 8px 0; + padding: 8px 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.08); +} + +.csd menu, .csd +.menu, .csd +.context-menu { + border: none; + border-radius: 8px; +} + +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + min-width: 40px; + padding: 4px 8px; + color: rgba(0, 0, 0, 0.87); + font: initial; + text-shadow: none; +} + +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + transition: none; + background-color: alpha(currentColor, 0.08); +} + +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(0, 0, 0, 0.38); +} + +menu menuitem arrow, +.menu menuitem arrow, +.context-menu menuitem arrow { + min-height: 16px; + min-width: 16px; +} + +menu menuitem arrow:dir(ltr), +.menu menuitem arrow:dir(ltr), +.context-menu menuitem arrow:dir(ltr) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + margin-left: 8px; +} + +menu menuitem arrow:dir(rtl), +.menu menuitem arrow:dir(rtl), +.context-menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 8px; +} + +menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), +.menu menuitem label:dir(rtl), +.menu menuitem label:dir(ltr), +.context-menu menuitem label:dir(rtl), +.context-menu menuitem label:dir(ltr) { + color: inherit; +} + +menu > arrow, +.menu > arrow, +.context-menu > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.6); +} + +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin-top: -4px; + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + border-radius: 12px 12px 0 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin-top: 8px; + margin-bottom: -12px; + border-top: 1px solid rgba(0, 0, 0, 0.12); + border-radius: 0 0 12px 12px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(alpha(currentColor, 0.08)); + color: rgba(0, 0, 0, 0.87); +} + +menu > arrow:disabled, +.menu > arrow:disabled, +.context-menu > arrow:disabled { + border-color: transparent; + background-color: transparent; + color: transparent; +} + +menu separator, +.menu separator, +.context-menu separator { + margin: 4px 0; +} + +menuitem accelerator { + color: rgba(0, 0, 0, 0.6); +} + +menuitem:disabled accelerator { + color: rgba(0, 0, 0, 0.26); +} + +/************ + * Popovers * + ************/ +popover.background { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #FFFFFF; +} + +popover.background:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} + +popover.background, .csd popover.background { + border-style: solid; + border-width: 0; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); + border-radius: 12px; +} + +popover.background > stack { + margin: -4px; +} + +popover.background > toolbar { + margin: -2px; +} + +popover.background > list, +popover.background > .view, +filechooser stack.view scrolledwindow popover.background > treeview.view, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow popover.background > treeview.view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background list, +popover.background .view:not(:selected), +popover.background window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow popover.background treeview.view:not(:selected), +popover.background toolbar { + background-color: #FFFFFF; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 12px; +} + +popover.background separator { + margin: 4px 0; +} + +popover.background list separator { + margin: 0; +} + +/************* + * Notebooks * + *************/ +frame > paned > notebook > header, +notebook.frame > header { + background-color: #FAFAFA; +} + +notebook:focus tab:checked { + box-shadow: none; +} + +notebook > header { + border-width: 1px; + border-color: rgba(0, 0, 0, 0.08); + background-color: #F2F2F2; + background-clip: border-box; +} + +notebook > header.top { + border-bottom-style: solid; +} + +notebook > header.top > tabs { + margin-bottom: -1px; + margin-top: 4px; +} + +notebook > header.top > tabs > tab { + border-radius: 12px 12px 0 0; + border-bottom: none; +} + +notebook > header.bottom { + border-top-style: solid; +} + +notebook > header.bottom > tabs { + margin-top: -1px; + margin-bottom: 4px; +} + +notebook > header.bottom > tabs > tab { + border-radius: 0 0 12px 12px; + border-top: none; +} + +notebook > header.left { + border-right-style: solid; +} + +notebook > header.left > tabs { + margin-left: 4px; + margin-right: -1px; +} + +notebook > header.left > tabs > tab { + border-radius: 12px 0 0 12px; + border-right: none; +} + +notebook > header.right { + border-left-style: solid; +} + +notebook > header.right > tabs { + margin-left: -1px; + margin-right: 4px; +} + +notebook > header.right > tabs > tab { + border-radius: 0 12px 12px 0; + border-left: none; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: -8px; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: -8px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: -8px; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: -8px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 0; +} + +notebook > header tab { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + min-height: 24px; + min-width: 24px; + padding: 4px 12px; + border-width: 1px; + border-color: transparent; + border-style: solid; + outline: none; + background-clip: padding-box; + color: rgba(0, 0, 0, 0.6); + font-weight: 500; +} + +notebook > header tab:hover, notebook > header tab > box:drop(active) { + background-color: rgba(0, 0, 0, 0.08); + color: rgba(0, 0, 0, 0.87); +} + +notebook > header tab:disabled { + color: rgba(0, 0, 0, 0.26); +} + +notebook > header tab:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: #FFFFFF; + background-clip: padding-box; + border-color: rgba(0, 0, 0, 0.08); + color: rgba(0, 0, 0, 0.87); +} + +notebook > header tab:checked:disabled { + color: rgba(0, 0, 0, 0.38); +} + +notebook > header tab:checked.reorderable-page { + background-color: #FFFFFF; +} + +notebook > header tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -4px -12px; + padding: 4px 12px; +} + +notebook > header tab button.flat:last-child { + margin-left: 4px; + margin-right: -8px; +} + +notebook > header tab button.flat:first-child { + margin-left: -8px; + margin-right: 4px; +} + +notebook > header.top tabs, notebook > header.bottom tabs { + padding-left: 8px; + padding-right: 8px; +} + +notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { + border-style: solid; +} + +notebook > header.left tabs, notebook > header.right tabs { + padding-top: 8px; + padding-bottom: 8px; +} + +notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { + border-style: solid; +} + +notebook > stack:not(:only-child) { + background-color: #FFFFFF; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: #FFFFFF; +} + +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar.top { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +scrollbar.bottom { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +scrollbar.left { + border-right: 1px solid rgba(0, 0, 0, 0.12); +} + +scrollbar.right { + border-left: 1px solid rgba(0, 0, 0, 0.12); +} + +scrollbar slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 8px; + min-height: 8px; + border: 4px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(0, 0, 0, 0.38); +} + +scrollbar slider:hover { + background-color: rgba(0, 0, 0, 0.6); +} + +scrollbar slider:active { + background-color: rgba(0, 0, 0, 0.87); +} + +scrollbar slider:disabled { + background-color: rgba(0, 0, 0, 0.26); +} + +scrollbar.fine-tune slider { + min-width: 4px; + min-height: 4px; +} + +scrollbar.fine-tune.horizontal slider { + margin: 2px 0; +} + +scrollbar.fine-tune.vertical slider { + margin: 0 2px; +} + +scrollbar.overlay-indicator:not(.fine-tune) slider { + transition-property: background-color, min-height, min-width; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(255, 255, 255, 0.3); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(255, 255, 255, 0.3); + border-radius: 9999px; + background-color: rgba(0, 0, 0, 0.38); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(0, 0, 0, 0.26); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + min-width: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { + min-width: 8px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + min-height: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { + min-height: 8px; +} + +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: rgba(255, 255, 255, 0.9); +} + +scrollbar.horizontal slider { + min-width: 24px; +} + +scrollbar.vertical slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +scrollbar.vertical button.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +scrollbar.vertical button.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +scrollbar.horizontal button.down { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(0, 0, 0, 0.26); + background-clip: padding-box; + font-size: 0; +} + +switch:checked { + background-color: rgba(26, 115, 232, 0.5); +} + +switch:disabled { + opacity: 0.5; +} + +switch image { + margin: -8px; + -gtk-icon-transform: scale(0); +} + +switch slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + outline: none; + box-shadow: 0 0 0 10px transparent, 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #FFFFFF; +} + +switch:focus slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +switch:hover slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +switch:focus:hover slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.16), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +switch:checked slider { + background-color: #1A73E8; + color: #1A73E8; +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +.view.content-view.check:not(list):hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list):hover, .view.content-view.check:not(list):active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list):active, +.content-view .tile check:not(list):hover, +.content-view .tile check:not(list):active { + -gtk-icon-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 4px 3px rgba(0, 0, 0, 0.14), 0 1px 6px rgba(0, 0, 0, 0.12); +} + +.view.content-view.check:not(list), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked.png"), url("assets/selectionmode-checkbox-unchecked@2.png")); +} + +.view.content-view.check:not(list):checked, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked.png"), url("assets/selectionmode-checkbox-checked@2.png")); +} + +checkbutton, +radiobutton { + outline: none; +} + +checkbutton.text-button, +radiobutton.text-button { + padding: 2px; +} + +checkbutton.text-button label:not(:only-child), +radiobutton.text-button label:not(:only-child) { + margin: 0 4px; +} + +check, +radio { + min-height: 24px; + min-width: 24px; + margin: -8px; + padding: 8px; +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #0F9D58; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(0, 0, 0, 0.26); +} + +check:not(:hover):focus, +radio:not(:hover):focus { + box-shadow: inset 0 0 0 9999px transparent; +} + +popover modelbutton.flat check, popover modelbutton.flat check:focus, popover modelbutton.flat check:hover, popover modelbutton.flat check:focus:hover, popover modelbutton.flat check:active, popover modelbutton.flat check:disabled, popover modelbutton.flat +radio, popover modelbutton.flat +radio:focus, popover modelbutton.flat +radio:hover, popover modelbutton.flat +radio:focus:hover, popover modelbutton.flat +radio:active, popover modelbutton.flat +radio:disabled { + transition: none; + box-shadow: none; + background-image: none; +} + +popover modelbutton.flat check:not(:checked):not(:indeterminate):not(:disabled), popover modelbutton.flat +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(0, 0, 0, 0.6); +} + +popover modelbutton.flat check.left:dir(rtl), popover modelbutton.flat +radio.left:dir(rtl) { + margin-left: -12px; + margin-right: -4px; +} + +popover modelbutton.flat check.right:dir(ltr), popover modelbutton.flat +radio.right:dir(ltr) { + margin-left: -4px; + margin-right: -12px; +} + +menu menuitem check, menu menuitem +radio { + transition: none; + margin: 0; + padding: 0; +} + +menu menuitem check:dir(ltr), menu menuitem +radio:dir(ltr) { + margin-right: 8px; +} + +menu menuitem check:dir(rtl), menu menuitem +radio:dir(rtl) { + margin-left: 8px; +} + +menu menuitem check:not(:checked):not(:indeterminate):not(:disabled), menu menuitem +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(0, 0, 0, 0.6); +} + +menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem +radio, menu menuitem +radio:hover, menu menuitem +radio:disabled { + box-shadow: none; +} + + +check { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg")); +} + + +check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")); +} + + +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")); +} + + +radio { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg")); + border-image-slice: 20; + border-image-width: 20px; +} + + +radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")); +} + + +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; + border-radius: 12px; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")); +} + +treeview.view check, filechooser stack.view scrolledwindow treeview.view check, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check, +treeview.view radio, +filechooser stack.view scrolledwindow treeview.view radio, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio { + padding: 0; +} + +treeview.view check:hover, filechooser stack.view scrolledwindow treeview.view check:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:hover, treeview.view check:selected, filechooser stack.view scrolledwindow treeview.view check:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:selected, +treeview.view radio:hover, +filechooser stack.view scrolledwindow treeview.view radio:hover, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:hover, +treeview.view radio:selected, +filechooser stack.view scrolledwindow treeview.view radio:selected, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:selected { + box-shadow: none; + background-color: transparent; +} + +treeview.view check, filechooser stack.view scrolledwindow treeview.view check, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check, +treeview.view radio, +filechooser stack.view scrolledwindow treeview.view radio, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio { + color: rgba(0, 0, 0, 0.6); +} + +treeview.view check:hover, filechooser stack.view scrolledwindow treeview.view check:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:hover, treeview.view check:active, filechooser stack.view scrolledwindow treeview.view check:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:active, +treeview.view radio:hover, +filechooser stack.view scrolledwindow treeview.view radio:hover, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:hover, +treeview.view radio:active, +filechooser stack.view scrolledwindow treeview.view radio:active, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:active { + color: rgba(0, 0, 0, 0.87); +} + +treeview.view check:disabled, filechooser stack.view scrolledwindow treeview.view check:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:disabled, +treeview.view radio:disabled, +filechooser stack.view scrolledwindow treeview.view radio:disabled, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:disabled { + color: rgba(0, 0, 0, 0.26); +} + +treeview.view check:checked, filechooser stack.view scrolledwindow treeview.view check:checked, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:checked, treeview.view check:indeterminate, filechooser stack.view scrolledwindow treeview.view check:indeterminate, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:indeterminate, +treeview.view radio:checked, +filechooser stack.view scrolledwindow treeview.view radio:checked, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:checked, +treeview.view radio:indeterminate, +filechooser stack.view scrolledwindow treeview.view radio:indeterminate, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:indeterminate { + color: #0F9D58; +} + +treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:indeterminate:disabled, +treeview.view radio:checked:disabled, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:checked:disabled, +treeview.view radio:indeterminate:disabled, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:indeterminate:disabled { + color: rgba(0, 0, 0, 0.26); +} + + +treeview.view radio:checked, +filechooser stack.view scrolledwindow treeview.view radio:checked, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")); + border-image: none; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 2px; + min-width: 2px; +} + +scale.horizontal { + padding: 15px 12px; +} + +scale.vertical { + padding: 12px 15px; +} + +scale slider { + min-height: 32px; + min-width: 32px; + margin: -15px; +} + +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 14px; + padding-bottom: 14px; +} + +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 14px; + padding-right: 14px; +} + +scale.fine-tune slider { + margin: -14px; +} + +scale trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(0, 0, 0, 0.26); +} + +scale trough:disabled { + background-color: rgba(0, 0, 0, 0.12); +} + +scale highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); + background-image: image(#1A73E8); +} + +scale highlight:disabled { + background-color: #F2F2F2; + background-image: image(rgba(0, 0, 0, 0.26)); +} + +scale fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(0, 0, 0, 0.26); +} + +scale fill:disabled { + background-color: transparent; +} + +scale slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-repeat: no-repeat; + background-position: center; + background-size: auto, 1000% 1000%; + border-radius: 50%; + color: #1A73E8; +} + +scale slider { + background-image: -gtk-scaled(url("assets/scale-slider.png"), url("assets/scale-slider@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled.png"), url("assets/scale-slider-disabled@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: -gtk-scaled(url("assets/scale-slider.png"), url("assets/scale-slider@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: auto, 0% 0%; +} + +scale marks, +scale value { + color: rgba(0, 0, 0, 0.6); +} + +scale indicator { + background-color: rgba(0, 0, 0, 0.26); + color: transparent; +} + +scale.horizontal marks.top { + margin-bottom: 7px; + margin-top: -15px; +} + +scale.horizontal.fine-tune marks.top { + margin-bottom: 6px; + margin-top: -14px; +} + +scale.horizontal marks.bottom { + margin-top: 7px; + margin-bottom: -15px; +} + +scale.horizontal.fine-tune marks.bottom { + margin-top: 6px; + margin-bottom: -14px; +} + +scale.vertical marks.top { + margin-right: 7px; + margin-left: -15px; +} + +scale.vertical.fine-tune marks.top { + margin-right: 6px; + margin-left: -14px; +} + +scale.vertical marks.bottom { + margin-left: 7px; + margin-right: -15px; +} + +scale.vertical.fine-tune marks.bottom { + margin-left: 6px; + margin-right: -14px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled.png"), url("assets/scale-horz-marks-before-slider-disabled@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider.png"), url("assets/scale-horz-marks-before-slider@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider.png"), url("assets/scale-horz-marks-after-slider@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled.png"), url("assets/scale-horz-marks-after-slider-disabled@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider.png"), url("assets/scale-horz-marks-after-slider@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider.png"), url("assets/scale-vert-marks-before-slider@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled.png"), url("assets/scale-vert-marks-before-slider-disabled@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider.png"), url("assets/scale-vert-marks-before-slider@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider.png"), url("assets/scale-vert-marks-after-slider@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled.png"), url("assets/scale-vert-marks-after-slider-disabled@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider.png"), url("assets/scale-vert-marks-after-slider@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) { + margin-bottom: -24px; + margin-top: 8px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -24px; + margin-right: 8px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) slider { + margin-right: -24px; + margin-left: 8px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(0, 0, 0, 0.6); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 6px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 6px; +} + +progressbar trough { + border-radius: 12px; + background-color: rgba(0, 0, 0, 0.12); +} + +progressbar progress { + border-radius: 12px; + background-color: #1A73E8; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 6px; +} + +levelbar.horizontal.discrete block { + min-width: 32px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 6px; +} + +levelbar.vertical.discrete block { + min-height: 32px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar trough { + border-radius: 12px; +} + +levelbar block.low { + background-color: #F4B400; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #1A73E8; +} + +levelbar block.full { + background-color: #0F9D58; +} + +levelbar block.empty { + background-color: rgba(0, 0, 0, 0.12); +} + +/**************** + * Print dialog * +*****************/ +printdialog paper { + padding: 0; + border: 1px solid rgba(0, 0, 0, 0.08); + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.87); +} + +printdialog .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame > border, +.frame { + margin: 0; + padding: 0; + border: 1px solid rgba(0, 0, 0, 0.08); + border-radius: 0; + box-shadow: none; +} + +frame > border.flat, +.frame.flat, +frame.flat > border { + border-style: none; +} + +actionbar > revealer > box { + padding: 4px; + border-top: 1px solid rgba(0, 0, 0, 0.12); + background-color: #FFFFFF; + background-clip: border-box; +} + +.background.csd revealer > actionbar > revealer > box { + border-radius: 0 0 18px 18px; +} + +stack scrolledwindow.frame { + border-radius: 12px; +} + +scrolledwindow viewport.frame { + border-style: none; +} + +scrolledwindow viewport.frame.view { + border-radius: 12px; +} + +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(26, 115, 232, 0.24)), to(transparent)); + 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.75, to(rgba(26, 115, 232, 0.24)), to(transparent)); + 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.75, to(rgba(26, 115, 232, 0.24)), to(transparent)); + 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.75, to(rgba(26, 115, 232, 0.24)), to(transparent)); + 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, transparent 50%, rgba(0, 0, 0, 0.26) 50%); + padding-top: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left top; + margin: 0 4px; +} + +undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, transparent 50%, rgba(0, 0, 0, 0.26) 50%); + padding-bottom: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left bottom; + margin: 0 4px; +} + +undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(0, 0, 0, 0.26) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; + margin: 0 4px; + margin: 4px 0; +} + +undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(0, 0, 0, 0.26) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; + margin: 0 4px; + margin: 4px 0; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.12); + background-color: #FFFFFF; +} + +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(0, 0, 0, 0.12); +} + + +button.font separator, +button.file separator, stacksidebar.sidebar + separator.vertical, +stacksidebar.sidebar separator.horizontal, .tweak-categories separator, preferences stacksidebar.sidebar list separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/********* + * Lists * + *********/ +list { + border-color: rgba(0, 0, 0, 0.08); + background-color: #FFFFFF; +} + +list row { + padding: 2px; +} + +row.activatable, treeview.view header button, filechooser stack.view scrolledwindow treeview.view header button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + box-shadow: inset 0 0 0 9999px transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} + +row.activatable:focus, treeview.view header button:focus, filechooser stack.view scrolledwindow treeview.view header button:focus, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:focus, .budgie-popover.budgie-menu button.flat:focus:not(.image-button):not(.indicator-item) { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +row.activatable:hover, treeview.view header button:hover, filechooser stack.view scrolledwindow treeview.view header button:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:hover, +treeview.view header button:drop(active), +filechooser stack.view scrolledwindow treeview.view header button:drop(active), +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:drop(active), placessidebar.sidebar row.activatable:drop(active), placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:drop(active), .budgie-popover.budgie-menu button.flat:hover:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu toolbar button:not(.image-button):not(.indicator-item):drop(active), toolbar .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .titlebar button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .titlebar .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .budgie-popover.budgie-menu popover.background.menu button:not(.image-button):not(.indicator-item):drop(active), popover.background.menu .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), +.budgie-popover.budgie-menu popover.background button.model:not(.image-button):not(.indicator-item):drop(active), popover.background .budgie-popover.budgie-menu button.model:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu actionbar > revealer > box button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), actionbar > revealer > box .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .budgie-popover.budgie-menu .app-notification button:not(.image-button):not(.indicator-item):drop(active), .app-notification .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box button:not(.image-button):not(.indicator-item):drop(active), messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu filechooser #pathbarbox > stack > box > button:not(.image-button):not(.indicator-item):drop(active), filechooser .budgie-popover.budgie-menu #pathbarbox > stack > box > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu infobar.info button:not(.image-button):not(.indicator-item):drop(active), infobar.info .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu infobar.question button:not(.image-button):not(.indicator-item):drop(active), infobar.question .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .lock-dialog button:not(.image-button):not(.indicator-item):drop(active), .lock-dialog .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu #buttonbox_frame button:not(.image-button):not(.indicator-item):drop(active), #buttonbox_frame .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .nemo-window .toolbar button:not(.image-button):not(.indicator-item):drop(active), .nemo-window .toolbar .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), +.budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item):drop(active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms, background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +row.activatable.has-open-popup, treeview.view header button.has-open-popup, filechooser stack.view scrolledwindow treeview.view header button.has-open-popup, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button.has-open-popup, .budgie-popover.budgie-menu button.has-open-popup.flat:not(.image-button):not(.indicator-item), row.activatable:active, treeview.view header button:active, filechooser stack.view scrolledwindow treeview.view header button:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:active, .budgie-popover.budgie-menu button.flat:active:not(.image-button):not(.indicator-item) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; +} + +row:selected { + color: inherit; +} + +row:selected image, +row:selected label { + color: rgba(0, 0, 0, 0.87); +} + +row:selected button image, +row:selected button label { + color: inherit; +} + +row:selected:disabled image, +row:selected:disabled label { + color: rgba(0, 0, 0, 0.38); +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 8px; +} + +.app-notification button.text-button:not(:disabled) { + color: #1A73E8; +} + +.app-notification.frame, +.app-notification border { + border-style: none; +} + +/************* + * Expanders * + *************/ +expander title > arrow { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(0, 0, 0, 0.6); +} + +expander title > arrow:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +expander title > arrow:checked { + -gtk-icon-transform: unset; +} + +expander title > arrow:hover, expander title > arrow:active { + color: rgba(0, 0, 0, 0.87); +} + +expander title > arrow:disabled { + color: rgba(0, 0, 0, 0.26); +} + +/************ + * Calendar * + ************/ +calendar { + padding: 1px; + border: 1px solid rgba(0, 0, 0, 0.08); + color: rgba(0, 0, 0, 0.87); +} + +calendar:disabled { + color: rgba(0, 0, 0, 0.38); +} + +calendar:selected { + border-radius: 13px; +} + +calendar.header { + border-style: none none solid; + border-color: rgba(0, 0, 0, 0.12); + border-radius: 0; +} + +calendar.highlight { + color: rgba(0, 0, 0, 0.6); + font-weight: 500; +} + +calendar:indeterminate { + color: rgba(0, 0, 0, 0.26); +} + +/*********** + * Dialogs * + ***********/ +messagedialog.background { + background-color: #FFFFFF; +} + +messagedialog .titlebar { + min-height: 24px; + border-style: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.87); +} + +messagedialog .titlebar:backdrop { + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.6); +} + +messagedialog.csd.background { + border-bottom-left-radius: 18px; + border-bottom-right-radius: 18px; +} + +messagedialog.csd .dialog-action-box { + margin-top: -4px; +} + +messagedialog.csd .dialog-action-box button:not(:last-child) { + margin-right: 4px; +} + +messagedialog.csd .dialog-action-box button:not(:disabled) { + color: #1A73E8; +} + +messagedialog.csd .dialog-action-box button.destructive-action:not(:disabled) { + color: #D93025; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + background-color: #F2F2F2; +} + +filechooser stack.view { + background-color: transparent; +} + +filechooser stack.view scrolledwindow { + background-color: #FFFFFF; + border-radius: 0 0 18px 18px; +} + +filechooser stack.view scrolledwindow treeview.view, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view { + background-color: transparent; +} + +.csd filechooser placessidebar { + background: none; + border-bottom-left-radius: 18px; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border-style: none; + background-color: #FAFAFA; +} + +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:not(separator):dir(ltr), .sidebar:not(separator).left, .sidebar:not(separator).left:dir(rtl) { + border-right: 1px solid rgba(0, 0, 0, 0.12); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:not(separator):dir(rtl), .sidebar:not(separator).right { + border-left: 1px solid rgba(0, 0, 0, 0.12); + 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.sidebar list { + padding: 4px; + background-color: #FAFAFA; +} + +stacksidebar.sidebar row { + min-height: 32px; + padding: 0 2px; + border-radius: 6px; +} + +stacksidebar.sidebar row:selected { + background-color: alpha(currentColor, 0.1); + color: #1A73E8; + font-weight: 500; +} + +stacksidebar.sidebar row + row { + margin-top: 4px; +} + +stacksidebar.sidebar row > label { + padding-left: 6px; + padding-right: 6px; + color: inherit; +} + +separator.sidebar { + background-color: rgba(0, 0, 0, 0.12); +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(0, 0, 0, 0.6); +} + +row image.sidebar-icon:disabled { + color: rgba(0, 0, 0, 0.26); +} + +placessidebar.sidebar > viewport.frame { + border-style: none; +} + +placessidebar.sidebar list { + padding: 1px 0 4px; +} + +placessidebar.sidebar row { + min-height: 32px; + margin: -1px 4px -1px 0; + padding: 0; + border-radius: 0 1000px 1000px 0; +} + +placessidebar.sidebar row > revealer { + padding: 0 8px 0 16px; +} + +placessidebar.sidebar row:selected { + background-color: alpha(currentColor, 0.1); + color: #1A73E8; + font-weight: 500; +} + +placessidebar.sidebar row:selected image.sidebar-icon { + color: #1A73E8; +} + +placessidebar.sidebar row:disabled { + color: rgba(0, 0, 0, 0.38); +} + +placessidebar.sidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +placessidebar.sidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +placessidebar.sidebar row label.sidebar-label { + color: inherit; +} + +placessidebar.sidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar.sidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar.sidebar row.sidebar-placeholder-row { + background-color: alpha(currentColor, 0.08); +} + +placessidebar.sidebar row.sidebar-new-bookmark-row { + color: #1A73E8; +} + +placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #1A73E8; +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(rgba(0, 0, 0, 0.12)); + background-size: 1px 1px; + background-clip: content-box; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #F2F2F2; + background-image: image(rgba(0, 0, 0, 0.12)), image(rgba(0, 0, 0, 0.12)); + 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; +} + +/************** + * GtkInfoBar * + **************/ +infobar { + border-style: none; +} + +infobar.info, infobar.question { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + background-color: #FFFFFF; +} + +infobar.info button.text-button:not(:disabled), infobar.question button.text-button:not(:disabled) { + color: #1A73E8; +} + +infobar.warning { + background-color: #F4B400; + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning *:link, infobar.warning button.link:link { + color: rgba(0, 0, 0, 0.87); +} + +infobar.error { + background-color: #D93025; + color: white; +} + +infobar.error *:link, infobar.error button.link:link { + color: white; +} + +/************ + * Tooltips * + ************/ +tooltip { + border-radius: 6px; + box-shadow: none; +} + +tooltip.background { + background-color: rgba(97, 97, 97, 0.9); + color: white; +} + +tooltip.background.csd { + border-radius: 12px; +} + +tooltip decoration { + background-color: transparent; +} + +tooltip > box { + margin: -6px; + min-height: 24px; + padding: 4px 8px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} + +colorswatch.top overlay { + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} + +colorswatch.bottom { + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 8px; + border-bottom-right-radius: 8px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 8px; + border-bottom-right-radius: 8px; +} + +colorswatch.dark { + color: white; +} + +colorswatch.light { + color: rgba(0, 0, 0, 0.87); +} + +colorswatch#add-color-button { + border-radius: 8px 8px 0 0; + color: rgba(0, 0, 0, 0.87); +} + +colorswatch#add-color-button:only-child { + border-radius: 8px; +} + +colorswatch#add-color-button overlay { + background-color: #FFFFFF; +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 8px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 8px; +} + +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 12px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.4); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #F2F2F2; +} + +/********************** + * Window Decorations * + **********************/ +decoration { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 18px; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent; + margin: 8px; +} + +decoration:backdrop { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent; +} + +.maximized decoration, +.fullscreen decoration, +.tiled decoration, +.tiled-top decoration, +.tiled-right decoration, +.tiled-bottom decoration, +.tiled-left decoration { + border-radius: 0; +} + +.popup decoration { + box-shadow: none; +} + +.ssd decoration { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} + +.csd.popup decoration { + border-radius: 12px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); +} + +tooltip.csd decoration { + border-radius: 12px; + box-shadow: none; +} + +messagedialog.csd decoration { + border-radius: 18px; +} + +.solid-csd decoration { + margin: 0; + padding: 2px; + border-radius: 0; + box-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +.solid-csd decoration:backdrop { + background-color: #FFFFFF; +} + +modelbutton.flat:selected, +.menuitem.button.flat:selected, row:selected, calendar:selected, box.vertical > widget > widget:selected, .budgie-popover.budgie-menu button.flat:checked:not(.image-button):not(.indicator-item), calendar.raven-calendar:selected, XfdesktopIconView.view:active { + background-color: alpha(currentColor, 0.06); +} + +flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window notebook :not(treeview).view selection, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview) selection, filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview) selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook .view:selected:not(treeview), .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:selected:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected { + color: #1A73E8; + background-color: rgba(50, 129, 234, 0.2); +} + +textview text selection:focus, textview text selection, label selection, spinbutton:not(.vertical) selection, spinbutton.vertical selection, +entry selection, .nemo-window .nemo-window-pane widget.entry:selected { + color: white; + background-color: #1A73E8; +} + +.monospace { + font-family: monospace; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + color: #1A73E8; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/cursor-handle-symbolic.svg")); +} + +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + -gtk-icon-transform: unset; +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + padding-top: 6px; + -gtk-icon-transform: rotate(45deg); +} + +.context-menu { + font: initial; +} + +.keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(0, 0, 0, 0.08); + border-radius: 13px; + box-shadow: inset 0 -2px rgba(0, 0, 0, 0.08); + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.87); + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + caret-color: #1A73E8; +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/************* + * App Icons * + *************/ +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker entry { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +button.emoji-section { + margin: 4px; +} + +button.emoji-section:checked { + color: #1A73E8; +} + +button.emoji-section:not(:last-child) { + margin-right: 0; +} + +popover.emoji-picker .emoji { + min-width: 3em; + min-height: 3em; + padding: 0 8px; +} + +popover.emoji-picker .emoji widget { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 12px; +} + +popover.emoji-picker .emoji widget:hover { + background-color: alpha(currentColor, 0.08); +} + +popover.emoji-completion { + padding: 8px 0; +} + +popover.emoji-completion arrow { + border: none; + background: none; +} + +popover.emoji-completion .emoji-completion-row { + min-height: 28px; + padding: 0 12px; +} + +popover.emoji-completion .emoji:hover { + background-color: alpha(currentColor, 0.08); +} + +/************ + * Nautilus * + ************/ +.nautilus-window.csd { + background-color: #FFFFFF; + border-radius: 0 0 18px 18px; +} + +.nautilus-window.csd headerbar { + padding-left: 12px; + box-shadow: none; +} + +.nautilus-window.csd placessidebar { + background: none; + border-radius: 18px; +} + +.nautilus-window.csd placessidebar > viewport.frame { + margin: 8px 0 12px 12px; + border-radius: 12px; + background-color: rgba(26, 115, 232, 0.08); +} + +.nautilus-window.csd placessidebar > viewport.frame > list { + padding: 12px 0 12px 0; + background: none; + border-radius: 12px; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) { + border-radius: 0; + margin: -8px -8px -8px 0; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item), .nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:hover, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:hover, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:hover, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:hover, +.nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:drop(active), treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), +.nautilus-window.csd filechooser stack.view scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active), filechooser stack.view scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), +.nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd placessidebar.sidebar placessidebar > viewport.frame > list > row.activatable:drop(active), placessidebar.sidebar .nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:drop(active), .nautilus-window.csd placessidebar.sidebar treeview.view header placessidebar > viewport.frame > list > button:drop(active), placessidebar.sidebar treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd treeview.view header placessidebar.sidebar placessidebar > viewport.frame > list > button:drop(active), treeview.view header placessidebar.sidebar .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active), placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar.sidebar placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd .budgie-popover.budgie-menu placessidebar.sidebar placessidebar > viewport.frame > list > button.flat:drop(active):not(.image-button):not(.indicator-item), .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:hover:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:hover:not(.image-button):not(.indicator-item), .nautilus-window.csd .budgie-popover.budgie-menu toolbar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu toolbar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd toolbar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), toolbar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu .titlebar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .budgie-popover.budgie-menu .titlebar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .nautilus-window.csd .titlebar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .titlebar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .nautilus-window.csd .budgie-popover.budgie-menu popover.background.menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu popover.background.menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd popover.background.menu .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), popover.background.menu .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), +.nautilus-window.csd .budgie-popover.budgie-menu popover.background placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu popover.background .nautilus-window.csd placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd popover.background .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active), popover.background .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu actionbar > revealer > box placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .budgie-popover.budgie-menu actionbar > revealer > box .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .nautilus-window.csd actionbar > revealer > box .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), actionbar > revealer > box .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .nautilus-window.csd .budgie-popover.budgie-menu .app-notification placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .app-notification .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .app-notification .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .app-notification .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu infobar.info placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu infobar.info .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd infobar.info .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), infobar.info .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu infobar.question placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu infobar.question .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd infobar.question .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), infobar.question .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu .lock-dialog placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .lock-dialog .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .lock-dialog .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .lock-dialog .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu #buttonbox_frame placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu #buttonbox_frame .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd #buttonbox_frame .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), #buttonbox_frame .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu .nemo-window .toolbar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .nemo-window .toolbar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .nemo-window .toolbar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nemo-window .toolbar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), +.nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:active, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:active, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:active, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:active, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:active:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:active:not(.image-button):not(.indicator-item) { + background: none; + box-shadow: none; + animation: none; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:hover label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:hover label.sidebar-label, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:hover label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:hover label.sidebar-label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:hover label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd filechooser stack.view scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, filechooser stack.view scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd placessidebar.sidebar placessidebar > viewport.frame > list > row.activatable:drop(active) label.sidebar-label, placessidebar.sidebar .nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:drop(active) label.sidebar-label, .nautilus-window.csd placessidebar.sidebar treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, placessidebar.sidebar treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar.sidebar placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, treeview.view header placessidebar.sidebar .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar.sidebar placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar.sidebar placessidebar > viewport.frame > list > button.flat:drop(active):not(.image-button):not(.indicator-item) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:hover:not(.image-button):not(.indicator-item) label.sidebar-label, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:hover:not(.image-button):not(.indicator-item) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu toolbar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu toolbar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd toolbar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, toolbar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu .titlebar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .budgie-popover.budgie-menu .titlebar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .nautilus-window.csd .titlebar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .titlebar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu popover.background.menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu popover.background.menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd popover.background.menu .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, popover.background.menu .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu popover.background placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu popover.background .nautilus-window.csd placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd popover.background .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, popover.background .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu actionbar > revealer > box placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .budgie-popover.budgie-menu actionbar > revealer > box .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .nautilus-window.csd actionbar > revealer > box .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, actionbar > revealer > box .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu .app-notification placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu .app-notification .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .app-notification .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .app-notification .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu infobar.info placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu infobar.info .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd infobar.info .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, infobar.info .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu infobar.question placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu infobar.question .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd infobar.question .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, infobar.question .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu .lock-dialog placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu .lock-dialog .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .lock-dialog .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .lock-dialog .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu #buttonbox_frame placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu #buttonbox_frame .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd #buttonbox_frame .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, #buttonbox_frame .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu .nemo-window .toolbar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu .nemo-window .toolbar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .nemo-window .toolbar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nemo-window .toolbar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label { + color: #1A73E8; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:selected, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:selected, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) { + background-color: transparent; + font-weight: 600; + font-size: bigger; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:selected image.sidebar-icon, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:selected image.sidebar-icon, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected image.sidebar-icon, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:selected image.sidebar-icon, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected image.sidebar-icon, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) image.sidebar-icon, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) image.sidebar-icon { + color: #1A73E8; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:selected label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:selected label.sidebar-label, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:selected label.sidebar-label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) label.sidebar-label, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) label.sidebar-label { + background-color: #FFFFFF; + border-image-width: 10px 10px 10px 18px; + border-image-slice: 10 10 10 18; + border-image-repeat: stretch; + border-image-source: -gtk-scaled(url("assets/row-selected.png"), url("assets/row-selected@2.png")); +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:disabled, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:disabled, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:disabled, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:disabled, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:disabled:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:disabled:not(.image-button):not(.indicator-item) { + color: rgba(0, 0, 0, 0.38); +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable image.sidebar-icon, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button image.sidebar-icon, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button image.sidebar-icon, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button image.sidebar-icon, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button image.sidebar-icon, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) image.sidebar-icon, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) image.sidebar-icon { + padding-right: 8px; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button label.sidebar-label, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button label.sidebar-label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) label.sidebar-label, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) label.sidebar-label { + color: inherit; + min-height: 54px; + padding: 0 0 0 14px; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable.sidebar-placeholder-row, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button.sidebar-placeholder-row, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button.sidebar-placeholder-row, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button.sidebar-placeholder-row, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button.sidebar-placeholder-row, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.sidebar-placeholder-row.flat:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.sidebar-placeholder-row.flat:not(.image-button):not(.indicator-item) { + background-color: transparent; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > separator { + background: none; +} + +.nautilus-window.csd placessidebar scrollbar { + background: none; + border: none; +} + +.nautilus-window.csd placessidebar > undershoot.top { + background: none; +} + +.nautilus-window.csd placessidebar > undershoot.bottom { + background: none; +} + +.nautilus-window.csd .nautilus-list-view { + background-color: #FFFFFF; + border-radius: 0 0 18px 18px; +} + +.nautilus-window.csd .nautilus-list-view treeview.view:not(:hover):not(:active):not(:selected), .nautilus-window.csd .nautilus-list-view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:hover):not(:active):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window.csd .nautilus-list-view treeview.view:not(:hover):not(:active):not(:selected) { + background-color: transparent; + border-radius: 0; +} + +.nautilus-window.csd notebook { + background: none; + border-radius: 0 0 18px 18px; +} + +.nautilus-window.csd notebook > stack { + background-color: #FFFFFF; + border-radius: 0 0 18px 18px; +} + +.nautilus-window.csd notebook scrolledwindow > .view:not(:selected):not(:hover):not(:checked), .nautilus-window.csd notebook filechooser stack.view scrolledwindow > treeview.view:not(:selected):not(:hover):not(:checked), .nautilus-window.csd notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow > treeview.view:not(:selected):not(:hover):not(:checked) { + background-color: transparent; +} + +.nautilus-window.csd paned > separator { + background: none; +} + +.nautilus-window.csd paned > separator.wide { + min-width: 0; + min-height: 0; + background: none; +} + +.nautilus-window.maximized, .nautilus-window.maximized notebook, +.nautilus-window.maximized notebook > stack, +.nautilus-window.maximized placessidebar { + border-radius: 0; +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + margin: 6px; + border-style: none; + border-radius: 18px; + background-color: rgba(242, 242, 242, 0.95); +} + +.nautilus-window .floating-bar button { + margin: 4px; +} + +.nautilus-canvas-item.dim-label, +.nautilus-list-dim-label { + color: rgba(0, 0, 0, 0.6); +} + +.nautilus-desktop.nautilus-canvas-item, .caja-desktop.caja-canvas-item, .nemo-desktop.nemo-canvas-item { + color: white; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +@keyframes nautilus-operations-button-needs-attention { + to { + background-color: alpha(currentColor, 0.08); + } +} + +.nautilus-operations-button-needs-attention { + animation: nautilus-operations-button-needs-attention 300ms cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; +} + +.nautilus-operations-button-needs-attention-multiple { + animation: nautilus-operations-button-needs-attention 300ms cubic-bezier(0.4, 0, 0.2, 1) 6 alternate; +} + +.path-bar-box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + border-radius: 9999px; +} + +.path-bar-box button { + margin: 0; +} + +.path-bar-box.width-maximized { + background-color: rgba(0, 0, 0, 0.04); +} + +.path-bar-box.background.frame { + border-style: none; + background-color: rgba(0, 0, 0, 0.04); +} + +.path-bar-box .path-bar button label:not(:only-child):first-child { + margin-left: 0; +} + +.path-bar-box .path-bar button label:not(:only-child):last-child { + margin-right: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) { + padding-left: 10px; + padding-right: 10px; + margin-left: 1px; + margin-right: 1px; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):first-child { + margin-left: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):last-child { + margin-right: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; + border-radius: 1000px; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button.image-button { + border-radius: 1000px; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button.image-button image:not(:only-child) { + margin: 0; +} + +.disk-space-display.unknown { + background-color: rgba(0, 0, 0, 0.26); + color: rgba(0, 0, 0, 0.26); +} + +.disk-space-display.used { + background-color: #1A73E8; + color: #1A73E8; +} + +.disk-space-display.free { + background-color: rgba(0, 0, 0, 0.12); + color: rgba(0, 0, 0, 0.12); +} + +.search-information { + padding: 2px; + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.87); +} + +.conflict-row:not(:selected) { + background-color: #fce9b3; +} + +.nautilus-window flowboxchild .icon-item-background { + padding: 4px; + border-radius: 6px; +} + +.nautilus-window flowboxchild:selected { + background-color: transparent; +} + +.nautilus-window notebook :not(treeview).view, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) { + border-radius: 6px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > scrolledwindow.frame { + border-style: none; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child { + margin: -6px 0 0 -6px; + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > label { + margin: 0 8px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > box > button { + border-radius: 0; +} + +.nautilus-window > popover.menu:not(:last-child) { + padding: 3px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box { + margin-top: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box { + margin-bottom: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box.linked { + margin-top: 1px; +} + +.nautilus-window > popover.menu:not(:last-child) separator { + margin-bottom: -2px; +} + +.nautilus-menu-sort-heading { + margin: 1px 3px; + font-weight: 500; +} + +.nautilus-menu-sort-heading:disabled { + color: rgba(0, 0, 0, 0.6); +} + +.nautilus-window paned > separator { + background-color: #FAFAFA; +} + +/********* + * gedit * + *********/ +.open-document-selector-path-label { + color: rgba(0, 0, 0, 0.6); + font-size: smaller; +} + +.open-document-selector-match { + background-color: #F4B400; + color: rgba(0, 0, 0, 0.87); +} + +.gedit-document-panel { + background-color: #FAFAFA; +} + +.gedit-document-panel row button.flat { + margin-top: 8px; + margin-bottom: 8px; +} + +.gedit-document-panel-group-row:not(:first-child) { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(0, 0, 0, 0.12); + border-radius: 0 0 18px 18px; +} + +.gedit-search-slider { + margin: 4px 4px 8px; +} + +.gedit-search-slider .linked:not(.vertical) > entry { + border-radius: 12px; +} + +.gedit-search-slider .linked:not(.vertical) > entry .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(0, 0, 0, 0.6); +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) { + margin-right: -60px; + padding-right: 60px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 4px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) image.right { + margin-right: 0; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) { + margin-left: -60px; + padding-left: 60px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 4px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) image.left { + margin-left: 0; +} + +.gedit-search-slider .linked:not(.vertical) > entry:not(.error) { + background-color: #FFFFFF; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button { + color: rgba(255, 255, 255, 0.7); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:hover, +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:drop(active), .gedit-search-slider .linked:not(.vertical) > entry.error ~ button:active { + color: white; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.gedit-search-slider .linked > button { + border: solid 4px transparent; + border-radius: 9999px; +} + +.gedit-search-slider .linked > button:last-child:dir(ltr), .gedit-search-slider .linked > button:not(:first-child):dir(rtl) { + margin-left: -2px; +} + +.gedit-search-slider .linked > button:first-child:dir(rtl), .gedit-search-slider .linked > button:not(:last-child):dir(ltr) { + margin-right: -2px; +} + +frame.gedit-map-frame > border:dir(ltr) { + border-style: none none none solid; +} + +frame.gedit-map-frame > border:dir(rtl) { + border-style: none solid none none; +} + +/********** + * Tweaks * + **********/ +.tweak-categories { + background-image: image(#FAFAFA); +} + +.csd .tweak-categories { + border-bottom-left-radius: 18px; +} + +.tweak { + padding: 3px; +} + +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#FFFFFF); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#FFFFFF); +} + +.tweak-group-startup { + background-image: image(#FFFFFF); +} + +.tweak-group-startup row.tweak-startup { + border-radius: 12px; + background-color: transparent; + background-image: none; +} + +row#Focus, +row#ClickMethod, +row#StaticWorkspaceTweak, +row#dynamic-workspaces, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + padding: 0; +} + +row#Focus.tweak > list, +row#ClickMethod.tweak > list, +row#StaticWorkspaceTweak.tweak > list, +row#dynamic-workspaces.tweak > list, +row#PrimaryWorkspaceTweak.tweak > list, +row#workspaces-only-on-primary.tweak > list { + margin-top: -3px; +} + +row#Focus, +row#ClickMethod, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + margin-top: 4px; +} + +hdyleaflet.titlebar > .titlebar.tweak-titlebar-left, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-right { + background-color: inherit; + box-shadow: inherit; + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); +} + +hdyleaflet.titlebar > .titlebar.tweak-titlebar-left + separator, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-right + separator { + background-color: inherit; + background-image: image(rgba(0, 0, 0, 0.12)); +} + +/************************ + * Gnome Control Center * + ************************/ +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:first-child:not(:only-child) { + border-top-left-radius: 18px; +} + +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:last-child:not(:only-child) { + border-top-right-radius: 18px; +} + +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:first-child:only-child, window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:last-child:only-child { + border-top-right-radius: 18px; + border-top-left-radius: 18px; +} + +window.background.csd > stack:not(.titlebar), +window.background.csd > hdyleaflet > stack.background { + border-radius: 0 0 18px 18px; +} + +window.background.csd > hdyleaflet > stack.background, +window.background.csd > box.horizontal > stack.background { + background: none; +} + +window.background.csd > hdyleaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame, +window.background.csd > box.horizontal > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame { + background-color: #FFFFFF; + border-bottom-right-radius: 18px; +} + +window.background.csd > hdyleaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view, +window.background.csd > box.horizontal > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view { + background: none; +} + +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view { + background-color: #FFFFFF; + border-bottom-left-radius: 18px; +} + +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack { + background-color: transparent; +} + +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list { + background-color: transparent; +} + +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected), window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list treeview.view header button:not(:hover):not(:active):not(:selected), treeview.view header window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list button:not(:hover):not(:active):not(:selected), window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:not(:hover):not(:active):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list button:not(:hover):not(:active):not(:selected), window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list .budgie-popover.budgie-menu button.flat:not(:hover):not(:active):not(:selected):not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list button.flat:not(:hover):not(:active):not(:selected):not(.image-button):not(.indicator-item), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list treeview.view header button:not(:hover):not(:active):not(:selected), +treeview.view header window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list button:not(:hover):not(:active):not(:selected), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:not(:hover):not(:active):not(:selected), +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list button:not(:hover):not(:active):not(:selected), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list .budgie-popover.budgie-menu button.flat:not(:hover):not(:active):not(:selected):not(.image-button):not(.indicator-item), +.budgie-popover.budgie-menu window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list button.flat:not(:hover):not(:active):not(:selected):not(.image-button):not(.indicator-item) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > notebook > stack > box.horizontal > notebook > stack { + border-radius: 0 0 18px 18px; +} + +.tweak-group-startup, list.tweak-group list, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), hdyleaflet frame.view, hdyleaflet list.view.frame { + border-radius: 12px; + box-shadow: none; + border: 1px solid rgba(0, 0, 0, 0.08); +} + +.tweak-group-startup row.activatable:first-child, .tweak-group-startup treeview.view header button:first-child, treeview.view header .tweak-group-startup button:first-child, .tweak-group-startup window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .tweak-group-startup button:first-child, .tweak-group-startup .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .tweak-group-startup button.flat:first-child:not(.image-button):not(.indicator-item), list.tweak-group list row.activatable:first-child, list.tweak-group list treeview.view header button:first-child, treeview.view header list.tweak-group list button:first-child, list.tweak-group list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.tweak-group list button:first-child, list.tweak-group list .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu list.tweak-group list button.flat:first-child:not(.image-button):not(.indicator-item), hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) treeview.view header button:first-child, treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button.flat:first-child:not(.image-button):not(.indicator-item), hdyleaflet frame.view list row.activatable:first-child, hdyleaflet frame.view list treeview.view header button:first-child, treeview.view header hdyleaflet frame.view list button:first-child, hdyleaflet frame.view list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame.view list button:first-child, hdyleaflet frame.view list .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame.view list button.flat:first-child:not(.image-button):not(.indicator-item), hdyleaflet list.view.frame row.activatable:first-child, hdyleaflet list.view.frame treeview.view header button:first-child, treeview.view header hdyleaflet list.view.frame button:first-child, hdyleaflet list.view.frame window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet list.view.frame button:first-child, hdyleaflet list.view.frame .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet list.view.frame button.flat:first-child:not(.image-button):not(.indicator-item) { + border-top-left-radius: 12px; + border-top-right-radius: 12px; +} + +.tweak-group-startup row.activatable:last-child, .tweak-group-startup treeview.view header button:last-child, treeview.view header .tweak-group-startup button:last-child, .tweak-group-startup window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .tweak-group-startup button:last-child, .tweak-group-startup .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .tweak-group-startup button.flat:last-child:not(.image-button):not(.indicator-item), list.tweak-group list row.activatable:last-child, list.tweak-group list treeview.view header button:last-child, treeview.view header list.tweak-group list button:last-child, list.tweak-group list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.tweak-group list button:last-child, list.tweak-group list .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu list.tweak-group list button.flat:last-child:not(.image-button):not(.indicator-item), hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) treeview.view header button:last-child, treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button.flat:last-child:not(.image-button):not(.indicator-item), hdyleaflet frame.view list row.activatable:last-child, hdyleaflet frame.view list treeview.view header button:last-child, treeview.view header hdyleaflet frame.view list button:last-child, hdyleaflet frame.view list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame.view list button:last-child, hdyleaflet frame.view list .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame.view list button.flat:last-child:not(.image-button):not(.indicator-item), hdyleaflet list.view.frame row.activatable:last-child, hdyleaflet list.view.frame treeview.view header button:last-child, treeview.view header hdyleaflet list.view.frame button:last-child, hdyleaflet list.view.frame window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet list.view.frame button:last-child, hdyleaflet list.view.frame .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet list.view.frame button.flat:last-child:not(.image-button):not(.indicator-item) { + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; +} + +.tweak-group-startup row.activatable:only-child, .tweak-group-startup treeview.view header button:only-child, treeview.view header .tweak-group-startup button:only-child, .tweak-group-startup window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .tweak-group-startup button:only-child, .tweak-group-startup .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .tweak-group-startup button.flat:only-child:not(.image-button):not(.indicator-item), list.tweak-group list row.activatable:only-child, list.tweak-group list treeview.view header button:only-child, treeview.view header list.tweak-group list button:only-child, list.tweak-group list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.tweak-group list button:only-child, list.tweak-group list .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu list.tweak-group list button.flat:only-child:not(.image-button):not(.indicator-item), hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) treeview.view header button:only-child, treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button.flat:only-child:not(.image-button):not(.indicator-item), hdyleaflet frame.view list row.activatable:only-child, hdyleaflet frame.view list treeview.view header button:only-child, treeview.view header hdyleaflet frame.view list button:only-child, hdyleaflet frame.view list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame.view list button:only-child, hdyleaflet frame.view list .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame.view list button.flat:only-child:not(.image-button):not(.indicator-item), hdyleaflet list.view.frame row.activatable:only-child, hdyleaflet list.view.frame treeview.view header button:only-child, treeview.view header hdyleaflet list.view.frame button:only-child, hdyleaflet list.view.frame window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet list.view.frame button:only-child, hdyleaflet list.view.frame .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet list.view.frame button.flat:only-child:not(.image-button):not(.indicator-item) { + border-radius: 12px; +} + +hdyleaflet frame > border { + border: none; +} + +hdyleaflet frame.view list { + background: none; +} + +hdyleaflet > box.vertical list:not(.view) row.activatable, hdyleaflet > box.vertical list:not(.view) treeview.view header button, treeview.view header hdyleaflet > box.vertical list:not(.view) button, hdyleaflet > box.vertical list:not(.view) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet > box.vertical list:not(.view) button, hdyleaflet > box.vertical list:not(.view) .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet > box.vertical list:not(.view) button.flat:not(.image-button):not(.indicator-item) { + margin-right: 4px; + border-radius: 0 1000px 1000px 0; +} + +hdyleaflet > box.vertical list:not(.view) row.activatable:selected, hdyleaflet > box.vertical list:not(.view) treeview.view header button:selected, treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected, hdyleaflet > box.vertical list:not(.view) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected, hdyleaflet > box.vertical list:not(.view) .budgie-popover.budgie-menu button.flat:selected:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet > box.vertical list:not(.view) button.flat:selected:not(.image-button):not(.indicator-item) { + background-color: alpha(currentColor, 0.1); + color: #1A73E8; +} + +hdyleaflet > box.vertical list:not(.view) row.activatable:selected image, hdyleaflet > box.vertical list:not(.view) treeview.view header button:selected image, treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected image, hdyleaflet > box.vertical list:not(.view) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:selected image, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected image, hdyleaflet > box.vertical list:not(.view) .budgie-popover.budgie-menu button.flat:selected:not(.image-button):not(.indicator-item) image, .budgie-popover.budgie-menu hdyleaflet > box.vertical list:not(.view) button.flat:selected:not(.image-button):not(.indicator-item) image, hdyleaflet > box.vertical list:not(.view) row.activatable:selected label, hdyleaflet > box.vertical list:not(.view) treeview.view header button:selected label, treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected label, hdyleaflet > box.vertical list:not(.view) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:selected label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected label, hdyleaflet > box.vertical list:not(.view) .budgie-popover.budgie-menu button.flat:selected:not(.image-button):not(.indicator-item) label, .budgie-popover.budgie-menu hdyleaflet > box.vertical list:not(.view) button.flat:selected:not(.image-button):not(.indicator-item) label { + color: #1A73E8; +} + +/************************ + * Gnome system monitor * + ************************/ +window#gnome-system-monitor.background.csd > box.vertical > stack { + background-color: #FFFFFF; + border-radius: 0 0 18px 18px; +} + +filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view { + background: none; +} + +/************************ + * Gnome Sound Recorder * + ************************/ +stack > grid.vertical > scrolledwindow { + border: none; + border-radius: 0 0 18px 18px; +} + +stack > grid.vertical > scrolledwindow > viewport.frame list { + border-radius: 0 0 18px 18px; +} + +stack > grid.vertical scrolledwindow.frame.emptyGrid { + border: none; +} + +/****************** + * Gnome Contacts * + ******************/ +window.background.csd > overlay > grid.horizontal > overlay > stack > box.horizontal > grid.horizontal > scrolledwindow.contacts-contact-form { + border-bottom-right-radius: 18px; +} + +/*********** + * Builder * + ***********/ +layouttabbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + background-color: #F2F2F2; +} + +layouttabbar > box > button { + margin: 4px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.08); + box-shadow: inset 0 -2px #1A73E8; + background-color: #FFFFFF; +} + +layouttab separator.vertical { + margin: 8px 4px; +} + +layouttab button.text-button, layouttab button.image-button, layouttab button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} + +layout { + border: 1px solid rgba(0, 0, 0, 0.08); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #D93025; + color: white; +} + +window.workbench treeview.image { + color: rgba(0, 0, 0, 0.6); +} + +popover.popover-selector list { + padding: 6px; +} + +popover.popover-selector list row { + border-radius: 12px; +} + +popover.popover-selector list row image:dir(ltr) { + margin-right: 6px; +} + +popover.popover-selector list row image:dir(rtl) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(ltr) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(rtl) { + margin-right: 6px; +} + +omnibar.linked:not(.vertical) entry { + border-radius: 12px; +} + +omnibar:not(:hover):not(:active) entry { + color: rgba(0, 0, 0, 0.6); +} + +popover.omnibar list row:not(:last-child) { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +entry.preferences-search { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + box-shadow: none; + background-color: #FFFFFF; +} + +preferences stacksidebar.sidebar list { + background-color: #FAFAFA; +} + +preferences stacksidebar.sidebar:dir(ltr) list, preferences stacksidebar.sidebar:dir(rtl) list { + border-style: none; +} + +preferences > box > box:dir(ltr) { + border-right: 1px solid rgba(0, 0, 0, 0.12); +} + +preferences > box > box:dir(rtl) { + border-left: 1px solid rgba(0, 0, 0, 0.12); +} + +popover.messagepopover.background { + padding: 0; +} + +popover.messagepopover .popover-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(0, 0, 0, 0.12); + border-radius: 0; +} + +popover.messagepopover .popover-action-area button:first-child { + border-bottom-left-radius: 12px; +} + +popover.messagepopover .popover-action-area button:last-child { + border-bottom-right-radius: 12px; +} + +popover.messagepopover .popover-content-area { + margin: 16px; +} + +popover.transfers list { + background-color: transparent; +} + +popover.transfers list row:not(:first-child) { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +popover.transfers list row > box { + padding: 10px; +} + +dockbin { + border: 1px solid rgba(0, 0, 0, 0.08); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(0, 0, 0, 0.08); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + background-color: #F2F2F2; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + background-color: #F2F2F2; +} + +docktab { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + min-height: 24px; + min-width: 24px; + margin-bottom: -1px; + padding: 4px 6px; + border-width: 1px; + border-color: transparent; + box-shadow: inset 0 -2px transparent; + background-image: radial-gradient(circle, #1A73E8 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(0, 0, 0, 0.6); + font-weight: 500; +} + +docktab:hover { + background-color: alpha(currentColor, 0.08); + color: rgba(0, 0, 0, 0.87); +} + +docktab:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 225ms cubic-bezier(0, 0, 0.2, 1), background-image 525ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -2px #1A73E8; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: rgba(0, 0, 0, 0.87); +} + +dockoverlayedge { + background-color: #F2F2F2; +} + +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} + +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #1A73E8; +} + +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #1A73E8; +} + +pillbox { + background-color: #F2F2F2; + border-radius: 12px; +} + +layoutpane entry.search { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + box-shadow: none; + background-color: #FFFFFF; +} + +editortweak entry.search { + margin-bottom: -1px; + box-shadow: none; + background-color: transparent; +} + +.gb-search-entry-occurrences-tag { + box-shadow: none; + background-color: transparent; +} + +docktabstrip { + min-height: 39px; +} + +window.workbench preferences preferencesgroup list entry { + padding-top: 8px; + padding-bottom: 8px; +} + +button.run-arrow-button { + padding-left: 8px; + padding-right: 8px; +} + +button.dzlmenubutton image { + min-width: 26px; +} + +button.dzlmenubutton image.arrow { + min-width: 23px; +} + +button.dzlmenubuttonitem { + color: rgba(0, 0, 0, 0.87); + font-weight: normal; +} + +button.dzlmenubuttonitem:disabled { + color: rgba(0, 0, 0, 0.38); +} + +idelayoutstackheader { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +idelayoutstackheader button:checked { + color: rgba(0, 0, 0, 0.87); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher { + padding: 8px 0; + background-color: #F2F2F2; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { + border-right: 1px solid rgba(0, 0, 0, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { + border-left: 1px solid rgba(0, 0, 0, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button { + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:active { + background-image: radial-gradient(circle, rgba(26, 115, 232, 0.7) 10%, transparent 0%); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { + background-color: transparent; + color: rgba(0, 0, 0, 0.87); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { + margin-right: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { + box-shadow: inset -2px 0 #1A73E8; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { + margin-left: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { + box-shadow: inset 2px 0 #1A73E8; +} + +ideeditorsidebar notebook header { + background: transparent; +} + +popover.messagepopover list { + border: 1px solid rgba(0, 0, 0, 0.12); +} + +popover.messagepopover list row:not(:last-child) { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +/********** + * Photos * + **********/ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} + +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #1A73E8; + color: white; + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; +} + +.documents-scrolledwin.frame frame.content-view > border { + border-style: none; +} + +.photos-fade-in { + opacity: 1; + transition: opacity 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.photos-fade-out { + opacity: 0; + transition: opacity 75ms cubic-bezier(0, 0, 0.2, 1); +} + +button.photos-filter-preview { + color: rgba(0, 0, 0, 0.87); + font-weight: normal; +} + +button.photos-filter-preview:checked { + background-color: alpha(currentColor, 0.06); + color: rgba(0, 0, 0, 0.87); +} + +button.photos-filter-preview:checked image { + color: white; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-style: none none none solid; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-style: none solid none none; +} + +/********* + * Music * + *********/ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(0, 0, 0, 0.12); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(0, 0, 0, 0.12); +} + +.side-panel .view, .side-panel filechooser stack.view scrolledwindow treeview.view, filechooser stack.view scrolledwindow .side-panel treeview.view, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view { + background-image: image(#FAFAFA); +} + +.side-panel .view:hover, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:hover { + background-image: image(rgba(234, 234, 234, 0.9896)); +} + +.side-panel .view:selected, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:selected { + background-image: image(#1A73E8); +} + +.side-panel .view:selected:hover, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:selected:hover { + background-image: image(#2c7eea); +} + +.songs-list:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +frame.documents-dropdown { + margin: 8px; +} + +frame.documents-dropdown > border { + border: none; +} + +box.vertical > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + background-clip: border-box; +} + +box.vertical > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/************* + * Documents * + *************/ +.documents-scrolledwin { + background-color: transparent; +} + +.documents-scrolledwin .content-view { + background-color: transparent; + border-radius: 0 0 18px 18px; +} + +.documents-scrolledwin viewport.frame { + background-color: transparent; +} + +.documents-scrolledwin viewport.frame widget > frame.content-view { + background-color: transparent; + border-radius: 0 0 18px 18px; +} + +.documents-scrolledwin viewport.frame widget > frame.content-view border { + border: none; +} + +/******************* + * Document Viewer * + *******************/ +window.background.csd > box.vertical > scrolledwindow > iconview.view.content-view:not(:hover):not(:selected) { + background-color: transparent; + border-radius: 18px; +} + +window.background.csd evview.view.content-view { + background-color: transparent; + border-radius: 0 0 18px 18px; +} + +/******************* + * Archive Manager * + *******************/ +.background.csd > grid.horizontal > paned.horizontal > scrolledwindow { + border-radius: 0 0 18px 18px; + background-color: #FFFFFF; +} + +.background.csd > grid.horizontal > paned.horizontal > scrolledwindow treeview.view:not(:hover):not(:selected), filechooser stack.view .background.csd > grid.horizontal > paned.horizontal > scrolledwindow treeview.view:not(:hover):not(:selected), .background.csd > grid.horizontal > paned.horizontal > scrolledwindow window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .background.csd > grid.horizontal > paned.horizontal > scrolledwindow treeview.view:not(:hover):not(:selected) { + background-color: transparent; +} + +.background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow { + border-radius: 0 0 0 18px; + background-color: #F2F2F2; +} + +.background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), filechooser stack.view .background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), .background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected) { + background-color: transparent; +} + +/************** + * Gnome Disk * + **************/ +window.background.csd > box.vertical > paned.horizontal > scrolledwindow treeview.view, filechooser stack.view window.background.csd > box.vertical > paned.horizontal > scrolledwindow treeview.view, window.background.csd > box.vertical > paned.horizontal > scrolledwindow window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow window.background.csd > box.vertical > paned.horizontal > scrolledwindow treeview.view { + border-bottom-left-radius: 18px; +} + +/************ + * Terminal * + ************/ +terminal-window notebook > header > box { + margin: -2px -2px -3px; +} + +terminal-window notebook > header > box button { + border-radius: 0; +} + +window.background > box.vertical > box.horizontal > frame > border { + border-width: 0 1px 0 0; +} + +window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list { + border-bottom-left-radius: 18px; +} + +window.background > box.vertical > box.horizontal > stack > widget > notebook.frame { + border-width: 0; +} + +window.background > box.vertical > box.horizontal > stack > widget > notebook.frame > stack { + border-bottom-right-radius: 18px; +} + +/********* + * To Do * + *********/ +task-list-view taskrow { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 0 -8px; +} + +task-list-view taskrow:hover { + transition: none; +} + +task-list-view taskrow label { + margin: 0 8px; +} + +task-list-view taskrow image.dim-label { + min-width: 16px; +} + +task-list-view > box > revealer > box > button { + margin: -4px; +} + +task-list-view > box > revealer > box > button .dim-label { + color: inherit; +} + +tasklistview taskrow { + outline: none; +} + +tasklistview taskrow entry, tasklistview taskrow entry:focus, tasklistview taskrow entry:disabled { + box-shadow: none; +} + +tasklistview taskrow image.dim-label { + min-width: 16px; +} + +tasklistview > box > revealer > box > button { + margin: -4px; +} + +tasklistview > box > revealer > box > button .dim-label { + color: inherit; +} + +/******* + * eog * + *******/ +#eog-thumb-nav scrolledwindow { + border-top: none; +} + +/************* + * Evolution * + *************/ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/******** + * gitg * + ********/ +frame.commit-frame > border { + border-style: solid none none; +} + +/************** + * Characters * + **************/ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(0, 0, 0, 0.08); +} + +list.categories { + background-image: image(#FAFAFA); +} + +/********* + * Boxes * + *********/ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 12px; + background-color: rgba(0, 0, 0, 0.6); + color: white; +} + +/************** + * Calculator * + **************/ +button.title label { + min-height: 32px; +} + +/********* + * Geary * + *********/ +window#GearyMainWindow.background.csd box.vertical > paned.horizontal > box.sidebar.vertical { + border-bottom-left-radius: 18px; +} + +window#GearyMainWindow.background.csd box.vertical > paned.horizontal > box.sidebar.vertical statusbar { + border-bottom-left-radius: 18px; +} + +window#GearyMainWindow.background.csd stack#conversation_viewer { + border-bottom-right-radius: 18px; +} + +window#GearyMainWindow.background.csd stack#conversation_viewer scrolledwindow.geary-conversation-scroller viewport.frame list.conversation-listbox { + background: none; + border-bottom-right-radius: 18px; +} + +/*********** + * Dialogs * + ***********/ +dialog.background.csd > box.vertical.dialog-vbox > grid.horizontal > scrolledwindow.frame > viewport.frame list:first-child { + border-radius: 0 0 0 18px; +} + +dialog.background.csd > box.vertical.dialog-vbox > grid.horizontal > scrolledwindow.frame > viewport.frame list:last-child { + border-radius: 0 0 18px 0; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow, +dialog.background.csd > box.vertical.dialog-vbox > stack > stack > scrolledwindow { + border-radius: 0 0 18px 18px; + background-color: #FFFFFF; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow iconview.view:not(:hover):not(:selected):not(:active), +dialog.background.csd > box.vertical.dialog-vbox > stack > stack > scrolledwindow iconview.view:not(:hover):not(:selected):not(:active) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list { + border-radius: 0 0 18px 18px; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list row.activatable:not(:hover):not(:selected):not(:active), dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list treeview.view header button:not(:hover):not(:selected):not(:active), treeview.view header dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list button:not(:hover):not(:selected):not(:active), dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:not(:hover):not(:selected):not(:active), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list button:not(:hover):not(:selected):not(:active), dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list .budgie-popover.budgie-menu button.flat:not(:hover):not(:selected):not(:active):not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list button.flat:not(:hover):not(:selected):not(:active):not(.image-button):not(.indicator-item) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > box.vertical > stack.view > scrolledwindow > treeview.view:not(:hover):not(:selected):not(:active), filechooser dialog.background.csd > box.vertical.dialog-vbox > stack > box.vertical > stack.view > scrolledwindow > treeview.view:not(:hover):not(:selected):not(:active) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack toolbar.toolbar { + border-radius: 0 0 18px 18px; +} + +dialog.background.csd > box.vertical.dialog-vbox > notebook > stack { + border-radius: 0 0 18px 18px; +} + +/********* + * Tilix * + *********/ +overlay > revealer.left > scrolledwindow.frame, +overlay > revealer.right > scrolledwindow.frame { + border-style: none; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +overlay > revealer.left > scrolledwindow.frame { + margin-right: 32px; +} + +overlay > revealer.right > scrolledwindow.frame { + margin-left: 32px; +} + +.terminix-session-sidebar, +.tilix-session-sidebar { + background-image: image(#FFFFFF); +} + +.terminal-titlebar button { + border-radius: 0; +} + +button.image-button.session-new-button { + min-width: 28px; +} + +notebook.tilix-background tab > box > stack { + margin: -6px; +} + +button.flat.tilix-small-button { + min-height: 20px; + min-width: 16px; +} + +/************** + * Terminator * + **************/ +.terminator-terminal-window paned > separator { + background-color: #F2F2F2; +} + +.terminator-terminal-window notebook.frame { + border-style: none; +} + +/************* + * Ubitquity * + *************/ +#live_installer .menubar progressbar trough { + border-radius: 4px; + background-color: rgba(0, 0, 0, 0.12); +} + +/*********** + * Eclipse * + ***********/ +window.background > box.vertical > scrolledwindow > widget toolbar { + padding: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar separator, +window.background > box.vertical > scrolledwindow > widget toolbar button { + margin: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar button { + border-radius: 12px; +} + +/************ + * Chromium * + ************/ +window.background.chromium { + background-color: #FFFFFF; +} + +window.background.chromium entry, +window.background.chromium > button { + border: 1px solid rgba(0, 0, 0, 0.26); +} + +window.background.chromium > button { + color: #1A73E8; +} + +window.background.chromium > button:disabled { + color: rgba(0, 0, 0, 0.26); +} + +window.background.chromium menubar, +window.background.chromium headerbar { + color: rgba(0, 0, 0, 0.6); +} + +window.background.chromium headerbar button:active { + background-color: alpha(currentColor, 0.12); +} + +window.background.chromium spinner { + color: #1A73E8; +} + +window.background.chromium textview.view { + background-color: transparent; +} + +window.background.chromium treeview.view.cell:selected:focus, window.background.chromium window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.cell.view:selected:focus, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow window.background.chromium treeview.cell.view:selected:focus { + background-color: #1A73E8; + color: white; +} + +window.background.chromium treeview.view button, window.background.chromium window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow window.background.chromium treeview.view button { + border: 1px solid rgba(0, 0, 0, 0.26); + background-color: #FFFFFF; +} + +tooltip.background.chromium { + background-color: #616161; +} + +/*********** + * Firefox * + ***********/ +#MozillaGtkWidget > widget text { + background-color: #FFFFFF; +} + +#MozillaGtkWidget > widget text:selected { + background-color: #1A73E8; + color: white; +} + +#MozillaGtkWidget > widget > separator { + color: rgba(0, 0, 0, 0.12); +} + +#MozillaGtkWidget > widget > frame > border { + border-color: rgba(0, 0, 0, 0.26); +} + +#MozillaGtkWidget > widget > entry, +#MozillaGtkWidget > widget > button > button { + border: 1px solid rgba(0, 0, 0, 0.26); + border-radius: 12px; + box-shadow: none; +} + +#MozillaGtkWidget > widget > entry:disabled, +#MozillaGtkWidget > widget > button > button:disabled { + border-color: rgba(0, 0, 0, 0.12); +} + +#MozillaGtkWidget > widget > entry { + min-height: 30px; + background-color: #FFFFFF; +} + +#MozillaGtkWidget > widget > entry:focus { + border-color: #1A73E8; + box-shadow: inset 0 0 0 1px #1A73E8; +} + +#MozillaGtkWidget > widget > entry:disabled { + background-color: #FAFAFA; +} + +#MozillaGtkWidget > widget > button > button { + padding: 4px 8px; + background-size: auto; +} + +#MozillaGtkWidget > widget > button > button:hover, +#MozillaGtkWidget > widget > button > button:drop(active) { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +#MozillaGtkWidget > widget > button > button:active { + background-image: image(alpha(currentColor, 0.12)); +} + +#MozillaGtkWidget > widget > checkbutton > check, +#MozillaGtkWidget > widget > radiobutton > radio { + margin: 0; + padding: 0; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate), +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate) { + color: #757575; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):hover, #MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):active, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):hover, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):active { + color: #9E9E9E; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):disabled, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):disabled { + color: rgba(117, 117, 117, 0.5); +} + +#MozillaGtkWidget menu { + border: none; +} + +#MozillaGtkWidget > widget > menubar { + color: rgba(0, 0, 0, 0.6); +} + +#MozillaGtkWidget > widget > menubar:hover { + color: rgba(0, 0, 0, 0.87); +} + +#MozillaGtkWidget > widget > menubar:disabled { + color: rgba(0, 0, 0, 0.26); +} + +#MozillaGtkWidget > widget > frame { + color: rgba(0, 0, 0, 0.26); +} + +#MozillaGtkWidget menu > separator { + color: rgba(0, 0, 0, 0.12); +} + +/************ + * Inkscape * + ************/ +#ToolboxCommon > #AuxToolbox #StyleSwatch { + font-size: smaller; +} + +#ToolboxCommon > #AuxToolbox #Kludge { + padding: 0; +} + +#ToolboxCommon > #AuxToolbox spinbutton, +#ToolboxCommon > #AuxToolbox entry { + min-height: 32px; +} + +#ToolboxCommon > #AuxToolbox button:not(.up):not(.down) { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 12px; +} + +#ToolboxCommon > #AuxToolbox spinbutton button { + border-width: 4px; +} + +#ToolboxCommon > toolbar.vertical { + margin-top: -4px; +} + +#ToolboxCommon > toolbar.vertical button { + min-height: 24px; + min-width: 24px; + padding: 4px; + border-radius: 12px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; +} + +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(0, 0, 0, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(0, 0, 0, 0.12); +} + +#Canvas_and_Dock frame > border { + border: none; +} + +#Canvas_and_Dock widget > widget > button.flat { + min-height: 16px; + min-width: 16px; + padding: 4px; +} + +#Canvas_and_Dock widget > widget > box.horizontal image { + padding: 4px; +} + +#Canvas_and_Dock box.horizontal > box.vertical > button.flat { + min-height: 16px; + min-width: 24px; + padding: 8px 4px; +} + +/*********** + * Synapse * + ***********/ +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #1A73E8; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 18px 18px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.87); +} + +UnityDecoration .top:backdrop { + background-color: #FFFFFF; + color: rgba(0, 0, 0, 0.6); +} + +UnityDecoration .menuitem { + color: rgba(0, 0, 0, 0.6); +} + +UnityDecoration .menuitem:hover { + box-shadow: inset 0 -2px #1A73E8; + background-color: transparent; + color: rgba(0, 0, 0, 0.87); +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #CCCCCC; + color: rgba(0, 0, 0, 0.87); +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(0, 0, 0, 0.6); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(0, 0, 0, 0.6); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px #1A73E8; + background-color: transparent; + color: rgba(0, 0, 0, 0.87); +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #1A73E8; +} + +/************** + * Mate-Panel * + **************/ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: rgba(0, 0, 0, 0.6); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(255, 255, 255, 0.12); +} + +MatePanelAppletFrameDBus { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.mate-panel-menu-bar.horizontal MatePanelAppletFrameDBus { + border-width: 0 1px; +} + +.mate-panel-menu-bar.vertical MatePanelAppletFrameDBus { + border-width: 1px 0; +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.mate-panel-menu-bar menubar > menuitem:hover { + color: white; +} + +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.mate-panel-menu-bar.horizontal menubar > menuitem { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical menubar > menuitem { + padding: 8px 0; +} + +.mate-panel-menu-bar menubar menu > menuitem { + min-height: 28px; + padding: 0 6px; +} + +.mate-panel-menu-bar #PanelApplet button { + -GtkWidget-window-dragging: true; +} + +.mate-panel-menu-bar #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; +} + +.mate-panel-menu-bar #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.mate-panel-menu-bar #tasklist-button image:dir(ltr), .mate-panel-menu-bar #tasklist-button label:dir(rtl) { + padding-left: 4px; +} + +.mate-panel-menu-bar #tasklist-button label:dir(ltr), .mate-panel-menu-bar #tasklist-button image:dir(rtl) { + padding-right: 4px; +} + +.mate-panel-menu-bar.vertical #tasklist-button { + min-height: 32px; +} + +.mate-panel-menu-bar.horizontal #showdesktop-button image { + min-width: 24px; + padding: 0 4px; +} + +.mate-panel-menu-bar.vertical #showdesktop-button image { + min-height: 24px; + padding: 4px 0; +} + +PanelApplet.wnck-applet .wnck-pager { + background-color: transparent; + color: #3281ea; +} + +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: alpha(currentColor, 0.08); +} + +PanelApplet.wnck-applet .wnck-pager:active { + background-color: alpha(currentColor, 0.12); +} + +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #1A73E8; +} + +.mate-panel-menu-bar.horizontal #clock-applet-button label { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical #clock-applet-button label { + padding: 8px 0; +} + +#MatePanelPopupWindow { + border: 1px solid rgba(0, 0, 0, 0.08); + border-radius: 13px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +#MatePanelPopupWindow frame > border { + border-style: none; +} + +#MatePanelPopupWindow calendar { + border-style: none; +} + +#MatePanelPopupWindow calendar:not(:selected) { + background-color: transparent; +} + +#MatePanelPopupWindow calendar + box { + margin-top: -5px; + padding-top: 5px; + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +#MatePanelPopupWindow expander > title { + min-height: 32px; +} + +#MatePanelPopupWindow button { + padding: 4px 16px; +} + +#MatePanelPopupWindow > frame > box > box > box > widget { + color: rgba(0, 0, 0, 0.12); +} + +na-tray-applet { + -NaTrayApplet-icon-padding: 3px; + -NaTrayApplet-icon-size: 16; +} + +.mate-panel-menu-bar { + -PanelMenuBar-icon-visible: true; +} + +.mate-panel-applet-slider { + border: 1px solid rgba(0, 0, 0, 0.08); + border-radius: 13px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +.mate-panel-applet-slider frame > border { + border-style: none; +} + +#PanelApplet:not(:selected) > box { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +#PanelApplet:selected > box { + background-color: alpha(currentColor, 0.1); + color: white; +} + +#mate-menu { + border: 1px solid rgba(0, 0, 0, 0.08); + background-color: #FFFFFF; +} + +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: rgba(0, 0, 0, 0.87); + font-weight: normal; +} + +#mate-menu button:not(.flat) { + background-color: alpha(currentColor, 0.1); +} + +#mate-menu button image, +#mate-menu button label + label { + color: rgba(0, 0, 0, 0.6); +} + +#mate-menu entry { + margin: 0 0 4px; +} + +#mate-menu entry image { + margin: 0; +} + +#mate-menu entry + button { + margin: 0 4px 4px; + padding: 4px; +} + +.brisk-menu { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +.brisk-menu entry { + margin-bottom: -2px; + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + border-image: none; + box-shadow: none; + background-color: transparent; +} + +.brisk-menu entry + box > box:dir(ltr) { + margin-right: -2px; + border-right: 1px solid rgba(0, 0, 0, 0.12); +} + +.brisk-menu entry + box > box:dir(rtl) { + margin-left: -2px; + border-left: 1px solid rgba(0, 0, 0, 0.12); +} + +.brisk-menu .categories-list { + padding-top: 4px; +} + +.brisk-menu .categories-list button { + margin: 0 4px; +} + +.brisk-menu .categories-list button:checked { + color: #1A73E8; +} + +.brisk-menu .session-button { + padding: 8px; +} + +.brisk-menu .frame { + border-style: none; +} + +.brisk-menu .apps-list { + padding: 4px 0; + background-color: transparent; +} + +.brisk-menu .apps-list row { + padding: 0; +} + +.brisk-menu .apps-list row:hover, .brisk-menu .apps-list placessidebar.sidebar row:drop(active), placessidebar.sidebar .brisk-menu .apps-list row:drop(active) { + box-shadow: none; +} + +.brisk-menu .apps-list button { + border-radius: 0; + color: rgba(0, 0, 0, 0.87); + font-weight: normal; +} + +/********************* + * CAJA File manager * + *********************/ +.caja-navigation-window button.toggle.image-button { + border-radius: 12px; +} + +.caja-pathbar button { + margin: 0 -1px 0 -2px; +} + +.caja-pathbar button.slider-button { + min-width: 24px; +} + +.caja-pathbar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.caja-side-pane notebook viewport.frame, +.caja-side-pane notebook widget .vertical { + background-color: #FFFFFF; +} + +.caja-side-pane notebook, +.caja-notebook { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; +} + +.caja-canvas-item { + border-radius: 12px; +} + +.caja-desktop.view .entry, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.caja-desktop.view .entry, +.caja-navigation-window .view .entry, +.caja-navigation-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view .entry, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .caja-navigation-window treeview.view .entry { + border: none; + border-radius: 12px; + background-color: rgba(0, 0, 0, 0.04); + background-image: none; + color: rgba(0, 0, 0, 0.87); +} + +.caja-desktop.view .entry:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.caja-desktop.view .entry:selected, +.caja-navigation-window .view .entry:selected, +.caja-navigation-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view .entry:selected, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .caja-navigation-window treeview.view .entry:selected { + background-color: alpha(currentColor, 0.06); +} + +.caja-desktop.view .entry, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.caja-desktop.view .entry { + background-color: rgba(0, 0, 0, 0.3); + color: white; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); + caret-color: currentColor; +} + +.caja-desktop.view .entry:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.caja-desktop.view .entry:selected { + background-color: alpha(currentColor, 0.06); +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +.caja-notebook frame > border { + border-style: none; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + background-color: #FFFFFF; +} + +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} + +/********* + * Pluma * + *********/ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +.pluma-window statusbar frame > border { + border-style: none; +} + +.pluma-window statusbar frame button.flat { + padding: 0 4px; + border-radius: 0; +} + +.pluma-window statusbar frame button.flat widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.pluma-print-preview toolbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} + +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +/********* + * Atril * + *********/ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border: 1px solid rgba(0, 0, 0, 0.08); + border-radius: 13px; + box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +.lock-dialog frame > border { + border-style: none; +} + +.lock-dialog button:not(:disabled) { + color: #1A73E8; +} + +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 12px; + background-color: rgba(97, 97, 97, 0.9); + color: white; +} + +MsdOsdWindow.background.osd .trough { + border-radius: 0; + background-color: rgba(255, 255, 255, 0.12); +} + +MsdOsdWindow.background.osd .progressbar { + border-radius: 0; + background-color: #1A73E8; +} + +/****************** + * Budgie Desktop * + ******************/ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} + +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 12px; +} + +.budgie-popover { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 13px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #FFFFFF; +} + +.budgie-popover .container { + padding: 2px; +} + +.budgie-popover border { + border: none; +} + +.budgie-popover list { + background-color: transparent; +} + +.budgie-popover row { + padding: 0; +} + +.budgie-popover row:hover, .budgie-popover placessidebar.sidebar row:drop(active), placessidebar.sidebar .budgie-popover row:drop(active) { + box-shadow: none; +} + +.budgie-popover button.flat:not(.image-button) { + min-height: 28px; + padding: 0 8px; + color: rgba(0, 0, 0, 0.87); + font-weight: normal; +} + +.budgie-popover button.flat:not(.image-button):disabled { + color: rgba(0, 0, 0, 0.38); +} + +.budgie-popover.budgie-menu .container { + padding: 0; +} + +.budgie-popover.budgie-menu .sidebar, +.budgie-popover.budgie-menu scrollbar, +.budgie-popover.budgie-menu entry.search { + background-color: transparent; +} + +.budgie-popover.budgie-menu entry.search { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + border-image: none; + border-radius: 0; + box-shadow: none; + font-size: 120%; +} + +.budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) { + min-height: 32px; + padding: 0 8px; + border-radius: 0; +} + +.budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item):checked:disabled { + background-color: transparent; +} + +.budgie-popover.user-menu .container { + padding: 8px; +} + +.budgie-popover.user-menu separator { + margin: 4px 0; +} + +.budgie-popover.user-menu list, +.budgie-popover.user-menu row { + border: none; + background: none; + box-shadow: none; +} + +.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child, .budgie-popover.user-menu > frame.container > box.vertical treeview.view header button:first-child, treeview.view header .budgie-popover.user-menu > frame.container > box.vertical button:first-child, .budgie-popover.user-menu > frame.container > box.vertical window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .budgie-popover.user-menu > frame.container > box.vertical button:first-child, .budgie-popover.user-menu > frame.container > box.vertical .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .budgie-popover.user-menu > frame.container > box.vertical button.flat:first-child:not(.image-button):not(.indicator-item) { + margin-bottom: 4px; + outline-width: 0; + border-radius: 12px; +} + +.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child button.indicator-item, .budgie-popover.user-menu > frame.container > box.vertical treeview.view header button:first-child button.indicator-item, treeview.view header .budgie-popover.user-menu > frame.container > box.vertical button:first-child button.indicator-item, .budgie-popover.user-menu > frame.container > box.vertical window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child button.indicator-item, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .budgie-popover.user-menu > frame.container > box.vertical button:first-child button.indicator-item, .budgie-popover.user-menu > frame.container > box.vertical .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item) button.indicator-item, .budgie-popover.budgie-menu .budgie-popover.user-menu > frame.container > box.vertical button.flat:first-child:not(.image-button):not(.indicator-item) button.indicator-item { + transition: none; + animation: none; +} + +.budgie-popover.sound-popover separator { + margin: 3px 0; +} + +.budgie-popover.night-light-indicator .container { + padding: 8px; +} + +.budgie-popover.places-menu .container { + padding: 8px; +} + +.budgie-popover.places-menu .name-button image:dir(ltr) { + margin-right: 3px; +} + +.budgie-popover.places-menu .name-button image:dir(rtl) { + margin-left: 3px; +} + +.budgie-popover.places-menu .unmount-button { + margin: 2px; + padding: 0; +} + +.budgie-popover.places-menu .places-list:not(.always-expand) { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} + +.budgie-popover.workspace-popover .container { + padding: 8px; +} + +.budgie-popover.workspace-popover separator { + margin: 4px 0; +} + +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +.top .workspace-switcher .workspace-layout:dir(ltr), +.bottom .workspace-switcher .workspace-layout:dir(ltr) { + border-left-width: 1px; +} + +.top .workspace-switcher .workspace-layout:dir(rtl), +.bottom .workspace-switcher .workspace-layout:dir(rtl) { + border-right-width: 1px; +} + +.left .workspace-switcher .workspace-layout, +.right .workspace-switcher .workspace-layout { + border-top-width: 1px; +} + +.workspace-switcher .workspace-item, +.workspace-switcher .workspace-add-button { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +.top .workspace-switcher .workspace-item:dir(ltr), +.bottom .workspace-switcher .workspace-item:dir(ltr), .top +.workspace-switcher .workspace-add-button:dir(ltr), +.bottom +.workspace-switcher .workspace-add-button:dir(ltr) { + border-right-width: 1px; +} + +.top .workspace-switcher .workspace-item:dir(rtl), +.bottom .workspace-switcher .workspace-item:dir(rtl), .top +.workspace-switcher .workspace-add-button:dir(rtl), +.bottom +.workspace-switcher .workspace-add-button:dir(rtl) { + border-left-width: 1px; +} + +.left .workspace-switcher .workspace-item, +.right .workspace-switcher .workspace-item, .left +.workspace-switcher .workspace-add-button, +.right +.workspace-switcher .workspace-add-button { + border-bottom-width: 1px; +} + +.workspace-switcher .workspace-item { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.workspace-switcher .workspace-item.current-workspace { + background-color: alpha(currentColor, 0.1); +} + +.workspace-switcher .workspace-add-button:hover { + box-shadow: none; +} + +.workspace-switcher .workspace-add-button:active { + background-image: none; +} + +.workspace-switcher .workspace-add-button:active image { + margin: 1px 0 -1px; +} + +.budgie-panel .workspace-switcher .workspace-icon-button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 12px; +} + +.budgie-panel button.budgie-menu-launcher { + padding: 0; + margin: 0; + min-width: 32px; + min-width: 32px; + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.budgie-menu-launcher, .budgie-panel button.budgie-menu-launcher:hover, +.budgie-panel button.budgie-menu-launcher:drop(active), .budgie-panel button.budgie-menu-launcher:active, .budgie-panel button.budgie-menu-launcher:checked { + background: none; + box-shadow: none; +} + +.budgie-panel button.budgie-menu-launcher image { + padding: 0; + margin: 0; + background-size: 32px 32px; + border-radius: 100px; + background-image: image(rgba(255, 255, 255, 0.12)); +} + +.budgie-panel button.budgie-menu-launcher:hover, +.budgie-panel button.budgie-menu-launcher:drop(active) { + color: white; +} + +.budgie-panel button.budgie-menu-launcher:hover image, .budgie-panel button.budgie-menu-launcher:drop(active) image { + background-image: image(rgba(255, 255, 255, 0.2)); +} + +.budgie-panel button.budgie-menu-launcher:active, .budgie-panel button.budgie-menu-launcher:checked { + color: white; +} + +.budgie-panel button.budgie-menu-launcher:active image, .budgie-panel button.budgie-menu-launcher:checked image { + background-image: image(rgba(255, 255, 255, 0.28)); +} + +.budgie-panel { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(0, 0, 0, 0.6); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; + padding-left: 10px; + padding-right: 10px; +} + +.budgie-panel.transparent { + background-color: rgba(0, 0, 0, 0.6); +} + +.top .budgie-panel.transparent { + border-radius: 0 0 16px 16px; +} + +.bottom .budgie-panel.transparent { + border-radius: 16px 16px 0 0; +} + +.left .budgie-panel.transparent { + border-radius: 0 16px 16px 0; +} + +.right .budgie-panel.transparent { + border-radius: 16px 0 0 16px; +} + +.budgie-panel button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 0; +} + +.budgie-panel button.budgie-menu-launcher:focus { + background: none; + box-shadow: none; + border: none; + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.raven-trigger { + background-image: -gtk-scaled(url("assets/scalable/circle-bg.svg")); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-clip: padding-box; +} + +.budgie-panel button.raven-trigger, .budgie-panel button.raven-trigger:hover, +.budgie-panel button.raven-trigger:drop(active), .budgie-panel button.raven-trigger:focus, .budgie-panel button.raven-trigger:active, .budgie-panel button.raven-trigger:active:hover, +.budgie-panel button.raven-trigger:active:drop(active) { + background-color: transparent; + box-shadow: none; + animation: none; + background-size: auto; +} + +.budgie-panel button.raven-trigger:hover:not(:active), +.budgie-panel button.raven-trigger:not(:active):drop(active) { + background-image: -gtk-scaled(url("assets/scalable/circle-bg-hover.svg")); +} + +.budgie-panel button.raven-trigger:active, .budgie-panel button.raven-trigger:active:hover, +.budgie-panel button.raven-trigger:active:drop(active) { + background-image: -gtk-scaled(url("assets/scalable/circle-bg-active.svg")); +} + +.budgie-panel.horizontal button { + padding: 0 4px; +} + +.budgie-panel.vertical button { + padding: 4px 0; +} + +.budgie-panel separator { + background-color: rgba(255, 255, 255, 0.3); +} + +.budgie-panel .alert { + color: #D93025; +} + +.budgie-panel .titlebar:not(headerbar) { + min-height: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + color: white; +} + +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):drop(active), .budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active { + color: white; +} + +.budgie-panel menubar, +.budgie-panel .menubar { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel menubar > menuitem, +.budgie-panel .menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel menubar > menuitem:hover, .budgie-panel menubar > menuitem:active, +.budgie-panel .menubar > menuitem:hover, +.budgie-panel .menubar > menuitem:active { + color: white; +} + +.budgie-panel menubar > menuitem > window.background.popup > decoration, +.budgie-panel menubar > menuitem > window.background.popup > menu, +.budgie-panel .menubar > menuitem > window.background.popup > decoration, +.budgie-panel .menubar > menuitem > window.background.popup > menu { + border-radius: 0 0 18px 18px; +} + +.budgie-panel #tasklist-button { + padding: 0 4px; +} + +.budgie-panel.vertical #tasklist-button { + min-height: 32px; +} + +.budgie-panel button.flat.launcher { + padding: 0; +} + +.budgie-panel button.flat.launcher:not(:checked) { + color: rgba(255, 255, 255, 0.5); +} + +.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel toolbar button.launcher:not(:checked):drop(active), toolbar .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel .titlebar button.launcher:not(:checked):drop(active):not(.suggested-action):not(.destructive-action), .titlebar .budgie-panel button.launcher:not(:checked):drop(active):not(.suggested-action):not(.destructive-action), .budgie-panel popover.background.menu button.launcher:not(:checked):drop(active), popover.background.menu .budgie-panel button.launcher:not(:checked):drop(active), +.budgie-panel popover.background button.launcher.model:not(:checked):drop(active), popover.background .budgie-panel button.launcher.model:not(:checked):drop(active), .budgie-panel actionbar > revealer > box button.launcher:not(:checked):drop(active):not(.suggested-action):not(.destructive-action), actionbar > revealer > box .budgie-panel button.launcher:not(:checked):drop(active):not(.suggested-action):not(.destructive-action), .budgie-panel .app-notification button.launcher:not(:checked):drop(active), .app-notification .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel messagedialog.csd .dialog-action-box button.launcher:not(:checked):drop(active), messagedialog.csd .dialog-action-box .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel filechooser #pathbarbox > stack > box > button.launcher:not(:checked):drop(active), filechooser .budgie-panel #pathbarbox > stack > box > button.launcher:not(:checked):drop(active), .budgie-panel infobar.info button.launcher:not(:checked):drop(active), infobar.info .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel infobar.question button.launcher:not(:checked):drop(active), infobar.question .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel .lock-dialog button.launcher:not(:checked):drop(active), .lock-dialog .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel #buttonbox_frame button.launcher:not(:checked):drop(active), #buttonbox_frame .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel .nemo-window .toolbar button.launcher:not(:checked):drop(active), .nemo-window .toolbar .budgie-panel button.launcher:not(:checked):drop(active), +.budgie-panel button.flat.launcher:not(:checked):drop(active), .budgie-panel button.flat.launcher:not(:checked):active { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(255, 255, 255, 0.3); +} + +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher, +.top .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .top button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher, +.bottom .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .bottom button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher, +.left .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .left button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher, +.right .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .right button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +frame.raven-frame > border { + border-style: none; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +.top frame.raven-frame > border { + margin-bottom: 32px; +} + +.bottom frame.raven-frame > border { + margin-top: 32px; +} + +.left frame.raven-frame > border { + margin-right: 32px; +} + +.right frame.raven-frame > border { + margin-left: 32px; +} + +.raven { + background-color: #FFFFFF; +} + +.raven > box { + margin-bottom: -10px; +} + +.raven stackswitcher.linked > button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #1A73E8 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 0; +} + +.raven stackswitcher.linked > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #1A73E8 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; +} + +.raven stackswitcher.linked > button:focus { + box-shadow: none; +} + +.raven .raven-header { + min-height: 32px; + padding: 3px; +} + +.raven .raven-header.top { + padding: 0; + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +.raven .raven-header.top stackswitcher button { + margin: -4px 0 -5px; + padding: 0 16px; + min-height: 40px; +} + +.raven .raven-header.bottom { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +.raven stack .raven-header { + margin-top: -6px; +} + +.raven stack scrolledwindow .raven-header { + margin-top: -8px; +} + +.raven .raven-background { + border-style: solid none; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.12); + background-color: #FFFFFF; +} + +.raven .raven-background > overlay > widget > image { + color: rgba(0, 0, 0, 0.12); +} + +.raven scrolledwindow.raven-background { + border-bottom-style: none; +} + +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 8px; +} + +.raven .option-subtitle { + font-size: smaller; +} + +.raven .audio-widget scale.marks-after { + padding-top: 0; + padding-bottom: 0; +} + +.raven .audio-widget scale.marks-after label { + font-size: 90%; + padding: 0; + margin: -10px 0 0 6px; +} + +.raven .audio-widget button.flat.expander-button { + margin-top: 4px; + margin-bottom: 4px; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable:selected, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button:selected, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:selected, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:selected, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:selected:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:selected:not(.image-button):not(.indicator-item), .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button:checked, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:checked, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button:checked, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:checked, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:checked:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:checked:not(.image-button):not(.indicator-item) { + background-color: rgba(0, 0, 0, 0.06); + color: rgba(0, 0, 0, 0.87); +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable:selected label, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button:selected label, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:selected label, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button:selected label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:selected label, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:selected:not(.image-button):not(.indicator-item) label, .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:selected:not(.image-button):not(.indicator-item) label, .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked label, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button:checked label, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:checked label, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button:checked label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:checked label, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:checked:not(.image-button):not(.indicator-item) label, .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:checked:not(.image-button):not(.indicator-item) label { + color: rgba(0, 0, 0, 0.87); +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable label, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button label, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button label, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button label, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:not(.image-button):not(.indicator-item) label, .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:not(.image-button):not(.indicator-item) label { + padding-left: 12px; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} + +calendar.raven-calendar:selected { + border-radius: 12px; +} + +.raven-mpris { + background-color: rgba(0, 0, 0, 0.6); + color: white; +} + +.raven-mpris label { + min-height: 24px; +} + +.raven-mpris button.image-button { + padding: 8px; +} + +.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { + background-color: transparent; +} + +.budgie-notification .notification-title, .budgie-switcher .notification-title { + font-size: 120%; +} + +.budgie-notification .notification-body, .budgie-switcher .notification-body { + color: rgba(0, 0, 0, 0.6); +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.budgie-panel .lock-keys image:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.drop-shadow { + margin: 5px 9px; + padding: 3px; + border-radius: 18px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +.drop-shadow .linked > button { + border-radius: 18px; +} + +.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { + border-radius: 18px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +.budgie-session-dialog decoration, .budgie-polkit-dialog decoration, .budgie-run-dialog decoration { + border-radius: 18px; +} + +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title { + font-size: 120%; +} + +.budgie-session-dialog .linked.horizontal > button { + padding: 8px 16px; + border-top: 1px solid rgba(0, 0, 0, 0.12); + border-radius: 0; +} + +.budgie-session-dialog .linked.horizontal > button:first-child { + border-bottom-left-radius: 18px; +} + +.budgie-session-dialog .linked.horizontal > button:last-child { + border-bottom-right-radius: 18px; +} + +.budgie-polkit-dialog .message { + color: rgba(0, 0, 0, 0.6); +} + +.budgie-polkit-dialog .failure { + color: #D93025; +} + +.budgie-run-dialog { + background-color: #FFFFFF; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 4px 12px; + border-image: none; + box-shadow: none; + background-color: transparent; +} + +.budgie-run-dialog list .dim-label { + color: rgba(0, 0, 0, 0.87); +} + +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +.budgie-settings-window list.sidebar { + border-radius: 0 0 0 18px; +} + +/************** + * Xfce4 Apps * + **************/ +.XfceHeading { + background-color: #FFFFFF; +} + +/*************** + * xfce4-panel * + ***************/ +.xfce4-panel.background { + border: none; + background-color: rgba(0, 0, 0, 0.6); + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.xfce4-panel.background button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.xfce4-panel.background .tasklist button { + border-image: image(transparent) 0 0 2/0 0 2px; +} + +.xfce4-panel.background .tasklist button:checked { + border-image: image(currentColor) 0 0 2/0 0 2px; +} + +.xfce4-panel.background .tasklist button image { + padding: 4px; +} + +wnck-pager:hover { + background-color: alpha(currentColor, 0.08); +} + +wnck-pager:active { + background-color: alpha(currentColor, 0.12); +} + +wnck-pager:selected { + background-color: #1A73E8; +} + +XfdesktopIconView.view { + border-radius: 12px; + background-color: transparent; + color: white; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +XfdesktopIconView.view:active { + box-shadow: none; +} + +XfdesktopIconView.view .rubberband { + border-radius: 0; +} + +#XfceNotifyWindow buttonbox { + padding: 0; +} + +#XfceNotifyWindow label#summary { + font-weight: bold; +} + +#xfwm-tabwin { + padding: 12px; + border-radius: 12px; + -XfwmTabwinWidget-icon-size: 64px; + -XfwmTabwinWidget-preview-size: 64px; +} + +/********** + * Thunar * + **********/ +.thunar #location-toolbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +.thunar .standard-view.frame { + border-style: none; +} + +.thunar .sidebar .view:not(:selected), .thunar .sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .thunar .sidebar treeview.view:not(:selected) { + background-color: transparent; +} + +.thunar statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + +.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane { + border-top: none; +} + +window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane { + border-bottom-left-radius: 18px; +} + +window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane treeview.view:not(:hover):not(:selected), filechooser stack.view window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane treeview.view:not(:hover):not(:selected), window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane treeview.view:not(:hover):not(:selected) { + background-color: transparent; +} + +/************************ + * LightDM GTK+ Greeter * + ************************/ +#panel_window { + background-color: rgba(0, 0, 0, 0.3); + color: white; +} + +#panel_window menubar, +#panel_window separator { + background-color: transparent; +} + +#panel_window separator { + padding: 0 4px; +} + +#panel_window separator:first-child { + padding: 0 8px; +} + +#panel_window menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +#panel_window menubar > menuitem:hover { + color: white; +} + +#panel_window menubar > menuitem:disabled label { + color: rgba(255, 255, 255, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 12px; + box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.4); + background-color: #FFFFFF; +} + +#content_frame { + padding-bottom: 16px; +} + +#buttonbox_frame { + padding-top: 24px; +} + +#buttonbox_frame > box, +#buttonbox_frame > buttonbox { + margin: -16px; +} + +#buttonbox_frame button:not(:disabled) { + color: #1A73E8; +} + +/******** + * Nemo * + ********/ +.nemo-window .primary-toolbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); +} + +.nemo-window .primary-toolbar entry { + min-height: 0; + margin: 0; +} + +.nemo-window .primary-toolbar button.text-button { + padding-left: 8px; + padding-right: 8px; +} + +.nemo-window .primary-toolbar button:not(.text-button):not(.image-button) { + padding-left: 4px; + padding-right: 4px; +} + +.nemo-window scrolledwindow.frame { + border-style: none; +} + +.nemo-window scrolledwindow.frame .view:not(:selected), .nemo-window scrolledwindow.frame window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window scrolledwindow.frame treeview.view:not(:selected) { + background-color: transparent; +} + +.nemo-window infobar { + margin-top: -6px; +} + +.nemo-window .nemo-inactive-pane .view:not(:selected), .nemo-window .nemo-inactive-pane window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window .nemo-inactive-pane treeview.view:not(:selected) { + background-color: #FAFAFA; +} + +.nemo-window .nemo-window-pane widget.entry { + border-radius: 12px; + background-color: rgba(0, 0, 0, 0.04); +} + +.places-treeview { + -NemoPlacesTreeView-disk-full-bg-color: rgba(182, 182, 182, 0.961); + -NemoPlacesTreeView-disk-full-fg-color: #1A73E8; + -NemoPlacesTreeView-disk-full-bar-width: 2px; + -NemoPlacesTreeView-disk-full-bar-radius: 0; + -NemoPlacesTreeView-disk-full-bottom-padding: 1px; + -NemoPlacesTreeView-disk-full-max-length: 80px; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color rgba(0, 0, 0, 0.87); +/* +text color for entries, views and content in general */ +@define-color theme_text_color rgba(0, 0, 0, 0.87); +/* +widget base background color */ +@define-color theme_bg_color #F2F2F2; +/* +text widgets and the like base background color */ +@define-color theme_base_color #FFFFFF; +/* +base background color of selections */ +@define-color theme_selected_bg_color #1A73E8; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color white; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #F2F2F2; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(0, 0, 0, 0.38); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #FAFAFA; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color rgba(0, 0, 0, 0.87); +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color rgba(0, 0, 0, 0.87); +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #F2F2F2; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #FFFFFF; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #1A73E8; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color white; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(0, 0, 0, 0.38); +/* +widgets main borders color */ +@define-color borders rgba(0, 0, 0, 0.12); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(0, 0, 0, 0.12); +/* +these are pretty self explicative */ +@define-color warning_color #F4B400; +@define-color error_color #D93025; +@define-color success_color #0F9D58; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title rgba(0, 0, 0, 0.87); +@define-color wm_unfocused_title rgba(0, 0, 0, 0.6); +@define-color wm_highlight rgba(255, 255, 255, 0.4); +@define-color wm_bg #FFFFFF; +@define-color wm_unfocused_bg #FFFFFF; +/* +FIXME this is really an API */ +@define-color content_view_bg #FFFFFF; +@define-color placeholder_text_color #666666; +@define-color budgie_tasklist_indicator_color white; +@define-color budgie_tasklist_indicator_color_active white; +@define-color budgie_tasklist_indicator_color_active_window rgba(187, 187, 187, 0.816); +@define-color budgie_tasklist_indicator_color_attention #F4B400; diff --git a/src/gtk/3.0/gtk-compact.scss b/src/gtk/3.0/gtk-compact.scss new file mode 100644 index 0000000..060fe68 --- /dev/null +++ b/src/gtk/3.0/gtk-compact.scss @@ -0,0 +1,10 @@ +$variant: 'light'; +$topbar: 'light'; +$compact: 'true'; + +@import '../../_sass/variables'; +@import '../../_sass/colors'; +@import '../../_sass/gtk/drawing-3.20'; +@import '../../_sass/gtk/common-3.20'; +@import '../../_sass/gtk/apps-3.22'; +@import '../../_sass/gtk/colors-public'; diff --git a/src/gtk/3.0/gtk-dark-compact.css b/src/gtk/3.0/gtk-dark-compact.css new file mode 100644 index 0000000..9d9efe3 --- /dev/null +++ b/src/gtk/3.0/gtk-dark-compact.css @@ -0,0 +1,7270 @@ +@keyframes ripple { + to { + background-size: 1000% 1000%; + } +} + +@keyframes ripple-on-slider { + to { + background-size: auto, 1000% 1000%; + } +} + +@keyframes ripple-on-headerbar { + from { + background-image: radial-gradient(circle, #3281ea 0%, transparent 0%); + } + to { + background-image: radial-gradient(circle, #3281ea 100%, transparent 0%); + } +} + +* { + background-clip: padding-box; + -GtkToolButton-icon-spacing: 0; + -GtkTextView-error-underline-color: #F28B82; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 24; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 4; + outline-style: solid; + outline-width: 2px; + outline-color: transparent; + outline-offset: -4px; + -gtk-outline-radius: 12px; + -gtk-secondary-caret-color: #3281ea; +} + +*:focus { + outline-color: alpha(currentColor, 0.1); +} + +/*************** + * Base States * + ***************/ +.background { + background-color: rgba(33, 33, 33, 0.999); + color: white; +} + +.background.csd { + border-radius: 0 0 18px 18px; +} + +.background.maximized, .background.solid-csd { + border-radius: 0; +} + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:disabled { + -gtk-icon-effect: dim; +} + +.gtkstyle-fallback { + background-color: #212121; + color: white; +} + +.gtkstyle-fallback:hover { + background-color: #141414; + color: white; +} + +.gtkstyle-fallback:active { + background-color: #080808; + color: white; +} + +.gtkstyle-fallback:disabled { + background-color: #212121; + color: rgba(255, 255, 255, 0.5); +} + +.gtkstyle-fallback:selected { + background-color: #3281ea; + color: white; +} + +.view, filechooser stack.view scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view { + background-color: #2C2C2C; + color: white; +} + +.view:hover, filechooser stack.view scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +.view:selected:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:hover { + box-shadow: inset 0 0 0 9999px rgba(50, 129, 234, 0.08); +} + +.view:disabled, filechooser stack.view scrolledwindow treeview.view:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:disabled { + color: rgba(255, 255, 255, 0.5); +} + +.view:hover, filechooser stack.view scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover, .view:selected, filechooser stack.view scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected { + border-radius: 12px; +} + +.view:selected, filechooser stack.view scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected { + background-color: #3281ea; +} + +textview text { + background-color: #2C2C2C; +} + +textview border { + background-color: #242424; + color: rgba(255, 255, 255, 0.7); +} + +.rubberband, +rubberband, +flowbox rubberband, +treeview.view rubberband, +filechooser stack.view scrolledwindow treeview.view rubberband, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view rubberband, +.content-view rubberband, +.content-view .rubberband, +XfdesktopIconView.view .rubberband { + border: 1px solid #3281ea; + background-color: rgba(50, 129, 234, 0.3); +} + +flowbox flowboxchild { + padding: 4px; + border-radius: 12px; +} + +.content-view .tile:selected { + background-color: transparent; +} + +label { + caret-color: currentColor; +} + +label.separator { + color: rgba(255, 255, 255, 0.7); +} + +label:disabled { + color: rgba(255, 255, 255, 0.5); +} + +headerbar label:disabled, +tab label:disabled, +button label:disabled { + color: inherit; +} + +label.osd { + border-radius: 12px; + background-color: rgba(97, 97, 97, 0.9); + color: white; +} + +.dim-label { + color: rgba(255, 255, 255, 0.7); +} + +assistant .sidebar { + padding: 4px 0; +} + +assistant .sidebar label { + min-height: 32px; + padding: 0 12px; + color: rgba(255, 255, 255, 0.5); + font-weight: 500; +} + +assistant .sidebar label.highlight { + color: white; +} + +/********************* + * Spinner Animation * + *********************/ +@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; +} + +/**************** + * Text Entries * + ****************/ +spinbutton:not(.vertical), spinbutton.vertical, +entry { + min-height: 32px; + padding: 0 8px; + border-radius: 12px; + caret-color: currentColor; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: white; +} + +spinbutton:focus:not(.vertical), spinbutton.vertical:focus, +entry:focus { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #3281ea; +} + +spinbutton:drop(active):not(.vertical), spinbutton.vertical:drop(active), +entry:drop(active) { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +spinbutton:disabled:not(.vertical), spinbutton.vertical:disabled, +entry:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + +spinbutton.flat:not(.vertical), spinbutton.flat.vertical, +entry.flat { + min-height: 0; + padding: 2px; + border-radius: 0; + background-color: transparent; +} + +spinbutton:not(.vertical) image, spinbutton.vertical image, +entry image { + color: rgba(255, 255, 255, 0.7); +} + +spinbutton:not(.vertical) image:hover, spinbutton.vertical image:hover, spinbutton:not(.vertical) image:active, spinbutton.vertical image:active, +entry image:hover, +entry image:active { + color: white; +} + +spinbutton:not(.vertical) image:disabled, spinbutton.vertical image:disabled, +entry image:disabled { + color: rgba(255, 255, 255, 0.5); +} + +spinbutton:not(.vertical) image.left, spinbutton.vertical image.left, +entry image.left { + margin-left: 0px; + margin-right: 6px; +} + +spinbutton:not(.vertical) image.right, spinbutton.vertical image.right, +entry image.right { + margin-left: 6px; + margin-right: 0px; +} + +spinbutton:not(.vertical) undershoot.left, spinbutton.vertical undershoot.left, +entry undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.3) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; + margin: 0 4px; + margin: 4px 0; +} + +spinbutton:not(.vertical) undershoot.right, spinbutton.vertical undershoot.right, +entry undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.3) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; + margin: 0 4px; + margin: 4px 0; +} + +spinbutton.error:not(.vertical), spinbutton.error.vertical, +entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: white; +} + +spinbutton.error:focus:not(.vertical), spinbutton.error.vertical:focus, +entry.error:focus { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #F28B82; +} + +spinbutton.error:disabled:not(.vertical), spinbutton.error.vertical:disabled, +entry.error:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + +spinbutton.warning:not(.vertical), spinbutton.warning.vertical, +entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: white; +} + +spinbutton.warning:focus:not(.vertical), spinbutton.warning.vertical:focus, +entry.warning:focus { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #FDD633; +} + +spinbutton.warning:disabled:not(.vertical), spinbutton.warning.vertical:disabled, +entry.warning:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + +spinbutton:not(.vertical) progress, spinbutton.vertical progress, +entry progress { + margin: 2px -8px; + border-bottom: 2px solid #3281ea; + background-color: transparent; +} + +.gedit-search-slider .linked:not(.vertical) > entry { + border-radius: 12px; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: inset 0 0 0 2px transparent; + background-color: #3C3C3C; + color: white; +} + +.gedit-search-slider .linked:not(.vertical) > entry:focus { + border-image: none; + box-shadow: inset 0 0 0 2px #3281ea; +} + +.gedit-search-slider .linked:not(.vertical) > entry:drop(active) { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +.gedit-search-slider .linked:not(.vertical) > entry:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: #242424; + color: rgba(255, 255, 255, 0.5); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: inset 0 0 0 2px transparent; + background-color: #F28B82; + color: rgba(0, 0, 0, 0.87); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error:focus { + border-image: none; + box-shadow: inset 0 0 0 2px #F28B82; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: #242424; + color: rgba(255, 255, 255, 0.5); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error image { + color: rgba(0, 0, 0, 0.6); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error image:hover, .gedit-search-slider .linked:not(.vertical) > entry.error image:active { + color: rgba(0, 0, 0, 0.87); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error image:disabled { + color: rgba(0, 0, 0, 0.38); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + border-image: none; + box-shadow: inset 0 0 0 2px transparent; + background-color: #FDD633; + color: rgba(0, 0, 0, 0.87); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning:focus { + border-image: none; + box-shadow: inset 0 0 0 2px #FDD633; +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: #242424; + color: rgba(255, 255, 255, 0.5); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning image { + color: rgba(0, 0, 0, 0.6); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning image:hover, .gedit-search-slider .linked:not(.vertical) > entry.warning image:active { + color: rgba(0, 0, 0, 0.87); +} + +.gedit-search-slider .linked:not(.vertical) > entry.warning image:disabled { + color: rgba(0, 0, 0, 0.38); +} + +treeview entry.flat, treeview entry { + background-color: #2C2C2C; +} + +treeview entry.flat, treeview entry.flat:focus, treeview entry, treeview entry:focus { + border-image: none; + box-shadow: none; +} + +.entry-tag, .documents-entry-tag, .photos-entry-tag { + margin: 2px; + border-radius: 9999px; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.12); + color: white; +} + +.entry-tag:hover, .documents-entry-tag:hover, .photos-entry-tag:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +:dir(ltr) .entry-tag, :dir(ltr) .documents-entry-tag, :dir(ltr) .photos-entry-tag { + margin-left: 4px; + margin-right: 0; + padding-left: 12px; + padding-right: 8px; +} + +:dir(rtl) .entry-tag, :dir(rtl) .documents-entry-tag, :dir(rtl) .photos-entry-tag { + margin-left: 0; + margin-right: 4px; + padding-left: 8px; + padding-right: 12px; +} + +.entry-tag.button, .button.documents-entry-tag, .button.photos-entry-tag { + box-shadow: none; + background-color: transparent; +} + +.entry-tag.button:not(:hover):not(:active), .button.documents-entry-tag:not(:hover):not(:active), .button.photos-entry-tag:not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +/*********** + * Buttons * + ***********/ +@keyframes needs-attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#3281ea), to(transparent)); + } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#3281ea), to(transparent)); + } +} + + +button { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 12px; + font-weight: 500; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + box-shadow: inset 0 0 0 9999px transparent; + background-color: alpha(currentColor, 0.05); + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: white; +} + + +button:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + + +button:hover, +button:drop(active) { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + + +button:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms, border 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; +} + + +button:disabled { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + + +button:checked { + box-shadow: none; + background-color: #3281ea; + color: white; +} + + +button:checked:hover, +button:checked:drop(active) { + box-shadow: inset 0 0 0 9999px transparent; +} + + +button:checked:disabled { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.1); + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + +modelbutton.flat, +.menuitem.button.flat, spinbutton:not(.vertical) button, spinbutton.vertical button, notebook > header > tabs > arrow, scrollbar button, check, +radio, row.activatable button.circular, treeview.view header button button.circular, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular, calendar.button, button.sidebar-button, .gedit-search-slider .linked > button, popover.messagepopover .popover-action-area button, #MatePanelPopupWindow button, #mate-menu button, .budgie-settings-window buttonbox.inline-toolbar button, .drop-shadow button, .budgie-session-dialog .linked.horizontal > button, combobox > .linked:not(.vertical) > button:not(:only-child), .caja-pathbar button, +.path-bar.linked:not(.vertical) > button, layouttabbar button, .mate-panel-menu-bar button, .budgie-panel button, .raven stackswitcher.linked > button, .xfce4-panel.background button, toolbar button, .titlebar button:not(.suggested-action):not(.destructive-action), popover.background.menu button, +popover.background button.model, actionbar > revealer > box button:not(.suggested-action):not(.destructive-action), .app-notification button, messagedialog.csd .dialog-action-box button, filechooser #pathbarbox > stack > box > button, infobar.info button, infobar.question button, .lock-dialog button, #buttonbox_frame button, .nemo-window .toolbar button, +button.flat { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + box-shadow: inset 0 0 0 9999px transparent; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; + color: rgba(255, 255, 255, 0.7); +} + +modelbutton.flat:focus, +.menuitem.button.flat:focus, spinbutton:not(.vertical) button:focus, spinbutton.vertical button:focus, notebook > header > tabs > arrow:focus, scrollbar button:focus, check:focus, +radio:focus, row.activatable button.circular:focus, treeview.view header button button.circular:focus, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:focus, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:focus, calendar.button:focus, button.sidebar-button:focus, .gedit-search-slider .linked > button:focus, popover.messagepopover .popover-action-area button:focus, #MatePanelPopupWindow button:focus, #mate-menu button:focus, .budgie-settings-window buttonbox.inline-toolbar button:focus, .drop-shadow button:focus, .budgie-session-dialog .linked.horizontal > button:focus, combobox > .linked:not(.vertical) > button:focus:not(:only-child), .caja-pathbar button:focus, +.path-bar.linked:not(.vertical) > button:focus, layouttabbar button:focus, .mate-panel-menu-bar button:focus, .budgie-panel button:focus, .raven stackswitcher.linked > button:focus, .xfce4-panel.background button:focus, toolbar button:focus, .titlebar button:focus:not(.suggested-action):not(.destructive-action), popover.background.menu button:focus, +popover.background button.model:focus, actionbar > revealer > box button:focus:not(.suggested-action):not(.destructive-action), .app-notification button:focus, messagedialog.csd .dialog-action-box button:focus, filechooser #pathbarbox > stack > box > button:focus, infobar.info button:focus, infobar.question button:focus, .lock-dialog button:focus, #buttonbox_frame button:focus, .nemo-window .toolbar button:focus, +button.flat:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); + color: white; +} + +modelbutton.flat:hover, +.menuitem.button.flat:hover, spinbutton:not(.vertical) button:hover, +spinbutton:not(.vertical) button:drop(active), spinbutton.vertical button:hover, +spinbutton.vertical button:drop(active), notebook > header > tabs > arrow:hover, scrollbar button:hover, +scrollbar button:drop(active), check:hover, +radio:hover, row.activatable button.circular:hover, treeview.view header button button.circular:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:hover, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:hover, +row.activatable button.circular:drop(active), +treeview.view header button button.circular:drop(active), +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:drop(active), +.budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:drop(active), calendar.button:hover, button.sidebar-button:hover, +button.sidebar-button:drop(active), .gedit-search-slider .linked > button:hover, +.gedit-search-slider .linked > button:drop(active), popover.messagepopover .popover-action-area button:hover, +popover.messagepopover .popover-action-area button:drop(active), #MatePanelPopupWindow button:hover, +#MatePanelPopupWindow button:drop(active), #mate-menu button:hover, +#mate-menu button:drop(active), .budgie-settings-window buttonbox.inline-toolbar button:hover, +.budgie-settings-window buttonbox.inline-toolbar button:drop(active), .drop-shadow button:hover, +.drop-shadow button:drop(active), .budgie-session-dialog .linked.horizontal > button:hover, +.budgie-session-dialog .linked.horizontal > button:drop(active), combobox > .linked:not(.vertical) > button:hover:not(:only-child), +combobox > .linked:not(.vertical) > button:not(:only-child):drop(active), .caja-pathbar button:hover, +.caja-pathbar button:drop(active), +.path-bar.linked:not(.vertical) > button:hover, +.path-bar.linked:not(.vertical) > button:drop(active), layouttabbar button:hover, +layouttabbar button:drop(active), .mate-panel-menu-bar button:hover, +.mate-panel-menu-bar button:drop(active), .budgie-panel button:hover, +.budgie-panel button:drop(active), .raven stackswitcher.linked > button:hover, +.raven stackswitcher.linked > button:drop(active), .xfce4-panel.background button:hover, +.xfce4-panel.background button:drop(active), toolbar button:hover, +toolbar button:drop(active), .titlebar button:hover:not(.suggested-action):not(.destructive-action), +.titlebar button:not(.suggested-action):not(.destructive-action):drop(active), popover.background.menu button:hover, +popover.background.menu button:drop(active), +popover.background button.model:hover, +popover.background button.model:drop(active), actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):drop(active), .app-notification button:hover, +.app-notification button:drop(active), messagedialog.csd .dialog-action-box button:hover, +messagedialog.csd .dialog-action-box button:drop(active), filechooser #pathbarbox > stack > box > button:hover, +filechooser #pathbarbox > stack > box > button:drop(active), infobar.info button:hover, +infobar.info button:drop(active), infobar.question button:hover, +infobar.question button:drop(active), .lock-dialog button:hover, +.lock-dialog button:drop(active), #buttonbox_frame button:hover, +#buttonbox_frame button:drop(active), .nemo-window .toolbar button:hover, +.nemo-window .toolbar button:drop(active), +button.flat:hover, +toolbar button:drop(active), +.titlebar button:drop(active):not(.suggested-action):not(.destructive-action), +popover.background.menu button:drop(active), +popover.background button.model:drop(active), +actionbar > revealer > box button:drop(active):not(.suggested-action):not(.destructive-action), +.app-notification button:drop(active), +messagedialog.csd .dialog-action-box button:drop(active), +filechooser #pathbarbox > stack > box > button:drop(active), +infobar.info button:drop(active), +infobar.question button:drop(active), +.lock-dialog button:drop(active), +#buttonbox_frame button:drop(active), +.nemo-window .toolbar button:drop(active), +button.flat:drop(active) { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); + color: white; +} + +modelbutton.flat:active, +.menuitem.button.flat:active, spinbutton:not(.vertical) button:active, spinbutton.vertical button:active, notebook > header > tabs > arrow:active, scrollbar button:active, check:active, +radio:active, row.activatable button.circular:active, treeview.view header button button.circular:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:active, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:active, calendar.button:active, button.sidebar-button:active, .gedit-search-slider .linked > button:active, popover.messagepopover .popover-action-area button:active, #MatePanelPopupWindow button:active, #mate-menu button:active, .budgie-settings-window buttonbox.inline-toolbar button:active, .drop-shadow button:active, .budgie-session-dialog .linked.horizontal > button:active, combobox > .linked:not(.vertical) > button:active:not(:only-child), .caja-pathbar button:active, +.path-bar.linked:not(.vertical) > button:active, layouttabbar button:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven stackswitcher.linked > button:active, .xfce4-panel.background button:active, toolbar button:active, .titlebar button:active:not(.suggested-action):not(.destructive-action), popover.background.menu button:active, +popover.background button.model:active, actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action), .app-notification button:active, messagedialog.csd .dialog-action-box button:active, filechooser #pathbarbox > stack > box > button:active, infobar.info button:active, infobar.question button:active, .lock-dialog button:active, #buttonbox_frame button:active, .nemo-window .toolbar button:active, +button.flat:active { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 225ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; + color: white; +} + +modelbutton.flat:disabled, +.menuitem.button.flat:disabled, spinbutton:not(.vertical) button:disabled, spinbutton.vertical button:disabled, notebook > header > tabs > arrow:disabled, scrollbar button:disabled, check:disabled, +radio:disabled, row.activatable button.circular:disabled, treeview.view header button button.circular:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button button.circular:disabled, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) button.circular:disabled, calendar.button:disabled, button.sidebar-button:disabled, .gedit-search-slider .linked > button:disabled, popover.messagepopover .popover-action-area button:disabled, #MatePanelPopupWindow button:disabled, #mate-menu button:disabled, .budgie-settings-window buttonbox.inline-toolbar button:disabled, .drop-shadow button:disabled, .budgie-session-dialog .linked.horizontal > button:disabled, combobox > .linked:not(.vertical) > button:disabled:not(:only-child), .caja-pathbar button:disabled, +.path-bar.linked:not(.vertical) > button:disabled, layouttabbar button:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven stackswitcher.linked > button:disabled, .xfce4-panel.background button:disabled, toolbar button:disabled, .titlebar button:disabled:not(.suggested-action):not(.destructive-action), popover.background.menu button:disabled, +popover.background button.model:disabled, actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action), .app-notification button:disabled, messagedialog.csd .dialog-action-box button:disabled, filechooser #pathbarbox > stack > box > button:disabled, infobar.info button:disabled, infobar.question button:disabled, .lock-dialog button:disabled, #buttonbox_frame button:disabled, .nemo-window .toolbar button:disabled, +button.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + +combobox > .linked:not(.vertical) > button:checked:not(:only-child), .caja-pathbar button:checked, +.path-bar.linked:not(.vertical) > button:checked, layouttabbar button:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven stackswitcher.linked > button:checked, .xfce4-panel.background button:checked, combobox > .linked:not(.vertical) > button:checked:hover:not(:only-child), +combobox > .linked:not(.vertical) > button:checked:not(:only-child):drop(active), .caja-pathbar button:checked:hover, +.caja-pathbar button:checked:drop(active), +.path-bar.linked:not(.vertical) > button:checked:hover, +.path-bar.linked:not(.vertical) > button:checked:drop(active), layouttabbar button:checked:hover, +layouttabbar button:checked:drop(active), .mate-panel-menu-bar button:checked:hover, +.mate-panel-menu-bar button:checked:drop(active), .budgie-panel button:checked:hover, +.budgie-panel button:checked:drop(active), .raven stackswitcher.linked > button:checked:hover, +.raven stackswitcher.linked > button:checked:drop(active), .xfce4-panel.background button:checked:hover, +.xfce4-panel.background button:checked:drop(active), toolbar button:checked, .path-bar-box .linked.nautilus-path-bar button:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:checked:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked, +popover.background button.model:checked, actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action), .app-notification button:checked, messagedialog.csd .dialog-action-box button:checked, filechooser #pathbarbox > stack > box > button:checked, infobar.info button:checked, infobar.question button:checked, .lock-dialog button:checked, #buttonbox_frame button:checked, .nemo-window .toolbar button:checked, toolbar button:checked:hover, +toolbar button:checked:drop(active), .path-bar-box .linked.nautilus-path-bar button:hover:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), +.path-bar-box .linked.nautilus-path-bar button:last-child:not(.suggested-action):not(.destructive-action):dir(ltr):drop(active), .path-bar-box .linked.nautilus-path-bar button:hover:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), +.path-bar-box .linked.nautilus-path-bar button:first-child:not(.suggested-action):not(.destructive-action):dir(rtl):drop(active), .titlebar button:checked:hover:not(.suggested-action):not(.destructive-action), +.titlebar button:checked:not(.suggested-action):not(.destructive-action):drop(active), popover.background.menu button:checked:hover, +popover.background.menu button:checked:drop(active), +popover.background button.model:checked:hover, +popover.background button.model:checked:drop(active), actionbar > revealer > box button:checked:hover:not(.suggested-action):not(.destructive-action), +actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):drop(active), .app-notification button:checked:hover, +.app-notification button:checked:drop(active), messagedialog.csd .dialog-action-box button:checked:hover, +messagedialog.csd .dialog-action-box button:checked:drop(active), filechooser #pathbarbox > stack > box > button:checked:hover, +filechooser #pathbarbox > stack > box > button:checked:drop(active), infobar.info button:checked:hover, +infobar.info button:checked:drop(active), infobar.question button:checked:hover, +infobar.question button:checked:drop(active), .lock-dialog button:checked:hover, +.lock-dialog button:checked:drop(active), #buttonbox_frame button:checked:hover, +#buttonbox_frame button:checked:drop(active), .nemo-window .toolbar button:checked:hover, +.nemo-window .toolbar button:checked:drop(active), +button.flat:checked, +button.flat:checked:hover, +toolbar button:checked:drop(active), +.path-bar-box .linked.nautilus-path-bar button:last-child:drop(active):not(.suggested-action):not(.destructive-action):dir(ltr), +.path-bar-box .linked.nautilus-path-bar button:first-child:drop(active):not(.suggested-action):not(.destructive-action):dir(rtl), +.titlebar button:checked:drop(active):not(.suggested-action):not(.destructive-action), +popover.background.menu button:checked:drop(active), +popover.background button.model:checked:drop(active), +actionbar > revealer > box button:checked:drop(active):not(.suggested-action):not(.destructive-action), +.app-notification button:checked:drop(active), +messagedialog.csd .dialog-action-box button:checked:drop(active), +filechooser #pathbarbox > stack > box > button:checked:drop(active), +infobar.info button:checked:drop(active), +infobar.question button:checked:drop(active), +.lock-dialog button:checked:drop(active), +#buttonbox_frame button:checked:drop(active), +.nemo-window .toolbar button:checked:drop(active), +button.flat:checked:drop(active) { + background-color: alpha(currentColor, 0.1); + color: white; +} + +combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child), .caja-pathbar button:checked:disabled, +.path-bar.linked:not(.vertical) > button:checked:disabled, layouttabbar button:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven stackswitcher.linked > button:checked:disabled, .xfce4-panel.background button:checked:disabled, toolbar button:checked:disabled, .path-bar-box .linked.nautilus-path-bar button:disabled:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:disabled:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:checked:disabled:not(.suggested-action):not(.destructive-action), popover.background.menu button:checked:disabled, +popover.background button.model:checked:disabled, actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action), .app-notification button:checked:disabled, messagedialog.csd .dialog-action-box button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, infobar.info button:checked:disabled, infobar.question button:checked:disabled, .lock-dialog button:checked:disabled, #buttonbox_frame button:checked:disabled, .nemo-window .toolbar button:checked:disabled, +button.flat:checked:disabled { + background-color: alpha(currentColor, 0.1); + color: rgba(255, 255, 255, 0.5); +} + + +button.text-button { + min-width: 32px; + padding-left: 16px; + padding-right: 16px; +} + +toolbar button.text-button, .titlebar button.text-button:not(.suggested-action):not(.destructive-action), popover.background.menu button.text-button, +popover.background button.text-button.model, actionbar > revealer > box button.text-button:not(.suggested-action):not(.destructive-action), .app-notification button.text-button, messagedialog.csd .dialog-action-box button.text-button, filechooser #pathbarbox > stack > box > button.text-button, infobar.info button.text-button, infobar.question button.text-button, .lock-dialog button.text-button, #buttonbox_frame button.text-button, .nemo-window .toolbar button.text-button, +button.text-button.flat { + min-width: 48px; + padding-left: 8px; + padding-right: 8px; +} + + +button.image-button { + min-width: 24px; + padding: 4px; +} + + +button.text-button.image-button { + min-width: 24px; + padding: 4px; + border-radius: 12px; +} + + +button.text-button.image-button label:first-child { + margin-left: 12px; +} + + +button.text-button.image-button label:last-child { + margin-right: 12px; +} + +toolbar button.text-button.image-button label:first-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, popover.background.menu button.text-button.image-button label:first-child, popover.background button.text-button.image-button.model label:first-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:first-child, .app-notification button.text-button.image-button label:first-child, messagedialog.csd .dialog-action-box button.text-button.image-button label:first-child, filechooser #pathbarbox > stack > box > button.text-button.image-button label:first-child, infobar.info button.text-button.image-button label:first-child, infobar.question button.text-button.image-button label:first-child, .lock-dialog button.text-button.image-button label:first-child, #buttonbox_frame button.text-button.image-button label:first-child, .nemo-window .toolbar button.text-button.image-button label:first-child, +button.text-button.image-button.flat label:first-child { + margin-left: 8px; +} + +toolbar button.text-button.image-button label:last-child, .titlebar button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, popover.background.menu button.text-button.image-button label:last-child, popover.background button.text-button.image-button.model label:last-child, actionbar > revealer > box button.text-button.image-button:not(.suggested-action):not(.destructive-action) label:last-child, .app-notification button.text-button.image-button label:last-child, messagedialog.csd .dialog-action-box button.text-button.image-button label:last-child, filechooser #pathbarbox > stack > box > button.text-button.image-button label:last-child, infobar.info button.text-button.image-button label:last-child, infobar.question button.text-button.image-button label:last-child, .lock-dialog button.text-button.image-button label:last-child, #buttonbox_frame button.text-button.image-button label:last-child, .nemo-window .toolbar button.text-button.image-button label:last-child, +button.text-button.image-button.flat label:last-child { + margin-right: 8px; +} + + +button.text-button.image-button image:not(:only-child) { + margin: 0 4px; +} + +toolbar .linked:not(.vertical) > button:not(:only-child), .titlebar .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:not(:only-child), +popover.background .linked:not(.vertical) > button.model:not(:only-child), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child):not(.suggested-action):not(.destructive-action), .app-notification .linked:not(.vertical) > button:not(:only-child), messagedialog.csd .dialog-action-box .linked:not(.vertical) > button:not(:only-child), filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:not(:only-child), infobar.info .linked:not(.vertical) > button:not(:only-child), infobar.question .linked:not(.vertical) > button:not(:only-child), .lock-dialog .linked:not(.vertical) > button:not(:only-child), #buttonbox_frame .linked:not(.vertical) > button:not(:only-child), .nemo-window .toolbar .linked:not(.vertical) > button:not(:only-child), +toolbar .linked.vertical > button:not(:only-child), +.titlebar .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), +popover.background.menu .linked.vertical > button:not(:only-child), +popover.background .linked.vertical > button.model:not(:only-child), +actionbar > revealer > box .linked.vertical > button:not(:only-child):not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > button:not(:only-child), +messagedialog.csd .dialog-action-box .linked.vertical > button:not(:only-child), +filechooser #pathbarbox > stack > box.linked.vertical > button:not(:only-child), +infobar.info .linked.vertical > button:not(:only-child), +infobar.question .linked.vertical > button:not(:only-child), +.lock-dialog .linked.vertical > button:not(:only-child), +#buttonbox_frame .linked.vertical > button:not(:only-child), +.nemo-window .toolbar .linked.vertical > button:not(:only-child), .linked:not(.vertical) > +button.flat:not(:only-child), +.linked.vertical > +button.flat:not(:only-child) { + border-radius: 12px; +} + +toolbar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .titlebar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), +popover.background .linked:not(.vertical) > button:not(:only-child).image-button.model:not(.text-button), actionbar > revealer > box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), .app-notification .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), messagedialog.csd .dialog-action-box .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.info .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), infobar.question .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .lock-dialog .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), #buttonbox_frame .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), .nemo-window .toolbar .linked:not(.vertical) > button:not(:only-child).image-button:not(.text-button), +toolbar .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.titlebar .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), +popover.background.menu .linked.vertical > button:not(:only-child).image-button:not(.text-button), +popover.background .linked.vertical > button:not(:only-child).image-button.model:not(.text-button), +actionbar > revealer > box .linked.vertical > button:not(:only-child).image-button:not(.text-button):not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > button:not(:only-child).image-button:not(.text-button), +messagedialog.csd .dialog-action-box .linked.vertical > button:not(:only-child).image-button:not(.text-button), +filechooser #pathbarbox > stack > box.linked.vertical > button:not(:only-child).image-button:not(.text-button), +infobar.info .linked.vertical > button:not(:only-child).image-button:not(.text-button), +infobar.question .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.lock-dialog .linked.vertical > button:not(:only-child).image-button:not(.text-button), +#buttonbox_frame .linked.vertical > button:not(:only-child).image-button:not(.text-button), +.nemo-window .toolbar .linked.vertical > button:not(:only-child).image-button:not(.text-button), .linked:not(.vertical) > +button.flat:not(:only-child).image-button:not(.text-button), +.linked.vertical > +button.flat:not(:only-child).image-button:not(.text-button) { + border-radius: 9999px; +} + +toolbar .linked:not(.vertical) > button:focus, .titlebar .linked:not(.vertical) > button:focus:not(.suggested-action):not(.destructive-action), popover.background.menu .linked:not(.vertical) > button:focus, +popover.background .linked:not(.vertical) > button.model:focus, actionbar > revealer > box .linked:not(.vertical) > button:focus:not(.suggested-action):not(.destructive-action), .app-notification .linked:not(.vertical) > button:focus, messagedialog.csd .dialog-action-box .linked:not(.vertical) > button:focus, filechooser #pathbarbox > stack > box.linked:not(.vertical) > button:focus, infobar.info .linked:not(.vertical) > button:focus, infobar.question .linked:not(.vertical) > button:focus, .lock-dialog .linked:not(.vertical) > button:focus, #buttonbox_frame .linked:not(.vertical) > button:focus, .nemo-window .toolbar .linked:not(.vertical) > button:focus, +toolbar .linked.vertical > button:focus, +.titlebar .linked.vertical > button:focus:not(.suggested-action):not(.destructive-action), +popover.background.menu .linked.vertical > button:focus, +popover.background .linked.vertical > button.model:focus, +actionbar > revealer > box .linked.vertical > button:focus:not(.suggested-action):not(.destructive-action), +.app-notification .linked.vertical > button:focus, +messagedialog.csd .dialog-action-box .linked.vertical > button:focus, +filechooser #pathbarbox > stack > box.linked.vertical > button:focus, +infobar.info .linked.vertical > button:focus, +infobar.question .linked.vertical > button:focus, +.lock-dialog .linked.vertical > button:focus, +#buttonbox_frame .linked.vertical > button:focus, +.nemo-window .toolbar .linked.vertical > button:focus, .linked:not(.vertical) > +button.flat:focus, +.linked.vertical > +button.flat:focus { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +infobar.error button.flat, .mate-panel-menu-bar button, .budgie-panel button, .raven-mpris button.image-button, .xfce4-panel.background button { + color: rgba(255, 255, 255, 0.7); +} + +infobar.error button.flat:focus, .mate-panel-menu-bar button:focus, .budgie-panel button:focus, .raven-mpris button.image-button:focus, .xfce4-panel.background button:focus, infobar.error button.flat:hover, infobar.error toolbar button:drop(active), toolbar infobar.error button:drop(active), infobar.error .titlebar button:drop(active):not(.suggested-action):not(.destructive-action), .titlebar infobar.error button:drop(active):not(.suggested-action):not(.destructive-action), infobar.error popover.background.menu button:drop(active), popover.background.menu infobar.error button:drop(active), +infobar.error popover.background button.model:drop(active), popover.background infobar.error button.model:drop(active), infobar.error actionbar > revealer > box button:drop(active):not(.suggested-action):not(.destructive-action), actionbar > revealer > box infobar.error button:drop(active):not(.suggested-action):not(.destructive-action), infobar.error .app-notification button:drop(active), .app-notification infobar.error button:drop(active), infobar.error messagedialog.csd .dialog-action-box button:drop(active), messagedialog.csd .dialog-action-box infobar.error button:drop(active), infobar.error filechooser #pathbarbox > stack > box > button:drop(active), filechooser infobar.error #pathbarbox > stack > box > button:drop(active), infobar.error infobar.info button:drop(active), infobar.info infobar.error button:drop(active), infobar.error infobar.question button:drop(active), infobar.question infobar.error button:drop(active), infobar.error .lock-dialog button:drop(active), .lock-dialog infobar.error button:drop(active), infobar.error #buttonbox_frame button:drop(active), #buttonbox_frame infobar.error button:drop(active), infobar.error .nemo-window .toolbar button:drop(active), .nemo-window .toolbar infobar.error button:drop(active), +infobar.error button.flat:drop(active), .mate-panel-menu-bar button:hover, +.mate-panel-menu-bar button:drop(active), .budgie-panel button:hover, +.budgie-panel button:drop(active), .raven-mpris button.image-button:hover, +.raven-mpris button.image-button:drop(active), .xfce4-panel.background button:hover, +.xfce4-panel.background button:drop(active), infobar.error button.flat:active, .mate-panel-menu-bar button:active, .budgie-panel button:active, .raven-mpris button.image-button:active, .xfce4-panel.background button:active, infobar.error button.flat:checked, .mate-panel-menu-bar button:checked, .budgie-panel button:checked, .raven-mpris button.image-button:checked, .xfce4-panel.background button:checked { + color: white; +} + +infobar.error button.flat:disabled, .mate-panel-menu-bar button:disabled, .budgie-panel button:disabled, .raven-mpris button.image-button:disabled, .xfce4-panel.background button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +infobar.error button.flat:checked:disabled, .mate-panel-menu-bar button:checked:disabled, .budgie-panel button:checked:disabled, .raven-mpris button.image-button:checked:disabled, .xfce4-panel.background button:checked:disabled { + color: rgba(255, 255, 255, 0.5); +} + + +button.osd { + padding: 8px 12px; +} + + +button.osd.image-button { + padding: 8px; +} + + +button.osd:disabled { + opacity: 0; +} + + +button.suggested-action { + background-color: #3281ea; + color: white; + box-shadow: none; +} + + +button.suggested-action:disabled { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + + +button.suggested-action:hover, +button.suggested-action:drop(active) { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(50, 129, 234, 0.2), 0 4px 3px 0 rgba(50, 129, 234, 0.14), 0 1px 6px 0 rgba(50, 129, 234, 0.12); +} + + +button.suggested-action:checked { + background-color: #70a7f0; +} + + +button.suggested-action:checked:hover, +button.suggested-action:checked:drop(active) { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(50, 129, 234, 0.3), 0 2px 3px -1px rgba(50, 129, 234, 0.24), 0 2px 5px 0 rgba(50, 129, 234, 0.12); +} + + +button.suggested-action:focus { + box-shadow: 0 0 0 2px rgba(50, 129, 234, 0.35); +} + + +button.suggested-action.flat { + background-color: transparent; + color: #3281ea; +} + + +button.suggested-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + + +button.suggested-action.flat:checked { + background-color: rgba(50, 129, 234, 0.3); +} + + +button.destructive-action { + background-color: #F28B82; + color: rgba(0, 0, 0, 0.87); + box-shadow: none; +} + + +button.destructive-action:disabled { + box-shadow: none; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + + +button.destructive-action:hover, +button.destructive-action:drop(active) { + box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(242, 139, 130, 0.2), 0 4px 3px 0 rgba(242, 139, 130, 0.14), 0 1px 6px 0 rgba(242, 139, 130, 0.12); +} + + +button.destructive-action:checked { + background-color: rgba(182, 105, 98, 0.961); +} + + +button.destructive-action:checked:hover, +button.destructive-action:checked:drop(active) { + box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(242, 139, 130, 0.3), 0 2px 3px -1px rgba(242, 139, 130, 0.24), 0 2px 5px 0 rgba(242, 139, 130, 0.12); +} + + +button.destructive-action:focus { + box-shadow: 0 0 0 2px rgba(242, 139, 130, 0.35); +} + + +button.destructive-action.flat { + background-color: transparent; + color: #F28B82; +} + + +button.destructive-action.flat:disabled { + box-shadow: none; + background-color: transparent; + color: rgba(255, 255, 255, 0.3); +} + + +button.destructive-action.flat:checked { + background-color: rgba(242, 139, 130, 0.3); +} + +.stack-switcher > +button > label { + margin: 0 -6px; + padding: 0 6px; +} + +.stack-switcher > +button > image { + margin: -3px -6px; + padding: 3px 6px; +} + +.stack-switcher > +button.needs-attention:checked > label, +.stack-switcher > +button.needs-attention:checked > image { + animation: none; + background-image: none; +} + +.primary-toolbar +button { + -gtk-icon-shadow: none; +} + + +button.image-button, .inline-toolbar button:not(.text-button), check, +radio, filechooser #pathbarbox > stack > box > button, button.titlebutton, .linked:not(.vertical) > button.disclosure-button:not(.suggested-action):not(.destructive-action):not(:only-child), .nautilus-window headerbar revealer > button, .raven .expander-button, +button.close, +button.circular { + border-radius: 9999px; +} + +spinbutton:not(.vertical) button, spinbutton.vertical button, notebook > header tab button.flat, button.sidebar-button, .nautilus-window .floating-bar button, .gedit-document-panel row button.flat, .gedit-search-slider .linked > button, .pluma-window paned.horizontal box.vertical box.horizontal button.flat { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 9999px; +} + +.stack-switcher > button.needs-attention > label, +.stack-switcher > button.needs-attention > image, stacksidebar.sidebar row.needs-attention > label { + animation: needs-attention 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 6px 6px; +} + +.stack-switcher > button.needs-attention > label:dir(rtl), +.stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar.sidebar row.needs-attention > label:dir(rtl) { + background-position: left 3px; +} + +.linked:not(.vertical) > spinbutton:not(:first-child):not(.vertical), .linked:not(.vertical) > spinbutton.vertical:not(:first-child), .linked:not(.vertical) > entry:not(:first-child), .linked:not(.vertical) > button:not(:first-child), combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.linked:not(.vertical) > spinbutton:not(:last-child):not(.vertical), .linked:not(.vertical) > spinbutton.vertical:not(:last-child), .linked:not(.vertical) > entry:not(:last-child), .linked:not(.vertical) > button:not(:last-child), combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:not(:last-child) > box > button.combo { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.linked.vertical > spinbutton:not(:first-child):not(.vertical), .linked.vertical > spinbutton.vertical:not(:first-child), .linked.vertical > entry:not(:first-child), .linked.vertical > button:not(:first-child), .linked.vertical > combobox:not(:first-child) > box > button.combo { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.linked.vertical > spinbutton:not(:last-child):not(.vertical), .linked.vertical > spinbutton.vertical:not(:last-child), .linked.vertical > entry:not(:last-child), .linked.vertical > button:not(:last-child), .linked.vertical > combobox:not(:last-child) > box > button.combo { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.linked:not(.vertical) > button.image-button:first-child:not(.text-button) { + border-top-left-radius: 12px; + border-bottom-left-radius: 12px; +} + +.linked:not(.vertical) > button.image-button:last-child:not(.text-button) { + border-top-right-radius: 12px; + border-bottom-right-radius: 12px; +} + +.linked:not(.vertical) > button.image-button:only-child:not(.text-button) { + border-radius: 9999px; +} + +.linked.vertical > button.image-button:first-child:not(.text-button) { + border-top-left-radius: 12px; + border-top-right-radius: 12px; +} + +.linked.vertical > button.image-button:last-child:not(.text-button) { + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; +} + +.linked.vertical > button.image-button:only-child:not(.text-button) { + border-radius: 9999px; +} + +/* menu buttons */ +modelbutton.flat, +.menuitem.button.flat { + min-height: 28px; + padding: 0 8px; + border-radius: 12px; + color: white; +} + +modelbutton.flat arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +modelbutton.flat arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +button.color { + min-height: 24px; + min-width: 24px; + padding: 4px; +} + +/********* + * Links * + *********/ +*:link, button.link:link, button.link:link:focus, button.link:link:hover, +button.link:link:drop(active), button.link:link:active { + color: #3281ea; +} + +*:visited, button.link:visited, button.link:visited:focus, button.link:visited:hover, +button.link:visited:drop(active), button.link:visited:active { + color: #CE93D8; +} + +button.link > label { + text-decoration-line: underline; +} + +/***************** + * GtkSpinButton * + *****************/ +spinbutton:not(.vertical) { + padding: 0; +} + +spinbutton:not(.vertical) entry { + min-width: 24px; + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +spinbutton:not(.vertical) button { + border: solid 4px transparent; +} + +spinbutton:not(.vertical) button:focus:not(:hover):not(:active):not(:disabled) { + box-shadow: inset 0 0 0 9999px transparent; + color: rgba(255, 255, 255, 0.7); +} + +spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) { + margin-left: -2px; +} + +spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) { + margin-right: -2px; +} + +spinbutton.vertical { + padding: 0; +} + +spinbutton.vertical:disabled { + color: rgba(255, 255, 255, 0.5); +} + +spinbutton.vertical entry { + margin: 0; + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; + min-height: 32px; + min-width: 36px; + padding: 0; +} + +spinbutton.vertical button { + padding: 0; + border: solid 4px transparent; +} + +spinbutton.vertical button:focus:not(:hover):not(:active) { + box-shadow: inset 0 0 0 9999px transparent; + color: rgba(255, 255, 255, 0.7); +} + +spinbutton.vertical button.up { + margin: 0 2px; +} + +spinbutton.vertical button.down { + margin: 0 2px; +} + +treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; +} + +treeview spinbutton:not(.vertical) entry { + min-height: 0; + padding: 1px 2px; +} + +/************** + * ComboBoxes * + **************/ +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; +} + +combobox decoration { + transition: none; +} + +combobox button.combo cellview:dir(ltr) { + margin-left: 0px; +} + +combobox button.combo cellview:dir(rtl) { + margin-right: 0px; +} + +combobox menu { + padding: 2px 0; +} + +combobox menu menuitem { + min-height: 28px; + padding: 0 8px; +} + +combobox menu > arrow.top { + margin-top: -2px; +} + +combobox menu > arrow.bottom { + margin-top: 4px; + margin-bottom: -6px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 12px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child):first-child { + margin-right: -32px; + padding-right: 32px; +} + +combobox > .linked:not(.vertical) > entry:not(:only-child):last-child { + margin-left: -32px; + padding-left: 32px; +} + +combobox > .linked:not(.vertical) > button:not(:only-child) { + min-height: 16px; + min-width: 16px; + margin: 4px; + padding: 4px; + border-radius: 9999px; +} + +button.combo:only-child { + border-radius: 12px; + font-weight: normal; + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: white; +} + +button.combo:only-child:focus { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3); +} + +button.combo:only-child:hover, +button.combo:only-child:drop(active) { + background-color: alpha(currentColor, 0.08); + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +button.combo:only-child:checked { + background-color: rgba(255, 255, 255, 0.04); + box-shadow: inset 0 0 0 2px #3281ea; +} + +button.combo:only-child:disabled { + box-shadow: inset 0 0 0 2px transparent; + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + +/************ + * Toolbars * + ************/ +toolbar { + -GtkWidget-window-dragging: true; + padding: 2px; + background-color: #212121; +} + +.osd toolbar { + background-color: transparent; +} + +toolbar.osd, .app-notification, frame.documents-dropdown { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 4px; + border-radius: 12px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; +} + +toolbar.osd:backdrop, .app-notification:backdrop, frame.documents-dropdown:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1); +} + +toolbar.osd.left, .left.app-notification, frame.left.documents-dropdown, toolbar.osd.right, .right.app-notification, frame.right.documents-dropdown, toolbar.osd.top, .top.app-notification, frame.top.documents-dropdown, toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown { + border-radius: 0; +} + +toolbar.osd.bottom, .bottom.app-notification, frame.bottom.documents-dropdown { + box-shadow: none; + background-color: transparent; + background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4)); +} + +toolbar.horizontal > separator { + margin: 2px; +} + +toolbar.vertical > separator { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) scale, +toolbar:not(.inline-toolbar):not(.osd) entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton, +toolbar:not(.inline-toolbar):not(.osd) button { + margin: 2px; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) { + margin-left: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child), +toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) { + margin-right: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) spinbutton entry, +toolbar:not(.inline-toolbar):not(.osd) spinbutton button { + margin: 0; +} + +toolbar:not(.inline-toolbar):not(.osd) switch { + margin: 6px 2px; +} + +.inline-toolbar { + padding: 4px; + border-style: solid; + border-width: 0 1px 1px; + border-color: rgba(0, 0, 0, 0.16); + background-color: #242424; +} + +searchbar > revealer > box, +.location-bar { + padding: 4px; + border-style: solid; + border-width: 0 0 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #212121; + background-clip: border-box; +} + +searchbar > revealer > box { + margin: -6px; + padding: 4px; +} + +/*************** + * Header bars * + ***************/ +.titlebar { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 18px 18px 0 0; + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.16); + background-color: #2C2C2C; + color: white; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); +} + +.titlebar:disabled { + color: rgba(255, 255, 255, 0.5); +} + +.titlebar:backdrop { + background-color: #2C2C2C; + color: rgba(255, 255, 255, 0.7); +} + +.titlebar:backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar .title { + padding: 0 12px; + font-weight: bold; +} + +.titlebar .subtitle { + padding: 0 12px; + font-size: smaller; +} + +.titlebar .subtitle, +.titlebar .dim-label { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +.titlebar .subtitle:backdrop, +.titlebar .dim-label:backdrop { + color: rgba(255, 255, 255, 0.5); +} + +.titlebar .titlebar { + background-color: transparent; +} + +.titlebar headerbar + separator { + background-color: rgba(255, 255, 255, 0.12); +} + +.titlebar entry { + background-color: rgba(255, 255, 255, 0.04); + color: white; +} + +.titlebar entry:disabled { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + +.titlebar entry image { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar entry image:hover, .titlebar entry image:active { + color: white; +} + +.titlebar entry image:disabled { + color: rgba(255, 255, 255, 0.5); +} + +.titlebar .linked:not(.vertical) > entry:not(:only-child) { + border-radius: 12px; +} + +.titlebar button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):focus, .titlebar button:not(.suggested-action):not(.destructive-action):hover, +.titlebar button:not(.suggested-action):not(.destructive-action):drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):active { + color: white; +} + +.titlebar button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(255, 255, 255, 0.3); +} + +.path-bar-box .linked.nautilus-path-bar button:disabled:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:disabled:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):checked:disabled { + background-color: transparent; + color: rgba(255, 255, 255, 0.5); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(255, 255, 255, 0.5); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:focus, .titlebar button:not(.suggested-action):not(.destructive-action):backdrop:hover, +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:drop(active), .titlebar button:not(.suggested-action):not(.destructive-action):backdrop:active { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.path-bar-box .linked.nautilus-path-bar button:backdrop:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:backdrop:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(255, 255, 255, 0.7); +} + +.path-bar-box .linked.nautilus-path-bar button:backdrop:disabled:last-child:not(.suggested-action):not(.destructive-action):dir(ltr), .path-bar-box .linked.nautilus-path-bar button:backdrop:disabled:first-child:not(.suggested-action):not(.destructive-action):dir(rtl), .titlebar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar button.suggested-action:disabled, .titlebar button.destructive-action:disabled { + background-color: rgba(255, 255, 255, 0.04); + color: rgba(255, 255, 255, 0.5); +} + +.titlebar stackswitcher { + min-height: 0; + border-radius: 9999px; + background-color: alpha(currentColor, 0.05); + padding: 0; + margin: 4px 0; +} + +.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button { + margin: 0 0; + min-width: 104px; + border-radius: 9999px; +} + +.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button:focus { + box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08); +} + +.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button:active { + box-shadow: inset 0 0 0 9999px alpha(#3281ea, 0.08); + background-image: radial-gradient(circle, alpha(#3281ea, 0.08) 10%, transparent 0%); +} + +.titlebar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button:checked { + background-color: #3281ea; + color: white; +} + +.titlebar .path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; + padding-left: 4px; + padding-right: 4px; +} + +.titlebar.selection-mode { + transition: background-color 0.1ms 225ms, color 75ms cubic-bezier(0, 0, 0.2, 1); + animation: ripple-on-headerbar 225ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17), inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #3281ea; + color: white; +} + +.titlebar.selection-mode:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode .subtitle:link { + color: white; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action) { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; + color: white; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled { + color: rgba(255, 255, 255, 0.5); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; + color: white; +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled { + color: rgba(255, 255, 255, 0.5); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked { + color: rgba(255, 255, 255, 0.7); +} + +.titlebar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.titlebar.selection-mode .selection-menu { + padding-left: 16px; + padding-right: 16px; +} + +.titlebar.selection-mode .selection-menu arrow { + -GtkArrow-arrow-scaling: 1; +} + +.titlebar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +.titlebar .selection-mode { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.2); + background-color: #3281ea; +} + +.tiled .titlebar, +.tiled-top .titlebar, +.tiled-right .titlebar, +.tiled-bottom .titlebar, +.tiled-left .titlebar, +.maximized .titlebar, +.fullscreen .titlebar { + border-radius: 0; +} + +.titlebar.default-decoration { + background-color: #2C2C2C; + min-height: 24px; + padding: 4px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + border-radius: 12px 12px 0 0; +} + +.titlebar.default-decoration:backdrop { + background-color: #2C2C2C; +} + +.tiled .titlebar.default-decoration, +.maximized .titlebar.default-decoration, +.fullscreen .titlebar.default-decoration { + box-shadow: none; + border-radius: 0; +} + +.titlebar.default-decoration button.titlebutton { + min-height: 24px; + min-width: 24px; + margin: 0; + padding: 0; +} + +.background:not(.csd) .titlebar.default-decoration button.titlebutton:active { + background-size: 1000% 1000%; +} + +.solid-csd .titlebar:dir(rtl), .solid-csd .titlebar:dir(ltr) { + border-radius: 0; + box-shadow: none; +} + +headerbar { + min-height: 40px; + padding: 0 4px; +} + +headerbar entry, +headerbar spinbutton, +headerbar button { + margin-top: 4px; + margin-bottom: 4px; +} + +headerbar separator.titlebutton { + margin-top: 10px; + margin-bottom: 10px; + background-color: rgba(255, 255, 255, 0.12); +} + +headerbar switch { + margin-top: 8px; + margin-bottom: 8px; +} + +headerbar spinbutton button { + margin-top: 0; + margin-bottom: 0; +} + +headerbar .entry-tag, headerbar .documents-entry-tag, headerbar .photos-entry-tag { + margin-top: 5px; + margin-bottom: 5px; +} + +/************ + * Pathbars * + ************/ +.caja-pathbar button, +.path-bar.linked:not(.vertical) > button { + padding-left: 4px; + padding-right: 4px; + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #3281ea 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 12px; +} + +.caja-pathbar button:checked, +.path-bar.linked:not(.vertical) > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #3281ea 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.caja-pathbar button:checked, .caja-pathbar button:checked:disabled, +.path-bar.linked:not(.vertical) > button:checked, +.path-bar.linked:not(.vertical) > button:checked:disabled { + background-color: transparent; +} + +.caja-pathbar button label:not(:only-child):first-child, +.path-bar.linked:not(.vertical) > button label:not(:only-child):first-child { + margin-left: 0; +} + +.caja-pathbar button label:not(:only-child):last-child, +.path-bar.linked:not(.vertical) > button label:not(:only-child):last-child { + margin-right: 0; +} + +.caja-pathbar button.text-button, +.path-bar.linked:not(.vertical) > button.text-button { + min-width: 0; +} + +.caja-pathbar button.slider-button, +.path-bar.linked:not(.vertical) > button.slider-button { + padding-left: 4px; + padding-right: 4px; +} + +/************** + * Tree Views * + **************/ +treeview.view, filechooser stack.view scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view { + border-left-color: rgba(255, 255, 255, 0.3); + border-top-color: rgba(255, 255, 255, 0.12); +} + +* { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; +} + +treeview.view:selected, filechooser stack.view scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected { + background-color: #2C2C2C; + background-image: image(alpha(currentColor, 0.1)); +} + +treeview.view:hover, filechooser stack.view scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover, treeview.view:selected, filechooser stack.view scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected { + border-radius: 0; +} + +treeview.view.separator, filechooser stack.view scrolledwindow treeview.separator.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.separator.view { + min-height: 5px; + color: rgba(255, 255, 255, 0.12); +} + +treeview.view:drop(active), filechooser stack.view scrolledwindow treeview.view:drop(active), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:drop(active) { + border-style: solid none; + border-width: 9999px; + border-color: alpha(currentColor, 0.08); +} + +treeview.view:drop(active).after, filechooser stack.view scrolledwindow treeview:drop(active).after.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview:drop(active).after.view { + border-top-style: none; +} + +treeview.view:drop(active).before, filechooser stack.view scrolledwindow treeview:drop(active).before.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview:drop(active).before.view { + border-bottom-style: none; +} + +treeview.view.expander, filechooser stack.view scrolledwindow treeview.expander.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(255, 255, 255, 0.7); +} + +treeview.view.expander:dir(rtl), filechooser stack.view scrolledwindow treeview.expander.view:dir(rtl), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +treeview.view.expander:checked, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:checked { + -gtk-icon-transform: unset; +} + +treeview.view.expander:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:hover, treeview.view.expander:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:active { + color: white; +} + +treeview.view.expander:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.expander.view:disabled { + color: rgba(255, 255, 255, 0.3); +} + +treeview.view.progressbar, filechooser stack.view scrolledwindow treeview.progressbar.view, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar:focus { + border-bottom: 6px solid #3281ea; + box-shadow: none; + background-color: transparent; + background-image: none; +} + +treeview.view.progressbar:selected:hover, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar:selected:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.progressbar:selected:hover { + box-shadow: none; +} + +treeview.view.trough, filechooser stack.view scrolledwindow treeview.trough.view, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.trough, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.trough { + border-bottom: 6px solid rgba(255, 255, 255, 0.12); + box-shadow: none; + background-color: transparent; + background-image: none; +} + +treeview.view.trough:selected:hover, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.trough:selected:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view.trough:selected:hover { + box-shadow: none; +} + +treeview.view header button, filechooser stack.view scrolledwindow treeview.view header button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button { + padding: 2px 6px; + border-style: none solid solid none; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; + background-clip: border-box; +} + +treeview.view header button:not(:focus):not(:hover):not(:active), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:not(:focus):not(:hover):not(:active) { + color: rgba(255, 255, 255, 0.7); +} + +treeview.view header button, filechooser stack.view scrolledwindow treeview.view header button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button, treeview.view header button:disabled, filechooser stack.view scrolledwindow treeview.view header button:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:disabled { + background-color: #2C2C2C; +} + +treeview.view header button:last-child, filechooser stack.view scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child { + border-right-style: none; +} + +treeview.view button.dnd, filechooser stack.view scrolledwindow treeview.view button.dnd, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view button.dnd, +treeview.view header.button.dnd, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header.button.dnd { + padding: 2px 6px; + border-style: none solid solid; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; + box-shadow: none; + background-color: #2C2C2C; + background-clip: border-box; + color: #3281ea; +} + +treeview.view acceleditor > label, filechooser stack.view scrolledwindow treeview.view acceleditor > label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view acceleditor > label { + background-color: #3281ea; +} + +/********* + * Menus * + *********/ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0; + background-color: #2C2C2C; + color: white; +} + +menubar:backdrop, +.menubar:backdrop { + background-color: #2C2C2C; + color: rgba(255, 255, 255, 0.7); +} + +.csd menubar, .csd +.menubar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +menubar > menuitem, +.menubar > menuitem { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + padding: 4px 8px; + color: rgba(255, 255, 255, 0.7); +} + +menubar > menuitem:hover, +.menubar > menuitem:hover { + transition: none; + background-color: alpha(currentColor, 0.1); + color: white; +} + +menubar > menuitem:disabled, +.menubar > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +menubar > menuitem label:disabled, +.menubar > menuitem label:disabled { + color: inherit; +} + +.background.popup { + background-color: transparent; +} + +menu, +.menu, +.context-menu { + margin: 8px 0; + padding: 8px 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.16); +} + +.csd menu, .csd +.menu, .csd +.context-menu { + border: none; + border-radius: 8px; +} + +menu menuitem, +.menu menuitem, +.context-menu menuitem { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-height: 20px; + min-width: 40px; + padding: 4px 8px; + color: white; + font: initial; + text-shadow: none; +} + +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + transition: none; + background-color: alpha(currentColor, 0.08); +} + +menu menuitem:disabled, +.menu menuitem:disabled, +.context-menu menuitem:disabled { + color: rgba(255, 255, 255, 0.5); +} + +menu menuitem arrow, +.menu menuitem arrow, +.context-menu menuitem arrow { + min-height: 16px; + min-width: 16px; +} + +menu menuitem arrow:dir(ltr), +.menu menuitem arrow:dir(ltr), +.context-menu menuitem arrow:dir(ltr) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + margin-left: 8px; +} + +menu menuitem arrow:dir(rtl), +.menu menuitem arrow:dir(rtl), +.context-menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 8px; +} + +menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), +.menu menuitem label:dir(rtl), +.menu menuitem label:dir(ltr), +.context-menu menuitem label:dir(rtl), +.context-menu menuitem label:dir(ltr) { + color: inherit; +} + +menu > arrow, +.menu > arrow, +.context-menu > arrow { + min-height: 16px; + min-width: 16px; + padding: 4px; + background-color: #3C3C3C; + color: rgba(255, 255, 255, 0.7); +} + +menu > arrow.top, +.menu > arrow.top, +.context-menu > arrow.top { + margin-top: -4px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 12px 12px 0 0; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +menu > arrow.bottom, +.menu > arrow.bottom, +.context-menu > arrow.bottom { + margin-top: 8px; + margin-bottom: -12px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0 0 12px 12px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +menu > arrow:hover, +.menu > arrow:hover, +.context-menu > arrow:hover { + background-image: image(alpha(currentColor, 0.08)); + color: white; +} + +menu > arrow:disabled, +.menu > arrow:disabled, +.context-menu > arrow:disabled { + border-color: transparent; + background-color: transparent; + color: transparent; +} + +menu separator, +.menu separator, +.context-menu separator { + margin: 4px 0; +} + +menuitem accelerator { + color: rgba(255, 255, 255, 0.7); +} + +menuitem:disabled accelerator { + color: rgba(255, 255, 255, 0.3); +} + +/************ + * Popovers * + ************/ +popover.background { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + padding: 2px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3C3C; +} + +popover.background:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12); +} + +popover.background, .csd popover.background { + border-style: solid; + border-width: 0; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); + border-radius: 12px; +} + +popover.background > stack { + margin: -4px; +} + +popover.background > toolbar { + margin: -2px; +} + +popover.background > list, +popover.background > .view, +filechooser stack.view scrolledwindow popover.background > treeview.view, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow popover.background > treeview.view, +popover.background > toolbar { + border-style: none; + box-shadow: none; + background-color: transparent; +} + +popover.background list, +popover.background .view:not(:selected), +popover.background window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow popover.background treeview.view:not(:selected), +popover.background toolbar { + background-color: #3C3C3C; +} + +popover.background.menu button, +popover.background button.model { + min-height: 32px; + padding: 0 8px; + border-radius: 12px; +} + +popover.background separator { + margin: 4px 0; +} + +popover.background list separator { + margin: 0; +} + +/************* + * Notebooks * + *************/ +frame > paned > notebook > header, +notebook.frame > header { + background-color: #242424; +} + +notebook:focus tab:checked { + box-shadow: none; +} + +notebook > header { + border-width: 1px; + border-color: rgba(0, 0, 0, 0.16); + background-color: #212121; + background-clip: border-box; +} + +notebook > header.top { + border-bottom-style: solid; +} + +notebook > header.top > tabs { + margin-bottom: -1px; + margin-top: 4px; +} + +notebook > header.top > tabs > tab { + border-radius: 12px 12px 0 0; + border-bottom: none; +} + +notebook > header.bottom { + border-top-style: solid; +} + +notebook > header.bottom > tabs { + margin-top: -1px; + margin-bottom: 4px; +} + +notebook > header.bottom > tabs > tab { + border-radius: 0 0 12px 12px; + border-top: none; +} + +notebook > header.left { + border-right-style: solid; +} + +notebook > header.left > tabs { + margin-left: 4px; + margin-right: -1px; +} + +notebook > header.left > tabs > tab { + border-radius: 12px 0 0 12px; + border-right: none; +} + +notebook > header.right { + border-left-style: solid; +} + +notebook > header.right > tabs { + margin-left: -1px; + margin-right: 4px; +} + +notebook > header.right > tabs > tab { + border-radius: 0 12px 12px 0; + border-left: none; +} + +notebook > header.top > tabs > arrow { + border-top-style: none; +} + +notebook > header.bottom > tabs > arrow { + border-bottom-style: none; +} + +notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + padding-left: 4px; + padding-right: 4px; +} + +notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + margin-left: -8px; + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + margin-right: -8px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +notebook > header.left > tabs > arrow { + border-left-style: none; +} + +notebook > header.right > tabs > arrow { + border-right-style: none; +} + +notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + padding-top: 4px; + padding-bottom: 4px; +} + +notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + margin-top: -8px; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + margin-bottom: -8px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 0; +} + +notebook > header tab { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + min-height: 24px; + min-width: 24px; + padding: 4px 12px; + border-width: 1px; + border-color: transparent; + border-style: solid; + outline: none; + background-clip: padding-box; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +notebook > header tab:hover, notebook > header tab > box:drop(active) { + background-color: rgba(0, 0, 0, 0.16); + color: white; +} + +notebook > header tab:disabled { + color: rgba(255, 255, 255, 0.3); +} + +notebook > header tab:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: #2C2C2C; + background-clip: padding-box; + border-color: rgba(0, 0, 0, 0.16); + color: white; +} + +notebook > header tab:checked:disabled { + color: rgba(255, 255, 255, 0.5); +} + +notebook > header tab:checked.reorderable-page { + background-color: #2C2C2C; +} + +notebook > header tab > box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: -4px -12px; + padding: 4px 12px; +} + +notebook > header tab button.flat:last-child { + margin-left: 4px; + margin-right: -8px; +} + +notebook > header tab button.flat:first-child { + margin-left: -8px; + margin-right: 4px; +} + +notebook > header.top tabs, notebook > header.bottom tabs { + padding-left: 8px; + padding-right: 8px; +} + +notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { + margin-left: 0; +} + +notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { + margin-right: 0; +} + +notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { + border-style: solid; +} + +notebook > header.left tabs, notebook > header.right tabs { + padding-top: 8px; + padding-bottom: 8px; +} + +notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { + margin-top: 0; +} + +notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { + margin-bottom: 0; +} + +notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { + border-style: solid; +} + +notebook > stack:not(:only-child) { + background-color: #2C2C2C; +} + +/************** + * Scrollbars * + **************/ +scrollbar { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: #2C2C2C; +} + +* { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; +} + +scrollbar.top { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +scrollbar.bottom { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +scrollbar.left { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +scrollbar.right { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +scrollbar slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 8px; + min-height: 8px; + border: 4px solid transparent; + border-radius: 9999px; + background-clip: padding-box; + background-color: rgba(255, 255, 255, 0.5); +} + +scrollbar slider:hover { + background-color: rgba(255, 255, 255, 0.7); +} + +scrollbar slider:active { + background-color: white; +} + +scrollbar slider:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.fine-tune slider { + min-width: 4px; + min-height: 4px; +} + +scrollbar.fine-tune.horizontal slider { + margin: 2px 0; +} + +scrollbar.fine-tune.vertical slider { + margin: 0 2px; +} + +scrollbar.overlay-indicator:not(.fine-tune) slider { + transition-property: background-color, min-height, min-width; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + background-color: transparent; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(44, 44, 44, 0.3); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 4px; + min-height: 4px; + margin: 3px; + border: 1px solid rgba(44, 44, 44, 0.3); + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.5); + background-clip: padding-box; + -gtk-icon-source: none; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled { + background-color: rgba(255, 255, 255, 0.3); +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + min-width: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { + min-width: 8px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + min-height: 24px; +} + +scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { + min-height: 8px; +} + +scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + background-color: rgba(60, 60, 60, 0.9); +} + +scrollbar.horizontal slider { + min-width: 24px; +} + +scrollbar.vertical slider { + min-height: 24px; +} + +scrollbar button { + min-width: 16px; + min-height: 16px; + padding: 0; + border-radius: 0; +} + +scrollbar.vertical button.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +scrollbar.vertical button.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); +} + +scrollbar.horizontal button.down { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); +} + +scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); +} + +/********** + * Switch * + **********/ +switch { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + padding: 0 2px; + border: 5px solid transparent; + border-radius: 9999px; + background-color: rgba(255, 255, 255, 0.3); + background-clip: padding-box; + font-size: 0; +} + +switch:checked { + background-color: rgba(50, 129, 234, 0.5); +} + +switch:disabled { + opacity: 0.5; +} + +switch image { + margin: -8px; + -gtk-icon-transform: scale(0); +} + +switch slider { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 20px; + min-height: 20px; + margin: -3px -2px; + border-radius: 9999px; + outline: none; + box-shadow: 0 0 0 10px transparent, 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); + background-color: #3C3C3C; +} + +switch:focus slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +switch:hover slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.08), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +switch:focus:hover slider { + box-shadow: 0 0 0 10px alpha(currentColor, 0.16), 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +switch:checked slider { + background-color: #3281ea; + color: #3281ea; +} + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list), +.content-view .tile check:not(list) { + min-height: 40px; + min-width: 40px; + margin: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + background-image: none; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +.view.content-view.check:not(list):hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list):hover, .view.content-view.check:not(list):active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list):active, +.content-view .tile check:not(list):hover, +.content-view .tile check:not(list):active { + -gtk-icon-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 4px 3px rgba(0, 0, 0, 0.14), 0 1px 6px rgba(0, 0, 0, 0.12); +} + +.view.content-view.check:not(list), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list), +.content-view .tile check:not(list) { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked-dark.png"), url("assets/selectionmode-checkbox-unchecked-dark@2.png")); +} + +.view.content-view.check:not(list):checked, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.content-view.check.view:not(list):checked, +.content-view .tile check:not(list):checked { + -gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png")); +} + +checkbutton, +radiobutton { + outline: none; +} + +checkbutton.text-button, +radiobutton.text-button { + padding: 2px; +} + +checkbutton.text-button label:not(:only-child), +radiobutton.text-button label:not(:only-child) { + margin: 0 4px; +} + +check, +radio { + min-height: 24px; + min-width: 24px; + margin: -8px; + padding: 8px; +} + +check:checked, check:indeterminate, +radio:checked, +radio:indeterminate { + color: #81C995; +} + +check:checked:disabled, check:indeterminate:disabled, +radio:checked:disabled, +radio:indeterminate:disabled { + color: rgba(255, 255, 255, 0.3); +} + +check:not(:hover):focus, +radio:not(:hover):focus { + box-shadow: inset 0 0 0 9999px transparent; +} + +popover modelbutton.flat check, popover modelbutton.flat check:focus, popover modelbutton.flat check:hover, popover modelbutton.flat check:focus:hover, popover modelbutton.flat check:active, popover modelbutton.flat check:disabled, popover modelbutton.flat +radio, popover modelbutton.flat +radio:focus, popover modelbutton.flat +radio:hover, popover modelbutton.flat +radio:focus:hover, popover modelbutton.flat +radio:active, popover modelbutton.flat +radio:disabled { + transition: none; + box-shadow: none; + background-image: none; +} + +popover modelbutton.flat check:not(:checked):not(:indeterminate):not(:disabled), popover modelbutton.flat +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(255, 255, 255, 0.7); +} + +popover modelbutton.flat check.left:dir(rtl), popover modelbutton.flat +radio.left:dir(rtl) { + margin-left: -12px; + margin-right: -4px; +} + +popover modelbutton.flat check.right:dir(ltr), popover modelbutton.flat +radio.right:dir(ltr) { + margin-left: -4px; + margin-right: -12px; +} + +menu menuitem check, menu menuitem +radio { + transition: none; + margin: 0; + padding: 0; +} + +menu menuitem check:dir(ltr), menu menuitem +radio:dir(ltr) { + margin-right: 8px; +} + +menu menuitem check:dir(rtl), menu menuitem +radio:dir(rtl) { + margin-left: 8px; +} + +menu menuitem check:not(:checked):not(:indeterminate):not(:disabled), menu menuitem +radio:not(:checked):not(:indeterminate):not(:disabled) { + color: rgba(255, 255, 255, 0.7); +} + +menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem +radio, menu menuitem +radio:hover, menu menuitem +radio:disabled { + box-shadow: none; +} + + +check { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg")); +} + + +check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg")); +} + + +check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg")); +} + + +radio { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg")); + border-image-slice: 20; + border-image-width: 20px; +} + + +radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")); +} + + +radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check, +menu menuitem check { + min-height: 16px; + min-width: 16px; + border-radius: 12px; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check:checked, +menu menuitem check:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > checkbutton > check:indeterminate, +menu menuitem check:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio, +menu menuitem radio { + min-height: 16px; + min-width: 16px; + border-image: none; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio:checked, +menu menuitem radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg")); +} + +#MozillaGtkWidget > widget > radiobutton > radio:indeterminate, +menu menuitem radio:indeterminate { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg")); +} + +treeview.view check, filechooser stack.view scrolledwindow treeview.view check, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check, +treeview.view radio, +filechooser stack.view scrolledwindow treeview.view radio, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio { + padding: 0; +} + +treeview.view check:hover, filechooser stack.view scrolledwindow treeview.view check:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:hover, treeview.view check:selected, filechooser stack.view scrolledwindow treeview.view check:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:selected, +treeview.view radio:hover, +filechooser stack.view scrolledwindow treeview.view radio:hover, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:hover, +treeview.view radio:selected, +filechooser stack.view scrolledwindow treeview.view radio:selected, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:selected { + box-shadow: none; + background-color: transparent; +} + +treeview.view check, filechooser stack.view scrolledwindow treeview.view check, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check, +treeview.view radio, +filechooser stack.view scrolledwindow treeview.view radio, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio { + color: rgba(255, 255, 255, 0.7); +} + +treeview.view check:hover, filechooser stack.view scrolledwindow treeview.view check:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:hover, treeview.view check:active, filechooser stack.view scrolledwindow treeview.view check:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:active, +treeview.view radio:hover, +filechooser stack.view scrolledwindow treeview.view radio:hover, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:hover, +treeview.view radio:active, +filechooser stack.view scrolledwindow treeview.view radio:active, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:active { + color: white; +} + +treeview.view check:disabled, filechooser stack.view scrolledwindow treeview.view check:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:disabled, +treeview.view radio:disabled, +filechooser stack.view scrolledwindow treeview.view radio:disabled, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:disabled { + color: rgba(255, 255, 255, 0.3); +} + +treeview.view check:checked, filechooser stack.view scrolledwindow treeview.view check:checked, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:checked, treeview.view check:indeterminate, filechooser stack.view scrolledwindow treeview.view check:indeterminate, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:indeterminate, +treeview.view radio:checked, +filechooser stack.view scrolledwindow treeview.view radio:checked, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:checked, +treeview.view radio:indeterminate, +filechooser stack.view scrolledwindow treeview.view radio:indeterminate, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:indeterminate { + color: #81C995; +} + +treeview.view check:checked:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view check:indeterminate:disabled, +treeview.view radio:checked:disabled, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:checked:disabled, +treeview.view radio:indeterminate:disabled, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:indeterminate:disabled { + color: rgba(255, 255, 255, 0.3); +} + + +treeview.view radio:checked, +filechooser stack.view scrolledwindow treeview.view radio:checked, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view radio:checked { + -gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg")); + border-image: none; +} + +/************ + * GtkScale * + ************/ +scale { + min-height: 2px; + min-width: 2px; +} + +scale.horizontal { + padding: 15px 12px; +} + +scale.vertical { + padding: 12px 15px; +} + +scale slider { + min-height: 32px; + min-width: 32px; + margin: -15px; +} + +scale.fine-tune.horizontal { + min-height: 4px; + padding-top: 14px; + padding-bottom: 14px; +} + +scale.fine-tune.vertical { + min-width: 4px; + padding-left: 14px; + padding-right: 14px; +} + +scale.fine-tune slider { + margin: -14px; +} + +scale trough { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + background-color: rgba(255, 255, 255, 0.3); +} + +scale trough:disabled { + background-color: rgba(255, 255, 255, 0.12); +} + +scale highlight { + transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1); + background-image: image(#3281ea); +} + +scale highlight:disabled { + background-color: #212121; + background-image: image(rgba(255, 255, 255, 0.3)); +} + +scale fill { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: rgba(255, 255, 255, 0.3); +} + +scale fill:disabled { + background-color: transparent; +} + +scale slider { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + background-repeat: no-repeat; + background-position: center; + background-size: auto, 1000% 1000%; + border-radius: 50%; + color: #3281ea; +} + +scale slider { + background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale slider:disabled { + background-image: -gtk-scaled(url("assets/scale-slider-disabled-dark.png"), url("assets/scale-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale slider:focus { + background-color: alpha(currentColor, 0.08); +} + +scale slider:hover { + background-color: alpha(currentColor, 0.08); +} + +scale slider:focus:hover { + background-color: alpha(currentColor, 0.16); +} + +scale slider:active { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + background-color: alpha(currentColor, 0.08); + background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: auto, 0% 0%; +} + +scale marks, +scale value { + color: rgba(255, 255, 255, 0.7); +} + +scale indicator { + background-color: rgba(255, 255, 255, 0.3); + color: transparent; +} + +scale.horizontal marks.top { + margin-bottom: 7px; + margin-top: -15px; +} + +scale.horizontal.fine-tune marks.top { + margin-bottom: 6px; + margin-top: -14px; +} + +scale.horizontal marks.bottom { + margin-top: 7px; + margin-bottom: -15px; +} + +scale.horizontal.fine-tune marks.bottom { + margin-top: 6px; + margin-bottom: -14px; +} + +scale.vertical marks.top { + margin-right: 7px; + margin-left: -15px; +} + +scale.vertical.fine-tune marks.top { + margin-right: 6px; + margin-left: -14px; +} + +scale.vertical marks.bottom { + margin-left: 7px; + margin-right: -15px; +} + +scale.vertical.fine-tune marks.bottom { + margin-left: 6px; + margin-right: -14px; +} + +scale.horizontal indicator { + min-height: 8px; + min-width: 1px; +} + +scale.vertical indicator { + min-height: 1px; + min-width: 8px; +} + +scale.horizontal.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled-dark.png"), url("assets/scale-horz-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-before:not(.marks-after) slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled-dark.png"), url("assets/scale-horz-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.horizontal.marks-after:not(.marks-before) slider:active { + background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled-dark.png"), url("assets/scale-vert-marks-before-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-before:not(.marks-after) slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:disabled { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled-dark.png"), url("assets/scale-vert-marks-after-slider-disabled-dark@2.png")), radial-gradient(circle, transparent 10%, transparent 0%); +} + +scale.vertical.marks-after:not(.marks-before) slider:active { + background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); +} + +scale.color { + min-height: 0; + min-width: 0; +} + +scale.color.horizontal { + padding: 0 0 12px 0; +} + +scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) { + margin-bottom: -24px; + margin-top: 8px; +} + +scale.color.vertical:dir(ltr) { + padding: 0 0 0 12px; +} + +scale.color.vertical:dir(ltr) slider { + margin-left: -24px; + margin-right: 8px; +} + +scale.color.vertical:dir(rtl) { + padding: 0 12px 0 0; +} + +scale.color.vertical:dir(rtl) slider { + margin-right: -24px; + margin-left: 8px; +} + +/***************** + * Progress bars * + *****************/ +progressbar { + color: rgba(255, 255, 255, 0.7); + font-size: smaller; +} + +progressbar.horizontal trough, +progressbar.horizontal progress { + min-height: 6px; +} + +progressbar.vertical trough, +progressbar.vertical progress { + min-width: 6px; +} + +progressbar trough { + border-radius: 12px; + background-color: rgba(255, 255, 255, 0.12); +} + +progressbar progress { + border-radius: 12px; + background-color: #3281ea; +} + +progressbar trough.empty progress { + all: unset; +} + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 6px; +} + +levelbar.horizontal.discrete block { + min-width: 32px; +} + +levelbar.horizontal.discrete block:not(:last-child) { + margin-right: 2px; +} + +levelbar.vertical block { + min-width: 6px; +} + +levelbar.vertical.discrete block { + min-height: 32px; +} + +levelbar.vertical.discrete block:not(:last-child) { + margin-bottom: 2px; +} + +levelbar trough { + border-radius: 12px; +} + +levelbar block.low { + background-color: #FDD633; +} + +levelbar block.high, levelbar block:not(.empty) { + background-color: #3281ea; +} + +levelbar block.full { + background-color: #81C995; +} + +levelbar block.empty { + background-color: rgba(255, 255, 255, 0.12); +} + +/**************** + * Print dialog * +*****************/ +printdialog paper { + padding: 0; + border: 1px solid rgba(0, 0, 0, 0.16); + background-color: #2C2C2C; + color: white; +} + +printdialog .dialog-action-box { + margin: 12px; +} + +/********** + * Frames * + **********/ +frame > border, +.frame { + margin: 0; + padding: 0; + border: 1px solid rgba(0, 0, 0, 0.16); + border-radius: 0; + box-shadow: none; +} + +frame > border.flat, +.frame.flat, +frame.flat > border { + border-style: none; +} + +actionbar > revealer > box { + padding: 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + background-color: #2C2C2C; + background-clip: border-box; +} + +.background.csd revealer > actionbar > revealer > box { + border-radius: 0 0 18px 18px; +} + +stack scrolledwindow.frame { + border-radius: 12px; +} + +scrolledwindow viewport.frame { + border-style: none; +} + +scrolledwindow viewport.frame.view { + border-radius: 12px; +} + +overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(50, 129, 234, 0.24)), to(transparent)); + 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.75, to(rgba(50, 129, 234, 0.24)), to(transparent)); + 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.75, to(rgba(50, 129, 234, 0.24)), to(transparent)); + 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.75, to(rgba(50, 129, 234, 0.24)), to(transparent)); + 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, transparent 50%, rgba(255, 255, 255, 0.3) 50%); + padding-top: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left top; + margin: 0 4px; +} + +undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, transparent 50%, rgba(255, 255, 255, 0.3) 50%); + padding-bottom: 1px; + background-size: 12px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: left bottom; + margin: 0 4px; +} + +undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.3) 50%); + padding-left: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left top; + margin: 0 4px; + margin: 4px 0; +} + +undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.3) 50%); + padding-right: 1px; + background-size: 1px 12px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right top; + margin: 0 4px; + margin: 4px 0; +} + +junction { + border-style: solid none none solid; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #2C2C2C; +} + +junction:dir(rtl) { + border-style: solid solid none none; +} + +separator { + min-width: 1px; + min-height: 1px; + background-color: rgba(255, 255, 255, 0.12); +} + + +button.font separator, +button.file separator, stacksidebar.sidebar + separator.vertical, +stacksidebar.sidebar separator.horizontal, .tweak-categories separator, preferences stacksidebar.sidebar list separator { + min-width: 0; + min-height: 0; + background-color: transparent; +} + +/********* + * Lists * + *********/ +list { + border-color: rgba(0, 0, 0, 0.16); + background-color: #2C2C2C; +} + +list row { + padding: 2px; +} + +row.activatable, treeview.view header button, filechooser stack.view scrolledwindow treeview.view header button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button, .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + outline: none; + box-shadow: inset 0 0 0 9999px transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 1000% 1000%; +} + +row.activatable:focus, treeview.view header button:focus, filechooser stack.view scrolledwindow treeview.view header button:focus, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:focus, .budgie-popover.budgie-menu button.flat:focus:not(.image-button):not(.indicator-item) { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +row.activatable:hover, treeview.view header button:hover, filechooser stack.view scrolledwindow treeview.view header button:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:hover, +treeview.view header button:drop(active), +filechooser stack.view scrolledwindow treeview.view header button:drop(active), +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:drop(active), placessidebar.sidebar row.activatable:drop(active), placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:drop(active), .budgie-popover.budgie-menu button.flat:hover:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu toolbar button:not(.image-button):not(.indicator-item):drop(active), toolbar .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .titlebar button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .titlebar .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .budgie-popover.budgie-menu popover.background.menu button:not(.image-button):not(.indicator-item):drop(active), popover.background.menu .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), +.budgie-popover.budgie-menu popover.background button.model:not(.image-button):not(.indicator-item):drop(active), popover.background .budgie-popover.budgie-menu button.model:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu actionbar > revealer > box button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), actionbar > revealer > box .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .budgie-popover.budgie-menu .app-notification button:not(.image-button):not(.indicator-item):drop(active), .app-notification .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box button:not(.image-button):not(.indicator-item):drop(active), messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu filechooser #pathbarbox > stack > box > button:not(.image-button):not(.indicator-item):drop(active), filechooser .budgie-popover.budgie-menu #pathbarbox > stack > box > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu infobar.info button:not(.image-button):not(.indicator-item):drop(active), infobar.info .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu infobar.question button:not(.image-button):not(.indicator-item):drop(active), infobar.question .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .lock-dialog button:not(.image-button):not(.indicator-item):drop(active), .lock-dialog .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu #buttonbox_frame button:not(.image-button):not(.indicator-item):drop(active), #buttonbox_frame .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .nemo-window .toolbar button:not(.image-button):not(.indicator-item):drop(active), .nemo-window .toolbar .budgie-popover.budgie-menu button:not(.image-button):not(.indicator-item):drop(active), +.budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item):drop(active) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms, background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +row.activatable.has-open-popup, treeview.view header button.has-open-popup, filechooser stack.view scrolledwindow treeview.view header button.has-open-popup, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button.has-open-popup, .budgie-popover.budgie-menu button.has-open-popup.flat:not(.image-button):not(.indicator-item), row.activatable:active, treeview.view header button:active, filechooser stack.view scrolledwindow treeview.view header button:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:active, .budgie-popover.budgie-menu button.flat:active:not(.image-button):not(.indicator-item) { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + animation: ripple 225ms cubic-bezier(0, 0, 0.2, 1) forwards; + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); + background-image: radial-gradient(circle, alpha(currentColor, 0.12) 10%, transparent 0%); + background-size: 0% 0%; +} + +row:selected { + color: inherit; +} + +row:selected image, +row:selected label { + color: white; +} + +row:selected button image, +row:selected button label { + color: inherit; +} + +row:selected:disabled image, +row:selected:disabled label { + color: rgba(255, 255, 255, 0.5); +} + +/********************* + * App Notifications * + *********************/ +.app-notification { + margin: 8px; +} + +.app-notification button.text-button:not(:disabled) { + color: #3281ea; +} + +.app-notification.frame, +.app-notification border { + border-style: none; +} + +/************* + * Expanders * + *************/ +expander title > arrow { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -gtk-icon-transform: rotate(-90deg); + color: rgba(255, 255, 255, 0.7); +} + +expander title > arrow:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +expander title > arrow:checked { + -gtk-icon-transform: unset; +} + +expander title > arrow:hover, expander title > arrow:active { + color: white; +} + +expander title > arrow:disabled { + color: rgba(255, 255, 255, 0.3); +} + +/************ + * Calendar * + ************/ +calendar { + padding: 1px; + border: 1px solid rgba(0, 0, 0, 0.16); + color: white; +} + +calendar:disabled { + color: rgba(255, 255, 255, 0.5); +} + +calendar:selected { + border-radius: 13px; +} + +calendar.header { + border-style: none none solid; + border-color: rgba(255, 255, 255, 0.12); + border-radius: 0; +} + +calendar.highlight { + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +calendar:indeterminate { + color: rgba(255, 255, 255, 0.3); +} + +/*********** + * Dialogs * + ***********/ +messagedialog.background { + background-color: #3C3C3C; +} + +messagedialog .titlebar { + min-height: 24px; + border-style: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; + color: white; +} + +messagedialog .titlebar:backdrop { + background-color: #3C3C3C; + color: rgba(255, 255, 255, 0.7); +} + +messagedialog.csd.background { + border-bottom-left-radius: 18px; + border-bottom-right-radius: 18px; +} + +messagedialog.csd .dialog-action-box { + margin-top: -4px; +} + +messagedialog.csd .dialog-action-box button:not(:last-child) { + margin-right: 4px; +} + +messagedialog.csd .dialog-action-box button:not(:disabled) { + color: #3281ea; +} + +messagedialog.csd .dialog-action-box button.destructive-action:not(:disabled) { + color: #F28B82; +} + +filechooser .dialog-action-box { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +filechooser #pathbarbox { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #212121; +} + +filechooser stack.view { + background-color: transparent; +} + +filechooser stack.view scrolledwindow { + background-color: #2C2C2C; + border-radius: 0 0 18px 18px; +} + +filechooser stack.view scrolledwindow treeview.view, filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view { + background-color: transparent; +} + +.csd filechooser placessidebar { + background: none; + border-bottom-left-radius: 18px; +} + +/*********** + * Sidebar * + ***********/ +.sidebar { + border-style: none; + background-color: #242424; +} + +stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:not(separator):dir(ltr), .sidebar:not(separator).left, .sidebar:not(separator).left:dir(rtl) { + border-right: 1px solid rgba(255, 255, 255, 0.12); + border-left-style: none; +} + +stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:not(separator):dir(rtl), .sidebar:not(separator).right { + border-left: 1px solid rgba(255, 255, 255, 0.12); + 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.sidebar list { + padding: 4px; + background-color: #242424; +} + +stacksidebar.sidebar row { + min-height: 32px; + padding: 0 2px; + border-radius: 6px; +} + +stacksidebar.sidebar row:selected { + background-color: alpha(currentColor, 0.1); + color: #3281ea; + font-weight: 500; +} + +stacksidebar.sidebar row + row { + margin-top: 4px; +} + +stacksidebar.sidebar row > label { + padding-left: 6px; + padding-right: 6px; + color: inherit; +} + +separator.sidebar { + background-color: rgba(255, 255, 255, 0.12); +} + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); + color: rgba(255, 255, 255, 0.7); +} + +row image.sidebar-icon:disabled { + color: rgba(255, 255, 255, 0.3); +} + +placessidebar.sidebar > viewport.frame { + border-style: none; +} + +placessidebar.sidebar list { + padding: 1px 0 4px; +} + +placessidebar.sidebar row { + min-height: 32px; + margin: -1px 4px -1px 0; + padding: 0; + border-radius: 0 1000px 1000px 0; +} + +placessidebar.sidebar row > revealer { + padding: 0 8px 0 16px; +} + +placessidebar.sidebar row:selected { + background-color: alpha(currentColor, 0.1); + color: #3281ea; + font-weight: 500; +} + +placessidebar.sidebar row:selected image.sidebar-icon { + color: #3281ea; +} + +placessidebar.sidebar row:disabled { + color: rgba(255, 255, 255, 0.5); +} + +placessidebar.sidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; +} + +placessidebar.sidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; +} + +placessidebar.sidebar row label.sidebar-label { + color: inherit; +} + +placessidebar.sidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; +} + +placessidebar.sidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; +} + +placessidebar.sidebar row.sidebar-placeholder-row { + background-color: alpha(currentColor, 0.08); +} + +placessidebar.sidebar row.sidebar-new-bookmark-row { + color: #3281ea; +} + +placessidebar.sidebar row.sidebar-new-bookmark-row image.sidebar-icon { + color: #3281ea; +} + +placesview .server-list-button > image { + -gtk-icon-transform: rotate(0turn); +} + +placesview .server-list-button:checked > image { + -gtk-icon-transform: rotate(-0.5turn); +} + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; +} + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(rgba(255, 255, 255, 0.12)); + background-size: 1px 1px; + background-clip: content-box; +} + +paned > separator.wide { + min-width: 6px; + min-height: 6px; + background-color: #212121; + background-image: image(rgba(255, 255, 255, 0.12)), image(rgba(255, 255, 255, 0.12)); + 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; +} + +/************** + * GtkInfoBar * + **************/ +infobar { + border-style: none; +} + +infobar.info, infobar.question { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #2C2C2C; +} + +infobar.info button.text-button:not(:disabled), infobar.question button.text-button:not(:disabled) { + color: #3281ea; +} + +infobar.warning { + background-color: #FDD633; + color: rgba(0, 0, 0, 0.87); +} + +infobar.warning *:link, infobar.warning button.link:link { + color: rgba(0, 0, 0, 0.87); +} + +infobar.error { + background-color: #F28B82; + color: rgba(0, 0, 0, 0.87); +} + +infobar.error *:link, infobar.error button.link:link { + color: rgba(0, 0, 0, 0.87); +} + +/************ + * Tooltips * + ************/ +tooltip { + border-radius: 6px; + box-shadow: none; +} + +tooltip.background { + background-color: rgba(97, 97, 97, 0.9); + color: white; +} + +tooltip.background.csd { + border-radius: 12px; +} + +tooltip decoration { + background-color: transparent; +} + +tooltip > box { + margin: -6px; + min-height: 24px; + padding: 4px 8px; +} + +/***************** + * Color Chooser * + *****************/ +colorswatch.top { + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} + +colorswatch.top overlay { + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} + +colorswatch.bottom { + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +colorswatch.bottom overlay { + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; +} + +colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; +} + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 8px; + border-bottom-right-radius: 8px; +} + +colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 8px; + border-bottom-right-radius: 8px; +} + +colorswatch.dark { + color: white; +} + +colorswatch.light { + color: rgba(0, 0, 0, 0.87); +} + +colorswatch#add-color-button { + border-radius: 8px 8px 0 0; + color: white; +} + +colorswatch#add-color-button:only-child { + border-radius: 8px; +} + +colorswatch#add-color-button overlay { + background-color: #3C3C3C; +} + +colorswatch:disabled { + opacity: 0.5; +} + +colorswatch:disabled overlay { + box-shadow: none; +} + +colorswatch#editor-color-sample { + border-radius: 8px; +} + +colorswatch#editor-color-sample overlay { + border-radius: 8px; +} + +colorchooser .popover.osd { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 12px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; +} + +colorchooser .popover.osd:backdrop { + box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1); +} + +/******** + * Misc * + ********/ +.content-view { + background-color: #212121; +} + +/********************** + * Window Decorations * + **********************/ +decoration { + transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 18px; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent; + margin: 8px; +} + +decoration:backdrop { + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent; +} + +.maximized decoration, +.fullscreen decoration, +.tiled decoration, +.tiled-top decoration, +.tiled-right decoration, +.tiled-bottom decoration, +.tiled-left decoration { + border-radius: 0; +} + +.popup decoration { + box-shadow: none; +} + +.ssd decoration { + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16); +} + +.csd.popup decoration { + border-radius: 12px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); +} + +tooltip.csd decoration { + border-radius: 12px; + box-shadow: none; +} + +messagedialog.csd decoration { + border-radius: 18px; +} + +.solid-csd decoration { + margin: 0; + padding: 2px; + border-radius: 0; + box-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #2C2C2C; +} + +.solid-csd decoration:backdrop { + background-color: #2C2C2C; +} + +modelbutton.flat:selected, +.menuitem.button.flat:selected, row:selected, calendar:selected, box.vertical > widget > widget:selected, .budgie-popover.budgie-menu button.flat:checked:not(.image-button):not(.indicator-item), calendar.raven-calendar:selected, XfdesktopIconView.view:active { + background-color: alpha(currentColor, 0.06); +} + +flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window notebook :not(treeview).view selection, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview) selection, filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview) selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook .view:selected:not(treeview), .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:selected:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected { + color: #3281ea; + background-color: rgba(50, 129, 234, 0.2); +} + +textview text selection:focus, textview text selection, label selection, spinbutton:not(.vertical) selection, spinbutton.vertical selection, +entry selection, .nemo-window .nemo-window-pane widget.entry:selected { + color: white; + background-color: #3281ea; +} + +.monospace { + font-family: monospace; +} + +/********************** + * Touch Copy & Paste * + **********************/ +cursor-handle { + color: #3281ea; + -gtk-icon-source: -gtk-recolor(url("assets/scalable/cursor-handle-symbolic.svg")); +} + +cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + -gtk-icon-transform: rotate(90deg); +} + +cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + -gtk-icon-transform: unset; +} + +cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + padding-top: 6px; + -gtk-icon-transform: rotate(45deg); +} + +.context-menu { + font: initial; +} + +.keycap { + min-width: 12px; + min-height: 26px; + margin-top: 2px; + padding-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + border: solid 1px rgba(0, 0, 0, 0.16); + border-radius: 13px; + box-shadow: inset 0 -2px rgba(0, 0, 0, 0.16); + background-color: #3C3C3C; + color: white; + font-size: smaller; +} + +:not(decoration):not(window):drop(active) { + caret-color: #3281ea; +} + +stackswitcher button.text-button { + min-width: 100px; +} + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; +} + +/************* + * App Icons * + *************/ +/********* + * Emoji * + *********/ +popover.emoji-picker { + padding: 0; +} + +popover.emoji-picker entry { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-image: none; + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +popover.emoji-picker scrolledwindow { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +button.emoji-section { + margin: 4px; +} + +button.emoji-section:checked { + color: #3281ea; +} + +button.emoji-section:not(:last-child) { + margin-right: 0; +} + +popover.emoji-picker .emoji { + min-width: 3em; + min-height: 3em; + padding: 0 8px; +} + +popover.emoji-picker .emoji widget { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + border-radius: 12px; +} + +popover.emoji-picker .emoji widget:hover { + background-color: alpha(currentColor, 0.08); +} + +popover.emoji-completion { + padding: 8px 0; +} + +popover.emoji-completion arrow { + border: none; + background: none; +} + +popover.emoji-completion .emoji-completion-row { + min-height: 28px; + padding: 0 12px; +} + +popover.emoji-completion .emoji:hover { + background-color: alpha(currentColor, 0.08); +} + +/************ + * Nautilus * + ************/ +.nautilus-window.csd { + background-color: #2C2C2C; + border-radius: 0 0 18px 18px; +} + +.nautilus-window.csd headerbar { + padding-left: 12px; + box-shadow: none; +} + +.nautilus-window.csd placessidebar { + background: none; + border-radius: 18px; +} + +.nautilus-window.csd placessidebar > viewport.frame { + margin: 8px 0 12px 12px; + border-radius: 12px; + background-color: rgba(50, 129, 234, 0.08); +} + +.nautilus-window.csd placessidebar > viewport.frame > list { + padding: 12px 0 12px 0; + background: none; + border-radius: 12px; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) { + border-radius: 0; + margin: -8px -8px -8px 0; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item), .nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:hover, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:hover, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:hover, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:hover, +.nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:drop(active), treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), +.nautilus-window.csd filechooser stack.view scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active), filechooser stack.view scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), +.nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd placessidebar.sidebar placessidebar > viewport.frame > list > row.activatable:drop(active), placessidebar.sidebar .nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:drop(active), .nautilus-window.csd placessidebar.sidebar treeview.view header placessidebar > viewport.frame > list > button:drop(active), placessidebar.sidebar treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd treeview.view header placessidebar.sidebar placessidebar > viewport.frame > list > button:drop(active), treeview.view header placessidebar.sidebar .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active), placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar.sidebar placessidebar > viewport.frame > list > button:drop(active), .nautilus-window.csd .budgie-popover.budgie-menu placessidebar.sidebar placessidebar > viewport.frame > list > button.flat:drop(active):not(.image-button):not(.indicator-item), .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:hover:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:hover:not(.image-button):not(.indicator-item), .nautilus-window.csd .budgie-popover.budgie-menu toolbar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu toolbar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd toolbar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), toolbar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu .titlebar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .budgie-popover.budgie-menu .titlebar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .nautilus-window.csd .titlebar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .titlebar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .nautilus-window.csd .budgie-popover.budgie-menu popover.background.menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu popover.background.menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd popover.background.menu .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), popover.background.menu .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), +.nautilus-window.csd .budgie-popover.budgie-menu popover.background placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu popover.background .nautilus-window.csd placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd popover.background .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active), popover.background .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu actionbar > revealer > box placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .budgie-popover.budgie-menu actionbar > revealer > box .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .nautilus-window.csd actionbar > revealer > box .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), actionbar > revealer > box .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action), .nautilus-window.csd .budgie-popover.budgie-menu .app-notification placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .app-notification .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .app-notification .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .app-notification .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu infobar.info placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu infobar.info .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd infobar.info .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), infobar.info .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu infobar.question placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu infobar.question .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd infobar.question .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), infobar.question .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu .lock-dialog placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .lock-dialog .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .lock-dialog .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .lock-dialog .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu #buttonbox_frame placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu #buttonbox_frame .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd #buttonbox_frame .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), #buttonbox_frame .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .budgie-popover.budgie-menu .nemo-window .toolbar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .nemo-window .toolbar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd .nemo-window .toolbar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), .nemo-window .toolbar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active), +.nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item):drop(active), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item):drop(active), .nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:active, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:active, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:active, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:active, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:active, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:active:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:active:not(.image-button):not(.indicator-item) { + background: none; + box-shadow: none; + animation: none; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:hover label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:hover label.sidebar-label, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:hover label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:hover label.sidebar-label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:hover label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd filechooser stack.view scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, filechooser stack.view scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd placessidebar.sidebar placessidebar > viewport.frame > list > row.activatable:drop(active) label.sidebar-label, placessidebar.sidebar .nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:drop(active) label.sidebar-label, .nautilus-window.csd placessidebar.sidebar treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, placessidebar.sidebar treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar.sidebar placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, treeview.view header placessidebar.sidebar .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, placessidebar.sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar.sidebar placessidebar > viewport.frame > list > button:drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar.sidebar placessidebar > viewport.frame > list > button.flat:drop(active):not(.image-button):not(.indicator-item) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:hover:not(.image-button):not(.indicator-item) label.sidebar-label, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:hover:not(.image-button):not(.indicator-item) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu toolbar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu toolbar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd toolbar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, toolbar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu .titlebar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .budgie-popover.budgie-menu .titlebar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .nautilus-window.csd .titlebar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .titlebar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu popover.background.menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu popover.background.menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd popover.background.menu .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, popover.background.menu .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu popover.background placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu popover.background .nautilus-window.csd placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd popover.background .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, popover.background .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.model:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu actionbar > revealer > box placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .budgie-popover.budgie-menu actionbar > revealer > box .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .nautilus-window.csd actionbar > revealer > box .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, actionbar > revealer > box .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active):not(.suggested-action):not(.destructive-action) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu .app-notification placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu .app-notification .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .app-notification .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .app-notification .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu messagedialog.csd .dialog-action-box .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, messagedialog.csd .dialog-action-box .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu infobar.info placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu infobar.info .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd infobar.info .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, infobar.info .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu infobar.question placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu infobar.question .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd infobar.question .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, infobar.question .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu .lock-dialog placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu .lock-dialog .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .lock-dialog .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .lock-dialog .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu #buttonbox_frame placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu #buttonbox_frame .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd #buttonbox_frame .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, #buttonbox_frame .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu .nemo-window .toolbar placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu .nemo-window .toolbar .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .nemo-window .toolbar .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nemo-window .toolbar .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item):drop(active) label.sidebar-label { + color: #3281ea; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:selected, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:selected, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) { + background-color: transparent; + font-weight: 600; + font-size: bigger; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:selected image.sidebar-icon, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:selected image.sidebar-icon, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected image.sidebar-icon, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:selected image.sidebar-icon, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected image.sidebar-icon, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) image.sidebar-icon, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) image.sidebar-icon { + color: #3281ea; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:selected label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:selected label.sidebar-label, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:selected label.sidebar-label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:selected label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) label.sidebar-label, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:selected:not(.image-button):not(.indicator-item) label.sidebar-label { + background-color: #2C2C2C; + border-image-width: 10px 10px 10px 18px; + border-image-slice: 10 10 10 18; + border-image-repeat: stretch; + border-image-source: -gtk-scaled(url("assets/row-selected-dark.png"), url("assets/row-selected-dark@2.png")); +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable:disabled, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button:disabled, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:disabled, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button:disabled, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button:disabled, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:disabled:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:disabled:not(.image-button):not(.indicator-item) { + color: rgba(255, 255, 255, 0.5); +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable image.sidebar-icon, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button image.sidebar-icon, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button image.sidebar-icon, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button image.sidebar-icon, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button image.sidebar-icon, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) image.sidebar-icon, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) image.sidebar-icon { + padding-right: 8px; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable label.sidebar-label, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button label.sidebar-label, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button label.sidebar-label, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button label.sidebar-label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button label.sidebar-label, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) label.sidebar-label, .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.flat:not(.image-button):not(.indicator-item) label.sidebar-label { + color: inherit; + min-height: 54px; + padding: 0 0 0 14px; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > row.activatable.sidebar-placeholder-row, .nautilus-window.csd treeview.view header placessidebar > viewport.frame > list > button.sidebar-placeholder-row, treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button.sidebar-placeholder-row, .nautilus-window.csd window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header placessidebar > viewport.frame > list > button.sidebar-placeholder-row, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .nautilus-window.csd placessidebar > viewport.frame > list > button.sidebar-placeholder-row, .nautilus-window.csd .budgie-popover.budgie-menu placessidebar > viewport.frame > list > button.sidebar-placeholder-row.flat:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .nautilus-window.csd placessidebar > viewport.frame > list > button.sidebar-placeholder-row.flat:not(.image-button):not(.indicator-item) { + background-color: transparent; +} + +.nautilus-window.csd placessidebar > viewport.frame > list > separator { + background: none; +} + +.nautilus-window.csd placessidebar scrollbar { + background: none; + border: none; +} + +.nautilus-window.csd placessidebar > undershoot.top { + background: none; +} + +.nautilus-window.csd placessidebar > undershoot.bottom { + background: none; +} + +.nautilus-window.csd .nautilus-list-view { + background-color: #2C2C2C; + border-radius: 0 0 18px 18px; +} + +.nautilus-window.csd .nautilus-list-view treeview.view:not(:hover):not(:active):not(:selected), .nautilus-window.csd .nautilus-list-view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:hover):not(:active):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window.csd .nautilus-list-view treeview.view:not(:hover):not(:active):not(:selected) { + background-color: transparent; + border-radius: 0; +} + +.nautilus-window.csd notebook { + background: none; + border-radius: 0 0 18px 18px; +} + +.nautilus-window.csd notebook > stack { + background-color: #2C2C2C; + border-radius: 0 0 18px 18px; +} + +.nautilus-window.csd notebook scrolledwindow > .view:not(:selected):not(:hover):not(:checked), .nautilus-window.csd notebook filechooser stack.view scrolledwindow > treeview.view:not(:selected):not(:hover):not(:checked), .nautilus-window.csd notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow > treeview.view:not(:selected):not(:hover):not(:checked) { + background-color: transparent; +} + +.nautilus-window.csd paned > separator { + background: none; +} + +.nautilus-window.csd paned > separator.wide { + min-width: 0; + min-height: 0; + background: none; +} + +.nautilus-window.maximized, .nautilus-window.maximized notebook, +.nautilus-window.maximized notebook > stack, +.nautilus-window.maximized placessidebar { + border-radius: 0; +} + +.nautilus-window .floating-bar { + min-height: 32px; + padding: 0; + margin: 6px; + border-style: none; + border-radius: 18px; + background-color: rgba(33, 33, 33, 0.95); +} + +.nautilus-window .floating-bar button { + margin: 4px; +} + +.nautilus-canvas-item.dim-label, +.nautilus-list-dim-label { + color: rgba(255, 255, 255, 0.7); +} + +.nautilus-desktop.nautilus-canvas-item, .caja-desktop.caja-canvas-item, .nemo-desktop.nemo-canvas-item { + color: white; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +@keyframes nautilus-operations-button-needs-attention { + to { + background-color: alpha(currentColor, 0.08); + } +} + +.nautilus-operations-button-needs-attention { + animation: nautilus-operations-button-needs-attention 300ms cubic-bezier(0.4, 0, 0.2, 1) 2 alternate; +} + +.nautilus-operations-button-needs-attention-multiple { + animation: nautilus-operations-button-needs-attention 300ms cubic-bezier(0.4, 0, 0.2, 1) 6 alternate; +} + +.path-bar-box { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 4px 0; + border-radius: 9999px; +} + +.path-bar-box button { + margin: 0; +} + +.path-bar-box.width-maximized { + background-color: rgba(255, 255, 255, 0.04); +} + +.path-bar-box.background.frame { + border-style: none; + background-color: rgba(255, 255, 255, 0.04); +} + +.path-bar-box .path-bar button label:not(:only-child):first-child { + margin-left: 0; +} + +.path-bar-box .path-bar button label:not(:only-child):last-child { + margin-right: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) { + padding-left: 10px; + padding-right: 10px; + margin-left: 1px; + margin-right: 1px; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):first-child { + margin-left: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action) label:not(:only-child):last-child { + margin-right: 0; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button { + min-width: 0; + border-radius: 1000px; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button.image-button { + border-radius: 1000px; +} + +.path-bar-box .linked.nautilus-path-bar button:not(.suggested-action):not(.destructive-action).text-button.image-button image:not(:only-child) { + margin: 0; +} + +.disk-space-display.unknown { + background-color: rgba(255, 255, 255, 0.3); + color: rgba(255, 255, 255, 0.3); +} + +.disk-space-display.used { + background-color: #3281ea; + color: #3281ea; +} + +.disk-space-display.free { + background-color: rgba(255, 255, 255, 0.12); + color: rgba(255, 255, 255, 0.12); +} + +.search-information { + padding: 2px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #2C2C2C; + color: white; +} + +.conflict-row:not(:selected) { + background-color: #6b5f2e; +} + +.nautilus-window flowboxchild .icon-item-background { + padding: 4px; + border-radius: 6px; +} + +.nautilus-window flowboxchild:selected { + background-color: transparent; +} + +.nautilus-window notebook :not(treeview).view, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) { + border-radius: 6px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > scrolledwindow.frame { + border-style: none; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child { + margin: -6px 0 0 -6px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > label { + margin: 0 8px; +} + +dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal:last-child > box > button { + border-radius: 0; +} + +.nautilus-window > popover.menu:not(:last-child) { + padding: 3px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box { + margin-top: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box { + margin-bottom: -6px; +} + +.nautilus-window > popover.menu:not(:last-child) > stack > box > box > box > box.linked { + margin-top: 1px; +} + +.nautilus-window > popover.menu:not(:last-child) separator { + margin-bottom: -2px; +} + +.nautilus-menu-sort-heading { + margin: 1px 3px; + font-weight: 500; +} + +.nautilus-menu-sort-heading:disabled { + color: rgba(255, 255, 255, 0.7); +} + +.nautilus-window paned > separator { + background-color: #242424; +} + +/********* + * gedit * + *********/ +.open-document-selector-path-label { + color: rgba(255, 255, 255, 0.7); + font-size: smaller; +} + +.open-document-selector-match { + background-color: #FDD633; + color: rgba(0, 0, 0, 0.87); +} + +.gedit-document-panel { + background-color: #242424; +} + +.gedit-document-panel row button.flat { + margin-top: 8px; + margin-bottom: 8px; +} + +.gedit-document-panel-group-row:not(:first-child) { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.gedit-side-panel-paned statusbar { + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0 0 18px 18px; +} + +.gedit-search-slider { + margin: 4px 4px 8px; +} + +.gedit-search-slider .linked:not(.vertical) > entry { + border-radius: 12px; +} + +.gedit-search-slider .linked:not(.vertical) > entry .gedit-search-entry-occurrences-tag { + all: unset; + color: rgba(255, 255, 255, 0.7); +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) { + margin-right: -60px; + padding-right: 60px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) .gedit-search-entry-occurrences-tag { + margin-left: 4px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(ltr) image.right { + margin-right: 0; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) { + margin-left: -60px; + padding-left: 60px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) .gedit-search-entry-occurrences-tag { + margin-right: 4px; +} + +.gedit-search-slider .linked:not(.vertical) > entry:dir(rtl) image.left { + margin-left: 0; +} + +.gedit-search-slider .linked:not(.vertical) > entry:not(.error) { + background-color: #3C3C3C; +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button { + color: rgba(0, 0, 0, 0.6); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:hover, +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:drop(active), .gedit-search-slider .linked:not(.vertical) > entry.error ~ button:active { + color: rgba(0, 0, 0, 0.87); +} + +.gedit-search-slider .linked:not(.vertical) > entry.error ~ button:disabled { + color: rgba(0, 0, 0, 0.26); +} + +.gedit-search-slider .linked > button { + border: solid 4px transparent; + border-radius: 9999px; +} + +.gedit-search-slider .linked > button:last-child:dir(ltr), .gedit-search-slider .linked > button:not(:first-child):dir(rtl) { + margin-left: -2px; +} + +.gedit-search-slider .linked > button:first-child:dir(rtl), .gedit-search-slider .linked > button:not(:last-child):dir(ltr) { + margin-right: -2px; +} + +frame.gedit-map-frame > border:dir(ltr) { + border-style: none none none solid; +} + +frame.gedit-map-frame > border:dir(rtl) { + border-style: none solid none none; +} + +/********** + * Tweaks * + **********/ +.tweak-categories { + background-image: image(#242424); +} + +.csd .tweak-categories { + border-bottom-left-radius: 18px; +} + +.tweak { + padding: 3px; +} + +.tweak.title:hover { + box-shadow: none; +} + +.tweak-group-white, +.tweak-white, +.tweak-white:hover { + background-image: image(#2C2C2C); +} + +.tweak-startup, +.tweak-startup:hover { + background-image: image(#2C2C2C); +} + +.tweak-group-startup { + background-image: image(#2C2C2C); +} + +.tweak-group-startup row.tweak-startup { + border-radius: 12px; + background-color: transparent; + background-image: none; +} + +row#Focus, +row#ClickMethod, +row#StaticWorkspaceTweak, +row#dynamic-workspaces, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + padding: 0; +} + +row#Focus.tweak > list, +row#ClickMethod.tweak > list, +row#StaticWorkspaceTweak.tweak > list, +row#dynamic-workspaces.tweak > list, +row#PrimaryWorkspaceTweak.tweak > list, +row#workspaces-only-on-primary.tweak > list { + margin-top: -3px; +} + +row#Focus, +row#ClickMethod, +row#PrimaryWorkspaceTweak, +row#workspaces-only-on-primary { + margin-top: 4px; +} + +hdyleaflet.titlebar > .titlebar.tweak-titlebar-left, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-right { + background-color: inherit; + box-shadow: inherit; + transition: color 75ms cubic-bezier(0, 0, 0.2, 1); +} + +hdyleaflet.titlebar > .titlebar.tweak-titlebar-left + separator, +hdyleaflet.titlebar > .titlebar.tweak-titlebar-right + separator { + background-color: inherit; + background-image: image(rgba(255, 255, 255, 0.12)); +} + +/************************ + * Gnome Control Center * + ************************/ +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:first-child:not(:only-child) { + border-top-left-radius: 18px; +} + +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:last-child:not(:only-child) { + border-top-right-radius: 18px; +} + +window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:first-child:only-child, window.background.csd > headerbar.titlebar > hdyleaflet > headerbar:last-child:only-child { + border-top-right-radius: 18px; + border-top-left-radius: 18px; +} + +window.background.csd > stack:not(.titlebar), +window.background.csd > hdyleaflet > stack.background { + border-radius: 0 0 18px 18px; +} + +window.background.csd > hdyleaflet > stack.background, +window.background.csd > box.horizontal > stack.background { + background: none; +} + +window.background.csd > hdyleaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame, +window.background.csd > box.horizontal > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame { + background-color: #2C2C2C; + border-bottom-right-radius: 18px; +} + +window.background.csd > hdyleaflet > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view, +window.background.csd > box.horizontal > stack.background > widget > box.vertical > box.vertical > scrolledwindow > viewport.frame > box.vertical.view { + background: none; +} + +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view { + background-color: #2C2C2C; + border-bottom-left-radius: 18px; +} + +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack { + background-color: transparent; +} + +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list, +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list { + background-color: transparent; +} + +window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected), window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list treeview.view header button:not(:hover):not(:active):not(:selected), treeview.view header window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list button:not(:hover):not(:active):not(:selected), window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:not(:hover):not(:active):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list button:not(:hover):not(:active):not(:selected), window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list .budgie-popover.budgie-menu button.flat:not(:hover):not(:active):not(:selected):not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu window.background.csd > hdyleaflet > box.vertical > scrolledwindow.view > viewport.frame > stack list button.flat:not(:hover):not(:active):not(:selected):not(.image-button):not(.indicator-item), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list row.activatable:not(:hover):not(:active):not(:selected), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list treeview.view header button:not(:hover):not(:active):not(:selected), +treeview.view header window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list button:not(:hover):not(:active):not(:selected), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:not(:hover):not(:active):not(:selected), +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list button:not(:hover):not(:active):not(:selected), +window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list .budgie-popover.budgie-menu button.flat:not(:hover):not(:active):not(:selected):not(.image-button):not(.indicator-item), +.budgie-popover.budgie-menu window.background.csd > box.horizontal > box.vertical > scrolledwindow.view > viewport.frame > stack list button.flat:not(:hover):not(:active):not(:selected):not(.image-button):not(.indicator-item) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > notebook > stack > box.horizontal > notebook > stack { + border-radius: 0 0 18px 18px; +} + +.tweak-group-startup, list.tweak-group list, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), hdyleaflet frame.view, hdyleaflet list.view.frame { + border-radius: 12px; + box-shadow: none; + border: 1px solid rgba(0, 0, 0, 0.16); +} + +.tweak-group-startup row.activatable:first-child, .tweak-group-startup treeview.view header button:first-child, treeview.view header .tweak-group-startup button:first-child, .tweak-group-startup window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .tweak-group-startup button:first-child, .tweak-group-startup .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .tweak-group-startup button.flat:first-child:not(.image-button):not(.indicator-item), list.tweak-group list row.activatable:first-child, list.tweak-group list treeview.view header button:first-child, treeview.view header list.tweak-group list button:first-child, list.tweak-group list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.tweak-group list button:first-child, list.tweak-group list .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu list.tweak-group list button.flat:first-child:not(.image-button):not(.indicator-item), hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) treeview.view header button:first-child, treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button.flat:first-child:not(.image-button):not(.indicator-item), hdyleaflet frame.view list row.activatable:first-child, hdyleaflet frame.view list treeview.view header button:first-child, treeview.view header hdyleaflet frame.view list button:first-child, hdyleaflet frame.view list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame.view list button:first-child, hdyleaflet frame.view list .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame.view list button.flat:first-child:not(.image-button):not(.indicator-item), hdyleaflet list.view.frame row.activatable:first-child, hdyleaflet list.view.frame treeview.view header button:first-child, treeview.view header hdyleaflet list.view.frame button:first-child, hdyleaflet list.view.frame window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet list.view.frame button:first-child, hdyleaflet list.view.frame .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet list.view.frame button.flat:first-child:not(.image-button):not(.indicator-item) { + border-top-left-radius: 12px; + border-top-right-radius: 12px; +} + +.tweak-group-startup row.activatable:last-child, .tweak-group-startup treeview.view header button:last-child, treeview.view header .tweak-group-startup button:last-child, .tweak-group-startup window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .tweak-group-startup button:last-child, .tweak-group-startup .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .tweak-group-startup button.flat:last-child:not(.image-button):not(.indicator-item), list.tweak-group list row.activatable:last-child, list.tweak-group list treeview.view header button:last-child, treeview.view header list.tweak-group list button:last-child, list.tweak-group list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.tweak-group list button:last-child, list.tweak-group list .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu list.tweak-group list button.flat:last-child:not(.image-button):not(.indicator-item), hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) treeview.view header button:last-child, treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button.flat:last-child:not(.image-button):not(.indicator-item), hdyleaflet frame.view list row.activatable:last-child, hdyleaflet frame.view list treeview.view header button:last-child, treeview.view header hdyleaflet frame.view list button:last-child, hdyleaflet frame.view list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame.view list button:last-child, hdyleaflet frame.view list .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame.view list button.flat:last-child:not(.image-button):not(.indicator-item), hdyleaflet list.view.frame row.activatable:last-child, hdyleaflet list.view.frame treeview.view header button:last-child, treeview.view header hdyleaflet list.view.frame button:last-child, hdyleaflet list.view.frame window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:last-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet list.view.frame button:last-child, hdyleaflet list.view.frame .budgie-popover.budgie-menu button.flat:last-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet list.view.frame button.flat:last-child:not(.image-button):not(.indicator-item) { + border-bottom-left-radius: 12px; + border-bottom-right-radius: 12px; +} + +.tweak-group-startup row.activatable:only-child, .tweak-group-startup treeview.view header button:only-child, treeview.view header .tweak-group-startup button:only-child, .tweak-group-startup window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .tweak-group-startup button:only-child, .tweak-group-startup .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .tweak-group-startup button.flat:only-child:not(.image-button):not(.indicator-item), list.tweak-group list row.activatable:only-child, list.tweak-group list treeview.view header button:only-child, treeview.view header list.tweak-group list button:only-child, list.tweak-group list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.tweak-group list button:only-child, list.tweak-group list .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu list.tweak-group list button.flat:only-child:not(.image-button):not(.indicator-item), hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) treeview.view header button:only-child, treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame:not(.view) list:not(.contacts-contact-list) button.flat:only-child:not(.image-button):not(.indicator-item), hdyleaflet frame.view list row.activatable:only-child, hdyleaflet frame.view list treeview.view header button:only-child, treeview.view header hdyleaflet frame.view list button:only-child, hdyleaflet frame.view list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet frame.view list button:only-child, hdyleaflet frame.view list .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet frame.view list button.flat:only-child:not(.image-button):not(.indicator-item), hdyleaflet list.view.frame row.activatable:only-child, hdyleaflet list.view.frame treeview.view header button:only-child, treeview.view header hdyleaflet list.view.frame button:only-child, hdyleaflet list.view.frame window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:only-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet list.view.frame button:only-child, hdyleaflet list.view.frame .budgie-popover.budgie-menu button.flat:only-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet list.view.frame button.flat:only-child:not(.image-button):not(.indicator-item) { + border-radius: 12px; +} + +hdyleaflet frame > border { + border: none; +} + +hdyleaflet frame.view list { + background: none; +} + +hdyleaflet > box.vertical list:not(.view) row.activatable, hdyleaflet > box.vertical list:not(.view) treeview.view header button, treeview.view header hdyleaflet > box.vertical list:not(.view) button, hdyleaflet > box.vertical list:not(.view) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet > box.vertical list:not(.view) button, hdyleaflet > box.vertical list:not(.view) .budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet > box.vertical list:not(.view) button.flat:not(.image-button):not(.indicator-item) { + margin-right: 4px; + border-radius: 0 1000px 1000px 0; +} + +hdyleaflet > box.vertical list:not(.view) row.activatable:selected, hdyleaflet > box.vertical list:not(.view) treeview.view header button:selected, treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected, hdyleaflet > box.vertical list:not(.view) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected, hdyleaflet > box.vertical list:not(.view) .budgie-popover.budgie-menu button.flat:selected:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu hdyleaflet > box.vertical list:not(.view) button.flat:selected:not(.image-button):not(.indicator-item) { + background-color: alpha(currentColor, 0.1); + color: #3281ea; +} + +hdyleaflet > box.vertical list:not(.view) row.activatable:selected image, hdyleaflet > box.vertical list:not(.view) treeview.view header button:selected image, treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected image, hdyleaflet > box.vertical list:not(.view) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:selected image, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected image, hdyleaflet > box.vertical list:not(.view) .budgie-popover.budgie-menu button.flat:selected:not(.image-button):not(.indicator-item) image, .budgie-popover.budgie-menu hdyleaflet > box.vertical list:not(.view) button.flat:selected:not(.image-button):not(.indicator-item) image, hdyleaflet > box.vertical list:not(.view) row.activatable:selected label, hdyleaflet > box.vertical list:not(.view) treeview.view header button:selected label, treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected label, hdyleaflet > box.vertical list:not(.view) window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:selected label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header hdyleaflet > box.vertical list:not(.view) button:selected label, hdyleaflet > box.vertical list:not(.view) .budgie-popover.budgie-menu button.flat:selected:not(.image-button):not(.indicator-item) label, .budgie-popover.budgie-menu hdyleaflet > box.vertical list:not(.view) button.flat:selected:not(.image-button):not(.indicator-item) label { + color: #3281ea; +} + +/************************ + * Gnome system monitor * + ************************/ +window#gnome-system-monitor.background.csd > box.vertical > stack { + background-color: #2C2C2C; + border-radius: 0 0 18px 18px; +} + +filechooser stack.view window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view { + background: none; +} + +/************************ + * Gnome Sound Recorder * + ************************/ +stack > grid.vertical > scrolledwindow { + border: none; + border-radius: 0 0 18px 18px; +} + +stack > grid.vertical > scrolledwindow > viewport.frame list { + border-radius: 0 0 18px 18px; +} + +stack > grid.vertical scrolledwindow.frame.emptyGrid { + border: none; +} + +/****************** + * Gnome Contacts * + ******************/ +window.background.csd > overlay > grid.horizontal > overlay > stack > box.horizontal > grid.horizontal > scrolledwindow.contacts-contact-form { + border-bottom-right-radius: 18px; +} + +/*********** + * Builder * + ***********/ +layouttabbar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #212121; +} + +layouttabbar > box > button { + margin: 4px 0; +} + +layouttab { + margin: 0 8px; + border-style: none solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.16); + box-shadow: inset 0 -2px #3281ea; + background-color: #2C2C2C; +} + +layouttab separator.vertical { + margin: 8px 4px; +} + +layouttab button.text-button, layouttab button.image-button, layouttab button { + margin-top: 8px; + margin-bottom: 8px; + padding: 0 4px; +} + +layout { + border: 1px solid rgba(0, 0, 0, 0.16); + -PnlDockBin-handle-size: 1; +} + +entry.search-missing { + background-color: #F28B82; + color: rgba(0, 0, 0, 0.87); +} + +window.workbench treeview.image { + color: rgba(255, 255, 255, 0.7); +} + +popover.popover-selector list { + padding: 6px; +} + +popover.popover-selector list row { + border-radius: 12px; +} + +popover.popover-selector list row image:dir(ltr) { + margin-right: 6px; +} + +popover.popover-selector list row image:dir(rtl) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(ltr) { + margin-left: 6px; +} + +popover.popover-selector list row .accel:dir(rtl) { + margin-right: 6px; +} + +omnibar.linked:not(.vertical) entry { + border-radius: 12px; +} + +omnibar:not(:hover):not(:active) entry { + color: rgba(255, 255, 255, 0.7); +} + +popover.omnibar list row:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +entry.preferences-search { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; + background-color: #2C2C2C; +} + +preferences stacksidebar.sidebar list { + background-color: #242424; +} + +preferences stacksidebar.sidebar:dir(ltr) list, preferences stacksidebar.sidebar:dir(rtl) list { + border-style: none; +} + +preferences > box > box:dir(ltr) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +preferences > box > box:dir(rtl) { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +popover.messagepopover.background { + padding: 0; +} + +popover.messagepopover .popover-action-area button { + padding: 8px 16px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0; +} + +popover.messagepopover .popover-action-area button:first-child { + border-bottom-left-radius: 12px; +} + +popover.messagepopover .popover-action-area button:last-child { + border-bottom-right-radius: 12px; +} + +popover.messagepopover .popover-content-area { + margin: 16px; +} + +popover.transfers list { + background-color: transparent; +} + +popover.transfers list row:not(:first-child) { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +popover.transfers list row > box { + padding: 10px; +} + +dockbin { + border: 1px solid rgba(0, 0, 0, 0.16); + -PnlDockBin-handle-size: 1; +} + +dockpaned { + border: 1px solid rgba(0, 0, 0, 0.16); +} + +eggsearchbar box.search-bar { + padding: 0 8px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #212121; +} + +docktabstrip { + padding: 0 8px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #212121; +} + +docktab { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms; + min-height: 24px; + min-width: 24px; + margin-bottom: -1px; + padding: 4px 6px; + border-width: 1px; + border-color: transparent; + box-shadow: inset 0 -2px transparent; + background-image: radial-gradient(circle, #3281ea 10%, transparent 0%); + background-repeat: no-repeat; + background-position: center; + background-size: 0% 0%; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +docktab:hover { + background-color: alpha(currentColor, 0.08); + color: white; +} + +docktab:checked { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 225ms cubic-bezier(0, 0, 0.2, 1), background-image 525ms cubic-bezier(0, 0, 0.2, 1); + box-shadow: inset 0 -2px #3281ea; + background-color: transparent; + background-image: radial-gradient(circle, transparent 10%, transparent 0%); + background-size: 1000% 1000%; + color: white; +} + +dockoverlayedge { + background-color: #212121; +} + +dockoverlayedge docktabstrip { + padding: 0; + border: none; +} + +dockoverlayedge.left-edge docktab:checked { + box-shadow: inset -2px 0 #3281ea; +} + +dockoverlayedge.right-edge docktab:checked { + box-shadow: inset 2px 0 #3281ea; +} + +pillbox { + background-color: #212121; + border-radius: 12px; +} + +layoutpane entry.search { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + box-shadow: none; + background-color: #2C2C2C; +} + +editortweak entry.search { + margin-bottom: -1px; + box-shadow: none; + background-color: transparent; +} + +.gb-search-entry-occurrences-tag { + box-shadow: none; + background-color: transparent; +} + +docktabstrip { + min-height: 39px; +} + +window.workbench preferences preferencesgroup list entry { + padding-top: 8px; + padding-bottom: 8px; +} + +button.run-arrow-button { + padding-left: 8px; + padding-right: 8px; +} + +button.dzlmenubutton image { + min-width: 26px; +} + +button.dzlmenubutton image.arrow { + min-width: 23px; +} + +button.dzlmenubuttonitem { + color: white; + font-weight: normal; +} + +button.dzlmenubuttonitem:disabled { + color: rgba(255, 255, 255, 0.5); +} + +idelayoutstackheader { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +idelayoutstackheader button:checked { + color: white; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher { + padding: 8px 0; + background-color: #212121; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(ltr) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher:dir(rtl) { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button { + border-radius: 0; + box-shadow: none; + background-color: transparent; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:active { + background-image: radial-gradient(circle, rgba(50, 129, 234, 0.7) 10%, transparent 0%); +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:checked { + background-color: transparent; + color: white; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr) { + margin-right: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(ltr):checked { + box-shadow: inset -2px 0 #3281ea; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl) { + margin-left: -1px; +} + +ideeditorutilities > dzldockpaned > box > stackswitcher button:dir(rtl):checked { + box-shadow: inset 2px 0 #3281ea; +} + +ideeditorsidebar notebook header { + background: transparent; +} + +popover.messagepopover list { + border: 1px solid rgba(255, 255, 255, 0.12); +} + +popover.messagepopover list row:not(:last-child) { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +/********** + * Photos * + **********/ +GdMainIconView.content-view { + -GdMainIconView-icon-size: 48; +} + +.documents-counter { + margin: 8px; + border-radius: 9999px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #3281ea; + color: white; + font-weight: bold; +} + +.documents-scrolledwin.frame { + border-style: none; +} + +.documents-scrolledwin.frame frame.content-view > border { + border-style: none; +} + +.photos-fade-in { + opacity: 1; + transition: opacity 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.photos-fade-out { + opacity: 0; + transition: opacity 75ms cubic-bezier(0, 0, 0.2, 1); +} + +button.photos-filter-preview { + color: white; + font-weight: normal; +} + +button.photos-filter-preview:checked { + background-color: alpha(currentColor, 0.06); + color: white; +} + +button.photos-filter-preview:checked image { + color: white; + -gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(ltr) { + border-style: none none none solid; +} + +overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { + border-style: none solid none none; +} + +/********* + * Music * + *********/ +.side-panel:dir(ltr) { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.side-panel:dir(rtl) { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.side-panel .view, .side-panel filechooser stack.view scrolledwindow treeview.view, filechooser stack.view scrolledwindow .side-panel treeview.view, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view { + background-image: image(#242424); +} + +.side-panel .view:hover, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:hover { + background-image: image(#363636); +} + +.side-panel .view:selected, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:selected { + background-image: image(#3281ea); +} + +.side-panel .view:selected:hover, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:selected:hover { + background-image: image(#428bec); +} + +.songs-list:hover { + background-image: image(alpha(currentColor, 0.08)); +} + +frame.documents-dropdown { + margin: 8px; +} + +frame.documents-dropdown > border { + border: none; +} + +box.vertical > revealer > toolbar.search-bar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-clip: border-box; +} + +box.vertical > revealer > toolbar.search-bar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); +} + +/************* + * Documents * + *************/ +.documents-scrolledwin { + background-color: transparent; +} + +.documents-scrolledwin .content-view { + background-color: transparent; + border-radius: 0 0 18px 18px; +} + +.documents-scrolledwin viewport.frame { + background-color: transparent; +} + +.documents-scrolledwin viewport.frame widget > frame.content-view { + background-color: transparent; + border-radius: 0 0 18px 18px; +} + +.documents-scrolledwin viewport.frame widget > frame.content-view border { + border: none; +} + +/******************* + * Document Viewer * + *******************/ +window.background.csd > box.vertical > scrolledwindow > iconview.view.content-view:not(:hover):not(:selected) { + background-color: transparent; + border-radius: 18px; +} + +window.background.csd evview.view.content-view { + background-color: transparent; + border-radius: 0 0 18px 18px; +} + +/******************* + * Archive Manager * + *******************/ +.background.csd > grid.horizontal > paned.horizontal > scrolledwindow { + border-radius: 0 0 18px 18px; + background-color: #2C2C2C; +} + +.background.csd > grid.horizontal > paned.horizontal > scrolledwindow treeview.view:not(:hover):not(:selected), filechooser stack.view .background.csd > grid.horizontal > paned.horizontal > scrolledwindow treeview.view:not(:hover):not(:selected), .background.csd > grid.horizontal > paned.horizontal > scrolledwindow window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .background.csd > grid.horizontal > paned.horizontal > scrolledwindow treeview.view:not(:hover):not(:selected) { + background-color: transparent; +} + +.background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow { + border-radius: 0 0 0 18px; + background-color: #212121; +} + +.background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), filechooser stack.view .background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), .background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .background.csd > grid.horizontal > paned.horizontal > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected) { + background-color: transparent; +} + +/************** + * Gnome Disk * + **************/ +window.background.csd > box.vertical > paned.horizontal > scrolledwindow treeview.view, filechooser stack.view window.background.csd > box.vertical > paned.horizontal > scrolledwindow treeview.view, window.background.csd > box.vertical > paned.horizontal > scrolledwindow window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow window.background.csd > box.vertical > paned.horizontal > scrolledwindow treeview.view { + border-bottom-left-radius: 18px; +} + +/************ + * Terminal * + ************/ +terminal-window notebook > header > box { + margin: -2px -2px -3px; +} + +terminal-window notebook > header > box button { + border-radius: 0; +} + +window.background > box.vertical > box.horizontal > frame > border { + border-width: 0 1px 0 0; +} + +window.background > box.vertical > box.horizontal > frame > scrolledwindow > viewport.frame list { + border-bottom-left-radius: 18px; +} + +window.background > box.vertical > box.horizontal > stack > widget > notebook.frame { + border-width: 0; +} + +window.background > box.vertical > box.horizontal > stack > widget > notebook.frame > stack { + border-bottom-right-radius: 18px; +} + +/********* + * To Do * + *********/ +task-list-view taskrow { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); + margin: 0 -8px; +} + +task-list-view taskrow:hover { + transition: none; +} + +task-list-view taskrow label { + margin: 0 8px; +} + +task-list-view taskrow image.dim-label { + min-width: 16px; +} + +task-list-view > box > revealer > box > button { + margin: -4px; +} + +task-list-view > box > revealer > box > button .dim-label { + color: inherit; +} + +tasklistview taskrow { + outline: none; +} + +tasklistview taskrow entry, tasklistview taskrow entry:focus, tasklistview taskrow entry:disabled { + box-shadow: none; +} + +tasklistview taskrow image.dim-label { + min-width: 16px; +} + +tasklistview > box > revealer > box > button { + margin: -4px; +} + +tasklistview > box > revealer > box > button .dim-label { + color: inherit; +} + +/******* + * eog * + *******/ +#eog-thumb-nav scrolledwindow { + border-top: none; +} + +/************* + * Evolution * + *************/ +frame.taskbar > border { + border-style: solid none none; +} + +box.vertical > paned.horizontal notebook widget .frame { + border-style: none; +} + +/******** + * gitg * + ********/ +frame.commit-frame > border { + border-style: solid none none; +} + +/************** + * Characters * + **************/ +box.dialog-vbox scrolledwindow.related { + border: 1px solid rgba(0, 0, 0, 0.16); +} + +list.categories { + background-image: image(#242424); +} + +/********* + * Boxes * + *********/ +.transparent-bg + stack overlay > label { + min-height: 24px; + padding: 0 4px; + border-radius: 12px; + background-color: rgba(0, 0, 0, 0.6); + color: white; +} + +/************** + * Calculator * + **************/ +button.title label { + min-height: 32px; +} + +/********* + * Geary * + *********/ +window#GearyMainWindow.background.csd box.vertical > paned.horizontal > box.sidebar.vertical { + border-bottom-left-radius: 18px; +} + +window#GearyMainWindow.background.csd box.vertical > paned.horizontal > box.sidebar.vertical statusbar { + border-bottom-left-radius: 18px; +} + +window#GearyMainWindow.background.csd stack#conversation_viewer { + border-bottom-right-radius: 18px; +} + +window#GearyMainWindow.background.csd stack#conversation_viewer scrolledwindow.geary-conversation-scroller viewport.frame list.conversation-listbox { + background: none; + border-bottom-right-radius: 18px; +} + +/*********** + * Dialogs * + ***********/ +dialog.background.csd > box.vertical.dialog-vbox > grid.horizontal > scrolledwindow.frame > viewport.frame list:first-child { + border-radius: 0 0 0 18px; +} + +dialog.background.csd > box.vertical.dialog-vbox > grid.horizontal > scrolledwindow.frame > viewport.frame list:last-child { + border-radius: 0 0 18px 0; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow, +dialog.background.csd > box.vertical.dialog-vbox > stack > stack > scrolledwindow { + border-radius: 0 0 18px 18px; + background-color: #2C2C2C; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow iconview.view:not(:hover):not(:selected):not(:active), +dialog.background.csd > box.vertical.dialog-vbox > stack > stack > scrolledwindow iconview.view:not(:hover):not(:selected):not(:active) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list { + border-radius: 0 0 18px 18px; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list row.activatable:not(:hover):not(:selected):not(:active), dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list treeview.view header button:not(:hover):not(:selected):not(:active), treeview.view header dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list button:not(:hover):not(:selected):not(:active), dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:not(:hover):not(:selected):not(:active), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list button:not(:hover):not(:selected):not(:active), dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list .budgie-popover.budgie-menu button.flat:not(:hover):not(:selected):not(:active):not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu dialog.background.csd > box.vertical.dialog-vbox > stack > scrolledwindow > viewport.frame > list button.flat:not(:hover):not(:selected):not(:active):not(.image-button):not(.indicator-item) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack > box.vertical > stack.view > scrolledwindow > treeview.view:not(:hover):not(:selected):not(:active), filechooser dialog.background.csd > box.vertical.dialog-vbox > stack > box.vertical > stack.view > scrolledwindow > treeview.view:not(:hover):not(:selected):not(:active) { + background-color: transparent; +} + +dialog.background.csd > box.vertical.dialog-vbox > stack toolbar.toolbar { + border-radius: 0 0 18px 18px; +} + +dialog.background.csd > box.vertical.dialog-vbox > notebook > stack { + border-radius: 0 0 18px 18px; +} + +/********* + * Tilix * + *********/ +overlay > revealer.left > scrolledwindow.frame, +overlay > revealer.right > scrolledwindow.frame { + border-style: none; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +overlay > revealer.left > scrolledwindow.frame { + margin-right: 32px; +} + +overlay > revealer.right > scrolledwindow.frame { + margin-left: 32px; +} + +.terminix-session-sidebar, +.tilix-session-sidebar { + background-image: image(#3C3C3C); +} + +.terminal-titlebar button { + border-radius: 0; +} + +button.image-button.session-new-button { + min-width: 28px; +} + +notebook.tilix-background tab > box > stack { + margin: -6px; +} + +button.flat.tilix-small-button { + min-height: 20px; + min-width: 16px; +} + +/************** + * Terminator * + **************/ +.terminator-terminal-window paned > separator { + background-color: #212121; +} + +.terminator-terminal-window notebook.frame { + border-style: none; +} + +/************* + * Ubitquity * + *************/ +#live_installer .menubar progressbar trough { + border-radius: 4px; + background-color: rgba(255, 255, 255, 0.12); +} + +/*********** + * Eclipse * + ***********/ +window.background > box.vertical > scrolledwindow > widget toolbar { + padding: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar separator, +window.background > box.vertical > scrolledwindow > widget toolbar button { + margin: 2px; +} + +window.background > box.vertical > scrolledwindow > widget toolbar button { + border-radius: 12px; +} + +/************ + * Chromium * + ************/ +window.background.chromium { + background-color: #3C3C3C; +} + +window.background.chromium entry, +window.background.chromium > button { + border: 1px solid rgba(255, 255, 255, 0.3); +} + +window.background.chromium > button { + color: #3281ea; +} + +window.background.chromium > button:disabled { + color: rgba(255, 255, 255, 0.3); +} + +window.background.chromium menubar, +window.background.chromium headerbar { + color: rgba(255, 255, 255, 0.7); +} + +window.background.chromium headerbar button:active { + background-color: alpha(currentColor, 0.12); +} + +window.background.chromium spinner { + color: #3281ea; +} + +window.background.chromium textview.view { + background-color: transparent; +} + +window.background.chromium treeview.view.cell:selected:focus, window.background.chromium window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.cell.view:selected:focus, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow window.background.chromium treeview.cell.view:selected:focus { + background-color: #3281ea; + color: white; +} + +window.background.chromium treeview.view button, window.background.chromium window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view button, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow window.background.chromium treeview.view button { + border: 1px solid rgba(255, 255, 255, 0.3); + background-color: #2C2C2C; +} + +tooltip.background.chromium { + background-color: #616161; +} + +/*********** + * Firefox * + ***********/ +#MozillaGtkWidget > widget text { + background-color: #3C3C3C; +} + +#MozillaGtkWidget > widget text:selected { + background-color: #3281ea; + color: white; +} + +#MozillaGtkWidget > widget > separator { + color: rgba(255, 255, 255, 0.12); +} + +#MozillaGtkWidget > widget > frame > border { + border-color: rgba(255, 255, 255, 0.3); +} + +#MozillaGtkWidget > widget > entry, +#MozillaGtkWidget > widget > button > button { + border: 1px solid rgba(255, 255, 255, 0.3); + border-radius: 12px; + box-shadow: none; +} + +#MozillaGtkWidget > widget > entry:disabled, +#MozillaGtkWidget > widget > button > button:disabled { + border-color: rgba(255, 255, 255, 0.12); +} + +#MozillaGtkWidget > widget > entry { + min-height: 30px; + background-color: #2C2C2C; +} + +#MozillaGtkWidget > widget > entry:focus { + border-color: #3281ea; + box-shadow: inset 0 0 0 1px #3281ea; +} + +#MozillaGtkWidget > widget > entry:disabled { + background-color: #242424; +} + +#MozillaGtkWidget > widget > button > button { + padding: 4px 8px; + background-size: auto; +} + +#MozillaGtkWidget > widget > button > button:hover, +#MozillaGtkWidget > widget > button > button:drop(active) { + box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08); +} + +#MozillaGtkWidget > widget > button > button:active { + background-image: image(alpha(currentColor, 0.12)); +} + +#MozillaGtkWidget > widget > checkbutton > check, +#MozillaGtkWidget > widget > radiobutton > radio { + margin: 0; + padding: 0; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate), +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate) { + color: #757575; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):hover, #MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):active, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):hover, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):active { + color: #9E9E9E; +} + +#MozillaGtkWidget > widget > checkbutton > check:not(:checked):not(:indeterminate):disabled, +#MozillaGtkWidget > widget > radiobutton > radio:not(:checked):not(:indeterminate):disabled { + color: rgba(117, 117, 117, 0.5); +} + +#MozillaGtkWidget menu { + border: none; +} + +#MozillaGtkWidget > widget > menubar { + color: rgba(255, 255, 255, 0.7); +} + +#MozillaGtkWidget > widget > menubar:hover { + color: white; +} + +#MozillaGtkWidget > widget > menubar:disabled { + color: rgba(255, 255, 255, 0.3); +} + +#MozillaGtkWidget > widget > frame { + color: rgba(255, 255, 255, 0.3); +} + +#MozillaGtkWidget menu > separator { + color: rgba(255, 255, 255, 0.12); +} + +/************ + * Inkscape * + ************/ +#ToolboxCommon > #AuxToolbox #StyleSwatch { + font-size: smaller; +} + +#ToolboxCommon > #AuxToolbox #Kludge { + padding: 0; +} + +#ToolboxCommon > #AuxToolbox spinbutton, +#ToolboxCommon > #AuxToolbox entry { + min-height: 32px; +} + +#ToolboxCommon > #AuxToolbox button:not(.up):not(.down) { + min-height: 24px; + min-width: 16px; + padding: 4px 8px; + border-radius: 12px; +} + +#ToolboxCommon > #AuxToolbox spinbutton button { + border-width: 4px; +} + +#ToolboxCommon > toolbar.vertical { + margin-top: -4px; +} + +#ToolboxCommon > toolbar.vertical button { + min-height: 24px; + min-width: 24px; + padding: 4px; + border-radius: 12px; +} + +#CanvasTable button { + min-height: 16px; + min-width: 16px; + padding: 0; +} + +#CanvasTable #HorizontalScrollbar { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(ltr) { + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +#CanvasTable #VerticalScrollbar:dir(rtl) { + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +#Canvas_and_Dock frame > border { + border: none; +} + +#Canvas_and_Dock widget > widget > button.flat { + min-height: 16px; + min-width: 16px; + padding: 4px; +} + +#Canvas_and_Dock widget > widget > box.horizontal image { + padding: 4px; +} + +#Canvas_and_Dock box.horizontal > box.vertical > button.flat { + min-height: 16px; + min-width: 24px; + padding: 8px 4px; +} + +/*********** + * Synapse * + ***********/ +/********* + * Unity * + *********/ +UnityDecoration { + -UnityDecoration-extents: 28px 0 0 0; + -UnityDecoration-input-extents: 8px; + -UnityDecoration-shadow-offset-x: 0; + -UnityDecoration-shadow-offset-y: 3px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.48); + -UnityDecoration-active-shadow-radius: 18px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.32); + -UnityDecoration-inactive-shadow-radius: 6px; + -UnityDecoration-glow-size: 8px; + -UnityDecoration-glow-color: #3281ea; + -UnityDecoration-title-indent: 4px; + -UnityDecoration-title-fade: 32px; + -UnityDecoration-title-alignment: 0.0; +} + +UnityDecoration .top { + padding: 0 2px; + border-style: none; + border-radius: 18px 18px 0 0; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #2C2C2C; + color: white; +} + +UnityDecoration .top:backdrop { + background-color: #2C2C2C; + color: rgba(255, 255, 255, 0.7); +} + +UnityDecoration .menuitem { + color: rgba(255, 255, 255, 0.7); +} + +UnityDecoration .menuitem:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: white; +} + +.background:not(.csd) headerbar:not(.titlebar) { + border-radius: 0; + box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 2px -0.6px rgba(0, 0, 0, 0.17); +} + +.background:not(.csd) headerbar:not(.titlebar).inline-toolbar { + border-style: none; +} + +UnityPanelWidget, +.unity-panel { + background-color: #1F1F1F; + color: white; +} + +UnityPanelWidget:backdrop, +.unity-panel:backdrop { + color: rgba(255, 255, 255, 0.7); +} + +.unity-panel.menuitem, +.unity-panel .menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.unity-panel.menubar.menuitem:hover, +.unity-panel.menubar .menuitem *:hover { + box-shadow: inset 0 -2px currentColor; + background-color: transparent; + color: white; +} + +.menu IdoPlaybackMenuItem.menuitem:active { + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); + animation: spin 1s linear infinite; + color: #3281ea; +} + +/************** + * Mate-Panel * + **************/ +.mate-panel-menu-bar menubar, +#PanelApplet-window-menu-applet-button { + background-color: transparent; +} + +.mate-panel-menu-bar { + background-color: #1F1F1F; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.mate-panel-menu-bar button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +PanelToplevel.horizontal > grid > button { + min-width: 24px; +} + +PanelToplevel.vertical > grid > button { + min-height: 24px; +} + +PanelSeparator { + color: rgba(255, 255, 255, 0.12); +} + +MatePanelAppletFrameDBus { + border-style: solid; + border-color: rgba(255, 255, 255, 0.12); +} + +.mate-panel-menu-bar.horizontal MatePanelAppletFrameDBus { + border-width: 0 1px; +} + +.mate-panel-menu-bar.vertical MatePanelAppletFrameDBus { + border-width: 1px 0; +} + +.mate-panel-menu-bar menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.mate-panel-menu-bar menubar > menuitem:hover { + color: white; +} + +.mate-panel-menu-bar menubar > menuitem:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.mate-panel-menu-bar.horizontal menubar > menuitem { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical menubar > menuitem { + padding: 8px 0; +} + +.mate-panel-menu-bar menubar menu > menuitem { + min-height: 28px; + padding: 0 6px; +} + +.mate-panel-menu-bar #PanelApplet button { + -GtkWidget-window-dragging: true; +} + +.mate-panel-menu-bar #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0px; +} + +.mate-panel-menu-bar #tasklist-button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px; +} + +.mate-panel-menu-bar #tasklist-button image:dir(ltr), .mate-panel-menu-bar #tasklist-button label:dir(rtl) { + padding-left: 4px; +} + +.mate-panel-menu-bar #tasklist-button label:dir(ltr), .mate-panel-menu-bar #tasklist-button image:dir(rtl) { + padding-right: 4px; +} + +.mate-panel-menu-bar.vertical #tasklist-button { + min-height: 32px; +} + +.mate-panel-menu-bar.horizontal #showdesktop-button image { + min-width: 24px; + padding: 0 4px; +} + +.mate-panel-menu-bar.vertical #showdesktop-button image { + min-height: 24px; + padding: 4px 0; +} + +PanelApplet.wnck-applet .wnck-pager { + background-color: transparent; + color: #3281ea; +} + +PanelApplet.wnck-applet .wnck-pager:hover { + background-color: alpha(currentColor, 0.08); +} + +PanelApplet.wnck-applet .wnck-pager:active { + background-color: alpha(currentColor, 0.12); +} + +PanelApplet.wnck-applet .wnck-pager:selected { + background-color: #3281ea; +} + +.mate-panel-menu-bar.horizontal #clock-applet-button label { + padding: 0 8px; +} + +.mate-panel-menu-bar.vertical #clock-applet-button label { + padding: 8px 0; +} + +#MatePanelPopupWindow { + border: 1px solid rgba(0, 0, 0, 0.16); + border-radius: 13px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; +} + +#MatePanelPopupWindow frame > border { + border-style: none; +} + +#MatePanelPopupWindow calendar { + border-style: none; +} + +#MatePanelPopupWindow calendar:not(:selected) { + background-color: transparent; +} + +#MatePanelPopupWindow calendar + box { + margin-top: -5px; + padding-top: 5px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +#MatePanelPopupWindow expander > title { + min-height: 32px; +} + +#MatePanelPopupWindow button { + padding: 4px 16px; +} + +#MatePanelPopupWindow > frame > box > box > box > widget { + color: rgba(255, 255, 255, 0.12); +} + +na-tray-applet { + -NaTrayApplet-icon-padding: 3px; + -NaTrayApplet-icon-size: 16; +} + +.mate-panel-menu-bar { + -PanelMenuBar-icon-visible: true; +} + +.mate-panel-applet-slider { + border: 1px solid rgba(0, 0, 0, 0.16); + border-radius: 13px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; +} + +.mate-panel-applet-slider frame > border { + border-style: none; +} + +#PanelApplet:not(:selected) > box { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +#PanelApplet:selected > box { + background-color: alpha(currentColor, 0.1); + color: white; +} + +#mate-menu { + border: 1px solid rgba(0, 0, 0, 0.16); + background-color: #3C3C3C; +} + +#mate-menu button { + min-height: 24px; + min-width: 24px; + padding: 4px 0; + color: white; + font-weight: normal; +} + +#mate-menu button:not(.flat) { + background-color: alpha(currentColor, 0.1); +} + +#mate-menu button image, +#mate-menu button label + label { + color: rgba(255, 255, 255, 0.7); +} + +#mate-menu entry { + margin: 0 0 4px; +} + +#mate-menu entry image { + margin: 0; +} + +#mate-menu entry + button { + margin: 0 4px 4px; + padding: 4px; +} + +.brisk-menu { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; +} + +.brisk-menu entry { + margin-bottom: -2px; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-image: none; + box-shadow: none; + background-color: transparent; +} + +.brisk-menu entry + box > box:dir(ltr) { + margin-right: -2px; + border-right: 1px solid rgba(255, 255, 255, 0.12); +} + +.brisk-menu entry + box > box:dir(rtl) { + margin-left: -2px; + border-left: 1px solid rgba(255, 255, 255, 0.12); +} + +.brisk-menu .categories-list { + padding-top: 4px; +} + +.brisk-menu .categories-list button { + margin: 0 4px; +} + +.brisk-menu .categories-list button:checked { + color: #3281ea; +} + +.brisk-menu .session-button { + padding: 8px; +} + +.brisk-menu .frame { + border-style: none; +} + +.brisk-menu .apps-list { + padding: 4px 0; + background-color: transparent; +} + +.brisk-menu .apps-list row { + padding: 0; +} + +.brisk-menu .apps-list row:hover, .brisk-menu .apps-list placessidebar.sidebar row:drop(active), placessidebar.sidebar .brisk-menu .apps-list row:drop(active) { + box-shadow: none; +} + +.brisk-menu .apps-list button { + border-radius: 0; + color: white; + font-weight: normal; +} + +/********************* + * CAJA File manager * + *********************/ +.caja-navigation-window button.toggle.image-button { + border-radius: 12px; +} + +.caja-pathbar button { + margin: 0 -1px 0 -2px; +} + +.caja-pathbar button.slider-button { + min-width: 24px; +} + +.caja-pathbar button > widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.caja-side-pane notebook viewport.frame, +.caja-side-pane notebook widget .vertical { + background-color: #2C2C2C; +} + +.caja-side-pane notebook, +.caja-notebook { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.caja-side-pane notebook .frame, +.caja-notebook .frame { + border-style: none; +} + +.caja-canvas-item { + border-radius: 12px; +} + +.caja-desktop.view .entry, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.caja-desktop.view .entry, +.caja-navigation-window .view .entry, +.caja-navigation-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view .entry, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .caja-navigation-window treeview.view .entry { + border: none; + border-radius: 12px; + background-color: rgba(255, 255, 255, 0.04); + background-image: none; + color: white; +} + +.caja-desktop.view .entry:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.caja-desktop.view .entry:selected, +.caja-navigation-window .view .entry:selected, +.caja-navigation-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view .entry:selected, +window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .caja-navigation-window treeview.view .entry:selected { + background-color: alpha(currentColor, 0.06); +} + +.caja-desktop.view .entry, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.caja-desktop.view .entry { + background-color: rgba(0, 0, 0, 0.3); + color: white; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); + caret-color: currentColor; +} + +.caja-desktop.view .entry:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.caja-desktop.view .entry:selected { + background-color: alpha(currentColor, 0.06); +} + +.caja-navigation-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.caja-notebook frame > border { + border-style: none; +} + +#caja-extra-view-widget { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + background-color: #2C2C2C; +} + +#caja-extra-view-widget > box > box > label { + font-weight: bold; +} + +/********* + * Pluma * + *********/ +.pluma-window statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.pluma-window statusbar frame > border { + border-style: none; +} + +.pluma-window statusbar frame button.flat { + padding: 0 4px; + border-radius: 0; +} + +.pluma-window statusbar frame button.flat widget { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + -GtkArrow-arrow-scaling: 1; +} + +.pluma-print-preview toolbar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.pluma-window paned.horizontal box.vertical box.horizontal button.flat { + margin: 1px; +} + +.pluma-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.pluma-window paned.horizontal box.vertical notebook.frame { + margin-top: -1px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.pluma-window paned.horizontal box.vertical notebook.frame box.vertical toolbar.horizontal { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +/********* + * Atril * + *********/ +.atril-window paned.horizontal box.vertical .frame { + border-style: none; +} + +.atril-window paned.horizontal box.vertical notebook .frame { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +/* mate-screensaver lock dialog */ +.lock-dialog { + border: 1px solid rgba(0, 0, 0, 0.16); + border-radius: 13px; + box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; +} + +.lock-dialog frame > border { + border-style: none; +} + +.lock-dialog button:not(:disabled) { + color: #3281ea; +} + +/* multimedia OSD */ +MsdOsdWindow.background.osd { + border-radius: 12px; + background-color: rgba(97, 97, 97, 0.9); + color: white; +} + +MsdOsdWindow.background.osd .trough { + border-radius: 0; + background-color: rgba(255, 255, 255, 0.12); +} + +MsdOsdWindow.background.osd .progressbar { + border-radius: 0; + background-color: #3281ea; +} + +/****************** + * Budgie Desktop * + ******************/ +.budgie-container { + background-color: transparent; +} + +.budgie-settings-window buttonbox.inline-toolbar { + border-style: none none solid; +} + +.budgie-settings-window buttonbox.inline-toolbar button { + border-radius: 12px; +} + +.budgie-popover { + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3); + border-radius: 13px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12); + background-color: #3C3C3C; +} + +.budgie-popover .container { + padding: 2px; +} + +.budgie-popover border { + border: none; +} + +.budgie-popover list { + background-color: transparent; +} + +.budgie-popover row { + padding: 0; +} + +.budgie-popover row:hover, .budgie-popover placessidebar.sidebar row:drop(active), placessidebar.sidebar .budgie-popover row:drop(active) { + box-shadow: none; +} + +.budgie-popover button.flat:not(.image-button) { + min-height: 28px; + padding: 0 8px; + color: white; + font-weight: normal; +} + +.budgie-popover button.flat:not(.image-button):disabled { + color: rgba(255, 255, 255, 0.5); +} + +.budgie-popover.budgie-menu .container { + padding: 0; +} + +.budgie-popover.budgie-menu .sidebar, +.budgie-popover.budgie-menu scrollbar, +.budgie-popover.budgie-menu entry.search { + background-color: transparent; +} + +.budgie-popover.budgie-menu entry.search { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); + border-image: none; + border-radius: 0; + box-shadow: none; + font-size: 120%; +} + +.budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item) { + min-height: 32px; + padding: 0 8px; + border-radius: 0; +} + +.budgie-popover.budgie-menu button.flat:not(.image-button):not(.indicator-item):checked:disabled { + background-color: transparent; +} + +.budgie-popover.user-menu .container { + padding: 8px; +} + +.budgie-popover.user-menu separator { + margin: 4px 0; +} + +.budgie-popover.user-menu list, +.budgie-popover.user-menu row { + border: none; + background: none; + box-shadow: none; +} + +.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child, .budgie-popover.user-menu > frame.container > box.vertical treeview.view header button:first-child, treeview.view header .budgie-popover.user-menu > frame.container > box.vertical button:first-child, .budgie-popover.user-menu > frame.container > box.vertical window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .budgie-popover.user-menu > frame.container > box.vertical button:first-child, .budgie-popover.user-menu > frame.container > box.vertical .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .budgie-popover.user-menu > frame.container > box.vertical button.flat:first-child:not(.image-button):not(.indicator-item) { + margin-bottom: 4px; + outline-width: 0; + border-radius: 12px; +} + +.budgie-popover.user-menu > frame.container > box.vertical row.activatable:first-child button.indicator-item, .budgie-popover.user-menu > frame.container > box.vertical treeview.view header button:first-child button.indicator-item, treeview.view header .budgie-popover.user-menu > frame.container > box.vertical button:first-child button.indicator-item, .budgie-popover.user-menu > frame.container > box.vertical window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header button:first-child button.indicator-item, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .budgie-popover.user-menu > frame.container > box.vertical button:first-child button.indicator-item, .budgie-popover.user-menu > frame.container > box.vertical .budgie-popover.budgie-menu button.flat:first-child:not(.image-button):not(.indicator-item) button.indicator-item, .budgie-popover.budgie-menu .budgie-popover.user-menu > frame.container > box.vertical button.flat:first-child:not(.image-button):not(.indicator-item) button.indicator-item { + transition: none; + animation: none; +} + +.budgie-popover.sound-popover separator { + margin: 3px 0; +} + +.budgie-popover.night-light-indicator .container { + padding: 8px; +} + +.budgie-popover.places-menu .container { + padding: 8px; +} + +.budgie-popover.places-menu .name-button image:dir(ltr) { + margin-right: 3px; +} + +.budgie-popover.places-menu .name-button image:dir(rtl) { + margin-left: 3px; +} + +.budgie-popover.places-menu .unmount-button { + margin: 2px; + padding: 0; +} + +.budgie-popover.places-menu .places-list:not(.always-expand) { + margin-top: 4px; + padding-top: 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-popover.places-menu .alternative-label { + padding: 3px; + font-size: 15px; +} + +.budgie-popover.workspace-popover .container { + padding: 8px; +} + +.budgie-popover.workspace-popover separator { + margin: 4px 0; +} + +.budgie-popover.workspace-popover flowboxchild { + padding: 0; +} + +.workspace-switcher .workspace-layout { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +.top .workspace-switcher .workspace-layout:dir(ltr), +.bottom .workspace-switcher .workspace-layout:dir(ltr) { + border-left-width: 1px; +} + +.top .workspace-switcher .workspace-layout:dir(rtl), +.bottom .workspace-switcher .workspace-layout:dir(rtl) { + border-right-width: 1px; +} + +.left .workspace-switcher .workspace-layout, +.right .workspace-switcher .workspace-layout { + border-top-width: 1px; +} + +.workspace-switcher .workspace-item, +.workspace-switcher .workspace-add-button { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +.top .workspace-switcher .workspace-item:dir(ltr), +.bottom .workspace-switcher .workspace-item:dir(ltr), .top +.workspace-switcher .workspace-add-button:dir(ltr), +.bottom +.workspace-switcher .workspace-add-button:dir(ltr) { + border-right-width: 1px; +} + +.top .workspace-switcher .workspace-item:dir(rtl), +.bottom .workspace-switcher .workspace-item:dir(rtl), .top +.workspace-switcher .workspace-add-button:dir(rtl), +.bottom +.workspace-switcher .workspace-add-button:dir(rtl) { + border-left-width: 1px; +} + +.left .workspace-switcher .workspace-item, +.right .workspace-switcher .workspace-item, .left +.workspace-switcher .workspace-add-button, +.right +.workspace-switcher .workspace-add-button { + border-bottom-width: 1px; +} + +.workspace-switcher .workspace-item { + transition: all 75ms cubic-bezier(0, 0, 0.2, 1); +} + +.workspace-switcher .workspace-item.current-workspace { + background-color: alpha(currentColor, 0.1); +} + +.workspace-switcher .workspace-add-button:hover { + box-shadow: none; +} + +.workspace-switcher .workspace-add-button:active { + background-image: none; +} + +.workspace-switcher .workspace-add-button:active image { + margin: 1px 0 -1px; +} + +.budgie-panel .workspace-switcher .workspace-icon-button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 12px; +} + +.budgie-panel button.budgie-menu-launcher { + padding: 0; + margin: 0; + min-width: 32px; + min-width: 32px; + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.budgie-menu-launcher, .budgie-panel button.budgie-menu-launcher:hover, +.budgie-panel button.budgie-menu-launcher:drop(active), .budgie-panel button.budgie-menu-launcher:active, .budgie-panel button.budgie-menu-launcher:checked { + background: none; + box-shadow: none; +} + +.budgie-panel button.budgie-menu-launcher image { + padding: 0; + margin: 0; + background-size: 32px 32px; + border-radius: 100px; + background-image: image(rgba(255, 255, 255, 0.12)); +} + +.budgie-panel button.budgie-menu-launcher:hover, +.budgie-panel button.budgie-menu-launcher:drop(active) { + color: white; +} + +.budgie-panel button.budgie-menu-launcher:hover image, .budgie-panel button.budgie-menu-launcher:drop(active) image { + background-image: image(rgba(255, 255, 255, 0.2)); +} + +.budgie-panel button.budgie-menu-launcher:active, .budgie-panel button.budgie-menu-launcher:checked { + color: white; +} + +.budgie-panel button.budgie-menu-launcher:active image, .budgie-panel button.budgie-menu-launcher:checked image { + background-image: image(rgba(255, 255, 255, 0.28)); +} + +.budgie-panel { + transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1); + background-color: #1F1F1F; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; + padding-left: 10px; + padding-right: 10px; +} + +.budgie-panel.transparent { + background-color: rgba(0, 0, 0, 0.6); +} + +.top .budgie-panel.transparent { + border-radius: 0 0 16px 16px; +} + +.bottom .budgie-panel.transparent { + border-radius: 16px 16px 0 0; +} + +.left .budgie-panel.transparent { + border-radius: 0 16px 16px 0; +} + +.right .budgie-panel.transparent { + border-radius: 16px 0 0 16px; +} + +.budgie-panel button { + min-height: 24px; + min-width: 24px; + padding: 0; + border-radius: 0; +} + +.budgie-panel button.budgie-menu-launcher:focus { + background: none; + box-shadow: none; + border: none; + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.raven-trigger { + background-image: -gtk-scaled(url("assets/scalable/circle-bg.svg")); + background-repeat: no-repeat; + background-position: center; + background-size: auto; + background-clip: padding-box; +} + +.budgie-panel button.raven-trigger, .budgie-panel button.raven-trigger:hover, +.budgie-panel button.raven-trigger:drop(active), .budgie-panel button.raven-trigger:focus, .budgie-panel button.raven-trigger:active, .budgie-panel button.raven-trigger:active:hover, +.budgie-panel button.raven-trigger:active:drop(active) { + background-color: transparent; + box-shadow: none; + animation: none; + background-size: auto; +} + +.budgie-panel button.raven-trigger:hover:not(:active), +.budgie-panel button.raven-trigger:not(:active):drop(active) { + background-image: -gtk-scaled(url("assets/scalable/circle-bg-hover.svg")); +} + +.budgie-panel button.raven-trigger:active, .budgie-panel button.raven-trigger:active:hover, +.budgie-panel button.raven-trigger:active:drop(active) { + background-image: -gtk-scaled(url("assets/scalable/circle-bg-active.svg")); +} + +.budgie-panel.horizontal button { + padding: 0 4px; +} + +.budgie-panel.vertical button { + padding: 4px 0; +} + +.budgie-panel separator { + background-color: rgba(255, 255, 255, 0.3); +} + +.budgie-panel .alert { + color: #F28B82; +} + +.budgie-panel .titlebar:not(headerbar) { + min-height: 0; + padding: 0; + box-shadow: none; + background-color: transparent; + color: white; +} + +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action) { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):hover, +.budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):drop(active), .budgie-panel .titlebar:not(headerbar) button:not(.suggested-action):not(.destructive-action):active { + color: white; +} + +.budgie-panel menubar, +.budgie-panel .menubar { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel menubar > menuitem, +.budgie-panel .menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel menubar > menuitem:hover, .budgie-panel menubar > menuitem:active, +.budgie-panel .menubar > menuitem:hover, +.budgie-panel .menubar > menuitem:active { + color: white; +} + +.budgie-panel menubar > menuitem > window.background.popup > decoration, +.budgie-panel menubar > menuitem > window.background.popup > menu, +.budgie-panel .menubar > menuitem > window.background.popup > decoration, +.budgie-panel .menubar > menuitem > window.background.popup > menu { + border-radius: 0 0 18px 18px; +} + +.budgie-panel #tasklist-button { + padding: 0 4px; +} + +.budgie-panel.vertical #tasklist-button { + min-height: 32px; +} + +.budgie-panel button.flat.launcher { + padding: 0; +} + +.budgie-panel button.flat.launcher:not(:checked) { + color: rgba(255, 255, 255, 0.5); +} + +.budgie-panel button.flat.launcher:not(:checked):hover, .budgie-panel toolbar button.launcher:not(:checked):drop(active), toolbar .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel .titlebar button.launcher:not(:checked):drop(active):not(.suggested-action):not(.destructive-action), .titlebar .budgie-panel button.launcher:not(:checked):drop(active):not(.suggested-action):not(.destructive-action), .budgie-panel popover.background.menu button.launcher:not(:checked):drop(active), popover.background.menu .budgie-panel button.launcher:not(:checked):drop(active), +.budgie-panel popover.background button.launcher.model:not(:checked):drop(active), popover.background .budgie-panel button.launcher.model:not(:checked):drop(active), .budgie-panel actionbar > revealer > box button.launcher:not(:checked):drop(active):not(.suggested-action):not(.destructive-action), actionbar > revealer > box .budgie-panel button.launcher:not(:checked):drop(active):not(.suggested-action):not(.destructive-action), .budgie-panel .app-notification button.launcher:not(:checked):drop(active), .app-notification .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel messagedialog.csd .dialog-action-box button.launcher:not(:checked):drop(active), messagedialog.csd .dialog-action-box .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel filechooser #pathbarbox > stack > box > button.launcher:not(:checked):drop(active), filechooser .budgie-panel #pathbarbox > stack > box > button.launcher:not(:checked):drop(active), .budgie-panel infobar.info button.launcher:not(:checked):drop(active), infobar.info .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel infobar.question button.launcher:not(:checked):drop(active), infobar.question .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel .lock-dialog button.launcher:not(:checked):drop(active), .lock-dialog .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel #buttonbox_frame button.launcher:not(:checked):drop(active), #buttonbox_frame .budgie-panel button.launcher:not(:checked):drop(active), .budgie-panel .nemo-window .toolbar button.launcher:not(:checked):drop(active), .nemo-window .toolbar .budgie-panel button.launcher:not(:checked):drop(active), +.budgie-panel button.flat.launcher:not(:checked):drop(active), .budgie-panel button.flat.launcher:not(:checked):active { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-panel button.flat.launcher:not(:checked):disabled { + color: rgba(255, 255, 255, 0.3); +} + +.top .budgie-panel #tasklist-button, .budgie-panel .top #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.top .budgie-panel #tasklist-button:checked, .budgie-panel .top #tasklist-button:checked, .top .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .top button.flat.launcher, +.top .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .top button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at center calc(1px), currentColor 100%, transparent 0%) 2 0 0 0/2px 0 0 0; +} + +.bottom .budgie-panel #tasklist-button, .budgie-panel .bottom #tasklist-button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.bottom .budgie-panel #tasklist-button:checked, .budgie-panel .bottom #tasklist-button:checked, .bottom .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .bottom button.flat.launcher, +.bottom .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .bottom button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2 0/0 0 2px 0; +} + +.left .budgie-panel #tasklist-button, .budgie-panel .left #tasklist-button { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.left .budgie-panel #tasklist-button:checked, .budgie-panel .left #tasklist-button:checked, .left .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .left button.flat.launcher, +.left .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .left button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at calc(1px) center, currentColor 100%, transparent 0%) 0 0 0 2/0 0 0 2px; +} + +.right .budgie-panel #tasklist-button, .budgie-panel .right #tasklist-button { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 0%, transparent 0%) 0 0 0 0/0 0 0 0; +} + +.right .budgie-panel #tasklist-button:checked, .budgie-panel .right #tasklist-button:checked, .right .budgie-panel .unpinned button.flat.launcher, .budgie-panel .unpinned .right button.flat.launcher, +.right .budgie-panel .pinned button.flat.launcher.running, .budgie-panel .pinned .right button.flat.launcher.running { + border-image: radial-gradient(circle closest-corner at calc(100% - 1px) center, currentColor 100%, transparent 0%) 0 2 0 0/0 2px 0 0; +} + +frame.raven-frame > border { + border-style: none; + box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12); +} + +.top frame.raven-frame > border { + margin-bottom: 32px; +} + +.bottom frame.raven-frame > border { + margin-top: 32px; +} + +.left frame.raven-frame > border { + margin-right: 32px; +} + +.right frame.raven-frame > border { + margin-left: 32px; +} + +.raven { + background-color: #3C3C3C; +} + +.raven > box { + margin-bottom: -10px; +} + +.raven stackswitcher.linked > button { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #3281ea 0%, transparent 0%) 0 0 0/0 0 0px; + border-radius: 0; +} + +.raven stackswitcher.linked > button:checked { + border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #3281ea 100%, transparent 0%) 0 0 2/0 0 2px; + background-color: transparent; +} + +.raven stackswitcher.linked > button:focus { + box-shadow: none; +} + +.raven .raven-header { + min-height: 32px; + padding: 3px; +} + +.raven .raven-header.top { + padding: 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.raven .raven-header.top stackswitcher button { + margin: -4px 0 -5px; + padding: 0 16px; + min-height: 40px; +} + +.raven .raven-header.bottom { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.raven stack .raven-header { + margin-top: -6px; +} + +.raven stack scrolledwindow .raven-header { + margin-top: -8px; +} + +.raven .raven-background { + border-style: solid none; + border-width: 1px; + border-color: rgba(255, 255, 255, 0.12); + background-color: #2C2C2C; +} + +.raven .raven-background > overlay > widget > image { + color: rgba(255, 255, 255, 0.12); +} + +.raven scrolledwindow.raven-background { + border-bottom-style: none; +} + +.raven .powerstrip button { + margin: 2px 0 1px; + padding: 8px; +} + +.raven .option-subtitle { + font-size: smaller; +} + +.raven .audio-widget scale.marks-after { + padding-top: 0; + padding-bottom: 0; +} + +.raven .audio-widget scale.marks-after label { + font-size: 90%; + padding: 0; + margin: -10px 0 0 6px; +} + +.raven .audio-widget button.flat.expander-button { + margin-top: 4px; + margin-bottom: 4px; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable:selected, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button:selected, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:selected, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:selected, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:selected:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:selected:not(.image-button):not(.indicator-item), .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button:checked, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:checked, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button:checked, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:checked, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:checked:not(.image-button):not(.indicator-item), .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:checked:not(.image-button):not(.indicator-item) { + background-color: rgba(255, 255, 255, 0.06); + color: white; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable:selected label, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button:selected label, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:selected label, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button:selected label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:selected label, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:selected:not(.image-button):not(.indicator-item) label, .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:selected:not(.image-button):not(.indicator-item) label, .raven .audio-widget list.devices-list.sound-devices > row.activatable:checked label, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button:checked label, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:checked label, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button:checked label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button:checked label, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:checked:not(.image-button):not(.indicator-item) label, .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:checked:not(.image-button):not(.indicator-item) label { + color: white; +} + +.raven .audio-widget list.devices-list.sound-devices > row.activatable label, .raven .audio-widget treeview.view header list.devices-list.sound-devices > button label, treeview.view header .raven .audio-widget list.devices-list.sound-devices > button label, .raven .audio-widget window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header list.devices-list.sound-devices > button label, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view header .raven .audio-widget list.devices-list.sound-devices > button label, .raven .audio-widget .budgie-popover.budgie-menu list.devices-list.sound-devices > button.flat:not(.image-button):not(.indicator-item) label, .budgie-popover.budgie-menu .raven .audio-widget list.devices-list.sound-devices > button.flat:not(.image-button):not(.indicator-item) label { + padding-left: 12px; +} + +calendar.raven-calendar { + border-style: none; + background-color: transparent; +} + +calendar.raven-calendar:selected { + border-radius: 12px; +} + +.raven-mpris { + background-color: rgba(0, 0, 0, 0.6); + color: white; +} + +.raven-mpris label { + min-height: 24px; +} + +.raven-mpris button.image-button { + padding: 8px; +} + +.budgie-notification-window, .budgie-osd-window, .budgie-switcher-window { + background-color: transparent; +} + +.budgie-notification .notification-title, .budgie-switcher .notification-title { + font-size: 120%; +} + +.budgie-notification .notification-body, .budgie-switcher .notification-body { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-osd .budgie-osd-text { + font-size: 120%; +} + +.budgie-panel .lock-keys image:disabled { + color: rgba(255, 255, 255, 0.3); +} + +.drop-shadow { + margin: 5px 9px; + padding: 3px; + border-radius: 18px; + box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; +} + +.drop-shadow .linked > button { + border-radius: 18px; +} + +.budgie-session-dialog, .budgie-polkit-dialog, .budgie-run-dialog { + border-radius: 18px; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; +} + +.budgie-session-dialog decoration, .budgie-polkit-dialog decoration, .budgie-run-dialog decoration { + border-radius: 18px; +} + +.budgie-session-dialog label:not(:last-child), +.budgie-session-dialog .dialog-title { + font-size: 120%; +} + +.budgie-session-dialog .linked.horizontal > button { + padding: 8px 16px; + border-top: 1px solid rgba(255, 255, 255, 0.12); + border-radius: 0; +} + +.budgie-session-dialog .linked.horizontal > button:first-child { + border-bottom-left-radius: 18px; +} + +.budgie-session-dialog .linked.horizontal > button:last-child { + border-bottom-right-radius: 18px; +} + +.budgie-polkit-dialog .message { + color: rgba(255, 255, 255, 0.7); +} + +.budgie-polkit-dialog .failure { + color: #F28B82; +} + +.budgie-run-dialog { + background-color: #2C2C2C; +} + +.budgie-run-dialog entry.search { + font-size: 120%; + padding: 4px 12px; + border-image: none; + box-shadow: none; + background-color: transparent; +} + +.budgie-run-dialog list .dim-label { + color: white; +} + +.budgie-run-dialog scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.budgie-settings-window list.sidebar { + border-radius: 0 0 0 18px; +} + +/************** + * Xfce4 Apps * + **************/ +.XfceHeading { + background-color: #2C2C2C; +} + +/*************** + * xfce4-panel * + ***************/ +.xfce4-panel.background { + border: none; + background-color: #1F1F1F; + color: rgba(255, 255, 255, 0.7); + font-weight: 500; +} + +.xfce4-panel.background button { + min-height: 16px; + min-width: 16px; + padding: 0; + border-radius: 0; +} + +.xfce4-panel.background .tasklist button { + border-image: image(transparent) 0 0 2/0 0 2px; +} + +.xfce4-panel.background .tasklist button:checked { + border-image: image(currentColor) 0 0 2/0 0 2px; +} + +.xfce4-panel.background .tasklist button image { + padding: 4px; +} + +wnck-pager:hover { + background-color: alpha(currentColor, 0.08); +} + +wnck-pager:active { + background-color: alpha(currentColor, 0.12); +} + +wnck-pager:selected { + background-color: #3281ea; +} + +XfdesktopIconView.view { + border-radius: 12px; + background-color: transparent; + color: white; + text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12); +} + +XfdesktopIconView.view:active { + box-shadow: none; +} + +XfdesktopIconView.view .rubberband { + border-radius: 0; +} + +#XfceNotifyWindow buttonbox { + padding: 0; +} + +#XfceNotifyWindow label#summary { + font-weight: bold; +} + +#xfwm-tabwin { + padding: 12px; + border-radius: 12px; + -XfwmTabwinWidget-icon-size: 64px; + -XfwmTabwinWidget-preview-size: 64px; +} + +/********** + * Thunar * + **********/ +.thunar #location-toolbar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.thunar .standard-view.frame { + border-style: none; +} + +.thunar .sidebar .view:not(:selected), .thunar .sidebar window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .thunar .sidebar treeview.view:not(:selected) { + background-color: transparent; +} + +.thunar statusbar { + margin: 0 -10px; + padding: 0 4px; + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + +.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane { + border-top: none; +} + +window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane { + border-bottom-left-radius: 18px; +} + +window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane treeview.view:not(:hover):not(:selected), filechooser stack.view window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane treeview.view:not(:hover):not(:selected), window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:hover):not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwindow.frame.sidebar.shortcuts-pane treeview.view:not(:hover):not(:selected) { + background-color: transparent; +} + +/************************ + * LightDM GTK+ Greeter * + ************************/ +#panel_window { + background-color: rgba(0, 0, 0, 0.3); + color: white; +} + +#panel_window menubar, +#panel_window separator { + background-color: transparent; +} + +#panel_window separator { + padding: 0 4px; +} + +#panel_window separator:first-child { + padding: 0 8px; +} + +#panel_window menubar > menuitem { + color: rgba(255, 255, 255, 0.7); +} + +#panel_window menubar > menuitem:hover { + color: white; +} + +#panel_window menubar > menuitem:disabled label { + color: rgba(255, 255, 255, 0.3); +} + +#login_window, +#shutdown_dialog, +#restart_dialog { + margin: 8px; + border-radius: 12px; + box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1); + background-color: #3C3C3C; +} + +#content_frame { + padding-bottom: 16px; +} + +#buttonbox_frame { + padding-top: 24px; +} + +#buttonbox_frame > box, +#buttonbox_frame > buttonbox { + margin: -16px; +} + +#buttonbox_frame button:not(:disabled) { + color: #3281ea; +} + +/******** + * Nemo * + ********/ +.nemo-window .primary-toolbar { + border-bottom: 1px solid rgba(255, 255, 255, 0.12); +} + +.nemo-window .primary-toolbar entry { + min-height: 0; + margin: 0; +} + +.nemo-window .primary-toolbar button.text-button { + padding-left: 8px; + padding-right: 8px; +} + +.nemo-window .primary-toolbar button:not(.text-button):not(.image-button) { + padding-left: 4px; + padding-right: 4px; +} + +.nemo-window scrolledwindow.frame { + border-style: none; +} + +.nemo-window scrolledwindow.frame .view:not(:selected), .nemo-window scrolledwindow.frame window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window scrolledwindow.frame treeview.view:not(:selected) { + background-color: transparent; +} + +.nemo-window infobar { + margin-top: -6px; +} + +.nemo-window .nemo-inactive-pane .view:not(:selected), .nemo-window .nemo-inactive-pane window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window .nemo-inactive-pane treeview.view:not(:selected) { + background-color: #242424; +} + +.nemo-window .nemo-window-pane widget.entry { + border-radius: 12px; + background-color: rgba(255, 255, 255, 0.04); +} + +.places-treeview { + -NemoPlacesTreeView-disk-full-bg-color: #646464; + -NemoPlacesTreeView-disk-full-fg-color: #3281ea; + -NemoPlacesTreeView-disk-full-bar-width: 2px; + -NemoPlacesTreeView-disk-full-bar-radius: 0; + -NemoPlacesTreeView-disk-full-bottom-padding: 1px; + -NemoPlacesTreeView-disk-full-max-length: 80px; +} + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color white; +/* +text color for entries, views and content in general */ +@define-color theme_text_color white; +/* +widget base background color */ +@define-color theme_bg_color #212121; +/* +text widgets and the like base background color */ +@define-color theme_base_color #2C2C2C; +/* +base background color of selections */ +@define-color theme_selected_bg_color #3281ea; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color white; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #212121; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color rgba(255, 255, 255, 0.5); +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #242424; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color white; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color white; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #212121; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #2C2C2C; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #3281ea; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color white; +/* +insensitive color on backdrop windows */ +@define-color unfocused_insensitive_color rgba(255, 255, 255, 0.5); +/* +widgets main borders color */ +@define-color borders rgba(255, 255, 255, 0.12); +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders rgba(255, 255, 255, 0.12); +/* +these are pretty self explicative */ +@define-color warning_color #FDD633; +@define-color error_color #F28B82; +@define-color success_color #81C995; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title white; +@define-color wm_unfocused_title rgba(255, 255, 255, 0.7); +@define-color wm_highlight rgba(255, 255, 255, 0.1); +@define-color wm_bg #2C2C2C; +@define-color wm_unfocused_bg #2C2C2C; +/* +FIXME this is really an API */ +@define-color content_view_bg #2C2C2C; +@define-color placeholder_text_color silver; +@define-color budgie_tasklist_indicator_color white; +@define-color budgie_tasklist_indicator_color_active white; +@define-color budgie_tasklist_indicator_color_active_window #989898; +@define-color budgie_tasklist_indicator_color_attention #FDD633; diff --git a/src/gtk/3.0/gtk-dark-compact.scss b/src/gtk/3.0/gtk-dark-compact.scss new file mode 100644 index 0000000..e1e982a --- /dev/null +++ b/src/gtk/3.0/gtk-dark-compact.scss @@ -0,0 +1,10 @@ +$variant: 'dark'; +$topbar: 'dark'; +$compact: 'true'; + +@import '../../_sass/variables'; +@import '../../_sass/colors'; +@import '../../_sass/gtk/drawing-3.20'; +@import '../../_sass/gtk/common-3.20'; +@import '../../_sass/gtk/apps-3.22'; +@import '../../_sass/gtk/colors-public'; diff --git a/src/gtk/3.0/gtk-dark.css b/src/gtk/3.0/gtk-dark.css index 3dd6be0..d89e873 100644 --- a/src/gtk/3.0/gtk-dark.css +++ b/src/gtk/3.0/gtk-dark.css @@ -122,7 +122,7 @@ textview text { } textview border { - background-color: #2C2C2C; + background-color: #242424; color: rgba(255, 255, 255, 0.7); } @@ -380,7 +380,7 @@ entry progress { .gedit-search-slider .linked:not(.vertical) > entry:disabled { box-shadow: inset 0 0 0 2px transparent; - background-color: #2C2C2C; + background-color: #242424; color: rgba(255, 255, 255, 0.5); } @@ -399,7 +399,7 @@ entry progress { .gedit-search-slider .linked:not(.vertical) > entry.error:disabled { box-shadow: inset 0 0 0 2px transparent; - background-color: #2C2C2C; + background-color: #242424; color: rgba(255, 255, 255, 0.5); } @@ -430,7 +430,7 @@ entry progress { .gedit-search-slider .linked:not(.vertical) > entry.warning:disabled { box-shadow: inset 0 0 0 2px transparent; - background-color: #2C2C2C; + background-color: #242424; color: rgba(255, 255, 255, 0.5); } @@ -1388,7 +1388,7 @@ toolbar:not(.inline-toolbar):not(.osd) switch { border-style: solid; border-width: 0 1px 1px; border-color: rgba(0, 0, 0, 0.16); - background-color: #2C2C2C; + background-color: #242424; } searchbar > revealer > box, @@ -2129,7 +2129,7 @@ popover.background list separator { *************/ frame > paned > notebook > header, notebook.frame > header { - background-color: #2C2C2C; + background-color: #242424; } notebook:focus tab:checked { @@ -2266,7 +2266,7 @@ notebook > header tab { } notebook > header tab:hover, notebook > header tab > box:drop(active) { - background-color: alpha(currentColor, 0.08); + background-color: rgba(0, 0, 0, 0.16); color: white; } @@ -3508,7 +3508,7 @@ filechooser stack.view scrolledwindow treeview.view, filechooser stack.view wind ***********/ .sidebar { border-style: none; - background-color: #2C2C2C; + background-color: #242424; } stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:not(separator):dir(ltr), .sidebar:not(separator).left, .sidebar:not(separator).left:dir(rtl) { @@ -3531,7 +3531,7 @@ paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned . stacksidebar.sidebar list { padding: 4px; - background-color: #2C2C2C; + background-color: #242424; } stacksidebar.sidebar row { @@ -3747,7 +3747,7 @@ infobar.error *:link, infobar.error button.link:link { * Tooltips * ************/ tooltip { - border-radius: 9999px; + border-radius: 6px; box-shadow: none; } @@ -3932,7 +3932,7 @@ modelbutton.flat:selected, background-color: alpha(currentColor, 0.06); } -flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window .view selection, .nautilus-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nautilus-window treeview.view selection, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view selection, .nautilus-window .view:selected, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view:selected, .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected { +flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window notebook :not(treeview).view selection, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview) selection, filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview) selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook .view:selected:not(treeview), .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:selected:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected { color: #3281ea; background-color: rgba(50, 129, 234, 0.2); } @@ -4339,7 +4339,7 @@ popover.emoji-completion .emoji:hover { background-color: transparent; } -.nautilus-window .view, .nautilus-window filechooser stack.view scrolledwindow treeview.view, filechooser stack.view scrolledwindow .nautilus-window treeview.view, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view { +.nautilus-window notebook :not(treeview).view, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) { border-radius: 6px; } @@ -4390,7 +4390,7 @@ dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal: } .nautilus-window paned > separator { - background-color: #2C2C2C; + background-color: #242424; } /********* @@ -4407,7 +4407,7 @@ dialog.background > box.dialog-vbox.vertical > grid.horizontal > box.horizontal: } .gedit-document-panel { - background-color: #2C2C2C; + background-color: #242424; } .gedit-document-panel row button.flat { @@ -4505,7 +4505,7 @@ frame.gedit-map-frame > border:dir(rtl) { * Tweaks * **********/ .tweak-categories { - background-image: image(#2C2C2C); + background-image: image(#242424); } .csd .tweak-categories { @@ -4812,7 +4812,7 @@ entry.preferences-search { } preferences stacksidebar.sidebar list { - background-color: #2C2C2C; + background-color: #242424; } preferences stacksidebar.sidebar:dir(ltr) list, preferences stacksidebar.sidebar:dir(rtl) list { @@ -5118,11 +5118,11 @@ overlay grid.horizontal > revealer > scrolledwindow.frame:dir(rtl) { } .side-panel .view, .side-panel filechooser stack.view scrolledwindow treeview.view, filechooser stack.view scrolledwindow .side-panel treeview.view, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view { - background-image: image(#2C2C2C); + background-image: image(#242424); } .side-panel .view:hover, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:hover, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:hover { - background-image: image(#3d3d3d); + background-image: image(#363636); } .side-panel .view:selected, .side-panel window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .side-panel treeview.view:selected { @@ -5328,7 +5328,7 @@ box.dialog-vbox scrolledwindow.related { } list.categories { - background-image: image(#2C2C2C); + background-image: image(#242424); } /********* @@ -5579,7 +5579,7 @@ tooltip.background.chromium { } #MozillaGtkWidget > widget > entry:disabled { - background-color: #2C2C2C; + background-color: #242424; } #MozillaGtkWidget > widget > button > button { @@ -7173,7 +7173,7 @@ window.background.csd.thunar > grid.horizontal > paned.horizontal > scrolledwind } .nemo-window .nemo-inactive-pane .view:not(:selected), .nemo-window .nemo-inactive-pane window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(:selected), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window .nemo-inactive-pane treeview.view:not(:selected) { - background-color: #2C2C2C; + background-color: #242424; } .nemo-window .nemo-window-pane widget.entry { @@ -7219,7 +7219,7 @@ text foreground color of insensitive widgets */ @define-color insensitive_fg_color rgba(255, 255, 255, 0.5); /* insensitive text widgets and the like base background color */ -@define-color insensitive_base_color #2C2C2C; +@define-color insensitive_base_color #242424; /* widget text/foreground color on backdrop windows */ @define-color theme_unfocused_fg_color white; diff --git a/src/gtk/3.0/gtk.css b/src/gtk/3.0/gtk.css index bfc3279..5b5077e 100644 --- a/src/gtk/3.0/gtk.css +++ b/src/gtk/3.0/gtk.css @@ -2265,7 +2265,7 @@ notebook > header tab { } notebook > header tab:hover, notebook > header tab > box:drop(active) { - background-color: alpha(currentColor, 0.08); + background-color: rgba(0, 0, 0, 0.08); color: rgba(0, 0, 0, 0.87); } @@ -3746,7 +3746,7 @@ infobar.error *:link, infobar.error button.link:link { * Tooltips * ************/ tooltip { - border-radius: 9999px; + border-radius: 6px; box-shadow: none; } @@ -3931,7 +3931,7 @@ modelbutton.flat:selected, background-color: alpha(currentColor, 0.06); } -flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window .view selection, .nautilus-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nautilus-window treeview.view selection, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view selection, .nautilus-window .view:selected, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view:selected, .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected { +flowbox flowboxchild:selected, .nautilus-window flowboxchild:selected .icon-item-background, .nautilus-window notebook :not(treeview).view selection, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview) selection, filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview) selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) selection, .nautilus-window notebook .view:selected:not(treeview), .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:selected:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:selected:not(treeview), .nemo-window .view selection, .nemo-window filechooser stack.view scrolledwindow treeview.view selection, filechooser stack.view scrolledwindow .nemo-window treeview.view selection, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view selection, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view selection, .nemo-window .view:selected, .nemo-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:selected, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nemo-window treeview.view:selected { color: #1A73E8; background-color: rgba(50, 129, 234, 0.2); } @@ -4338,7 +4338,7 @@ popover.emoji-completion .emoji:hover { background-color: transparent; } -.nautilus-window .view, .nautilus-window filechooser stack.view scrolledwindow treeview.view, filechooser stack.view scrolledwindow .nautilus-window treeview.view, .nautilus-window window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view, window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window treeview.view { +.nautilus-window notebook :not(treeview).view, .nautilus-window notebook filechooser stack.view scrolledwindow treeview.view:not(treeview), filechooser stack.view scrolledwindow .nautilus-window notebook treeview.view:not(treeview), .nautilus-window notebook window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow treeview.view:not(treeview), window#gnome-system-monitor.background.csd > box.vertical > stack > box.vertical > scrolledwindow .nautilus-window notebook treeview.view:not(treeview) { border-radius: 6px; } diff --git a/src/gtk/assets.svg b/src/gtk/assets.svg index 8afa9c5..8b3d1b9 100644 --- a/src/gtk/assets.svg +++ b/src/gtk/assets.svg @@ -110,7 +110,7 @@ id="color-primary-light">