diff --git a/install.sh b/install.sh index d594200d..07559243 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,5 @@ #! /usr/bin/env bash -set -ueo pipefail set -o physical -#set -x REPO_DIR=$(cd $(dirname $0) && pwd) SRC_DIR=${REPO_DIR}/src @@ -871,7 +869,7 @@ fi # Install GDM theme if [[ "${gdm:-}" == 'true' && "${remove:-}" != 'true' && "$UID" -eq "$ROOT_UID" ]]; then - install_theme && install_gdm "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${theme}" + install_theme && install_gdm "${dest:-${DEST_DIR}}" "${name:-${THEME_NAME}}" "${color}" "${opacity}" "${theme}" "${icon}" fi # Remove themes diff --git a/src/main/gnome-shell/gdm3-dark-blue.css b/src/main/gnome-shell/gdm3-dark-blue.css index 138381f8..370196fe 100644 --- a/src/main/gnome-shell/gdm3-dark-blue.css +++ b/src/main/gnome-shell/gdm3-dark-blue.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-dark-green.css b/src/main/gnome-shell/gdm3-dark-green.css index e577b208..5a4f2b2e 100644 --- a/src/main/gnome-shell/gdm3-dark-green.css +++ b/src/main/gnome-shell/gdm3-dark-green.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-dark-grey.css b/src/main/gnome-shell/gdm3-dark-grey.css index 6b831609..0f27c96e 100644 --- a/src/main/gnome-shell/gdm3-dark-grey.css +++ b/src/main/gnome-shell/gdm3-dark-grey.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-dark-orange.css b/src/main/gnome-shell/gdm3-dark-orange.css index ef89e0e9..4d6c9ca9 100644 --- a/src/main/gnome-shell/gdm3-dark-orange.css +++ b/src/main/gnome-shell/gdm3-dark-orange.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-dark-pink.css b/src/main/gnome-shell/gdm3-dark-pink.css index 0e268d2a..c0be62e1 100644 --- a/src/main/gnome-shell/gdm3-dark-pink.css +++ b/src/main/gnome-shell/gdm3-dark-pink.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-dark-purple.css b/src/main/gnome-shell/gdm3-dark-purple.css index 03d965ee..2c2a917d 100644 --- a/src/main/gnome-shell/gdm3-dark-purple.css +++ b/src/main/gnome-shell/gdm3-dark-purple.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-dark-red.css b/src/main/gnome-shell/gdm3-dark-red.css index 3d1b10f0..f3c4a680 100644 --- a/src/main/gnome-shell/gdm3-dark-red.css +++ b/src/main/gnome-shell/gdm3-dark-red.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-dark-yellow.css b/src/main/gnome-shell/gdm3-dark-yellow.css index 72f6778a..ac7c0b55 100644 --- a/src/main/gnome-shell/gdm3-dark-yellow.css +++ b/src/main/gnome-shell/gdm3-dark-yellow.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #F3BA4B; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #F3BA4B; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #F3BA4B; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-dark.css b/src/main/gnome-shell/gdm3-dark.css index 053a34e9..287c36d5 100644 --- a/src/main/gnome-shell/gdm3-dark.css +++ b/src/main/gnome-shell/gdm3-dark.css @@ -61,9 +61,9 @@ stage { .candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -350,7 +350,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -413,7 +413,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -555,11 +554,7 @@ stage { } .message { - margin: 0 4px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1047,9 +1042,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1272,7 +1265,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1427,7 +1419,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1495,7 +1486,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,6 +1618,7 @@ StEntry StLabel.hint-text { padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1639,6 +1631,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { diff --git a/src/main/gnome-shell/gdm3-light-blue.css b/src/main/gnome-shell/gdm3-light-blue.css index 09e54132..426fca8f 100644 --- a/src/main/gnome-shell/gdm3-light-blue.css +++ b/src/main/gnome-shell/gdm3-light-blue.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-light-green.css b/src/main/gnome-shell/gdm3-light-green.css index f5a5de3b..0ea03e8d 100644 --- a/src/main/gnome-shell/gdm3-light-green.css +++ b/src/main/gnome-shell/gdm3-light-green.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-light-grey.css b/src/main/gnome-shell/gdm3-light-grey.css index 7959e46b..79b2f45d 100644 --- a/src/main/gnome-shell/gdm3-light-grey.css +++ b/src/main/gnome-shell/gdm3-light-grey.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-light-orange.css b/src/main/gnome-shell/gdm3-light-orange.css index edb9ab64..5e5038d0 100644 --- a/src/main/gnome-shell/gdm3-light-orange.css +++ b/src/main/gnome-shell/gdm3-light-orange.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-light-pink.css b/src/main/gnome-shell/gdm3-light-pink.css index 2776657d..f8e73417 100644 --- a/src/main/gnome-shell/gdm3-light-pink.css +++ b/src/main/gnome-shell/gdm3-light-pink.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-light-purple.css b/src/main/gnome-shell/gdm3-light-purple.css index 9d2d05b2..7f9760cd 100644 --- a/src/main/gnome-shell/gdm3-light-purple.css +++ b/src/main/gnome-shell/gdm3-light-purple.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-light-red.css b/src/main/gnome-shell/gdm3-light-red.css index 3f9cac84..bcc216e7 100644 --- a/src/main/gnome-shell/gdm3-light-red.css +++ b/src/main/gnome-shell/gdm3-light-red.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-light-yellow.css b/src/main/gnome-shell/gdm3-light-yellow.css index 48ed76dd..c0ae8379 100644 --- a/src/main/gnome-shell/gdm3-light-yellow.css +++ b/src/main/gnome-shell/gdm3-light-yellow.css @@ -62,12 +62,12 @@ stage { box-shadow: none; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content { +.candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -354,7 +354,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #F3BA4B; border: none; @@ -418,7 +418,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -560,11 +559,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1052,9 +1047,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1277,7 +1270,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1432,7 +1424,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1500,7 +1491,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,21 +1618,12 @@ StEntry StLabel.hint-text { selected-color: #F3BA4B; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1654,6 +1636,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -1748,7 +1731,19 @@ StEntry StLabel.hint-text { background-color: #F3BA4B; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -1766,6 +1761,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gdm3-light.css b/src/main/gnome-shell/gdm3-light.css index 87e24ec8..95cffcf2 100644 --- a/src/main/gnome-shell/gdm3-light.css +++ b/src/main/gnome-shell/gdm3-light.css @@ -61,9 +61,9 @@ stage { .candidate-popup-content, .popup-menu .popup-menu-content { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough { @@ -350,7 +350,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -413,7 +413,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -555,11 +554,7 @@ stage { } .message { - margin: 0 4px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1047,9 +1042,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -1272,7 +1265,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -1427,7 +1419,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -1495,7 +1486,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -1627,6 +1618,7 @@ StEntry StLabel.hint-text { padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -1639,6 +1631,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { diff --git a/src/main/gnome-shell/gnome-shell-dark-alt-blue.css b/src/main/gnome-shell/gnome-shell-dark-alt-blue.css index 12107a9e..874f8a3d 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt-blue.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt-blue.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-alt-green.css b/src/main/gnome-shell/gnome-shell-dark-alt-green.css index 822e9b31..87d8f6de 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt-green.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt-green.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-alt-grey.css b/src/main/gnome-shell/gnome-shell-dark-alt-grey.css index c78e673c..439163d0 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt-grey.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt-grey.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-alt-orange.css b/src/main/gnome-shell/gnome-shell-dark-alt-orange.css index 5c2f8897..5ef6876e 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt-orange.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt-orange.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-alt-pink.css b/src/main/gnome-shell/gnome-shell-dark-alt-pink.css index 91727576..adfcea44 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt-pink.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt-pink.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-alt-purple.css b/src/main/gnome-shell/gnome-shell-dark-alt-purple.css index 7851c034..20498104 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt-purple.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt-purple.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-alt-red.css b/src/main/gnome-shell/gnome-shell-dark-alt-red.css index 71976dcb..ca91a2e7 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt-red.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt-red.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-alt-yellow.css b/src/main/gnome-shell/gnome-shell-dark-alt-yellow.css index 957bb8a7..c1ff55eb 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt-yellow.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt-yellow.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #F3BA4B; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #F3BA4B; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #F3BA4B; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-alt.css b/src/main/gnome-shell/gnome-shell-dark-alt.css index adbf13d7..91a711b0 100644 --- a/src/main/gnome-shell/gnome-shell-dark-alt.css +++ b/src/main/gnome-shell/gnome-shell-dark-alt.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #0860F2; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #0860F2; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-blue.css b/src/main/gnome-shell/gnome-shell-dark-blue.css index 12107a9e..874f8a3d 100644 --- a/src/main/gnome-shell/gnome-shell-dark-blue.css +++ b/src/main/gnome-shell/gnome-shell-dark-blue.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-green.css b/src/main/gnome-shell/gnome-shell-dark-green.css index 822e9b31..87d8f6de 100644 --- a/src/main/gnome-shell/gnome-shell-dark-green.css +++ b/src/main/gnome-shell/gnome-shell-dark-green.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-grey.css b/src/main/gnome-shell/gnome-shell-dark-grey.css index c78e673c..439163d0 100644 --- a/src/main/gnome-shell/gnome-shell-dark-grey.css +++ b/src/main/gnome-shell/gnome-shell-dark-grey.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-orange.css b/src/main/gnome-shell/gnome-shell-dark-orange.css index 5c2f8897..5ef6876e 100644 --- a/src/main/gnome-shell/gnome-shell-dark-orange.css +++ b/src/main/gnome-shell/gnome-shell-dark-orange.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-pink.css b/src/main/gnome-shell/gnome-shell-dark-pink.css index 91727576..adfcea44 100644 --- a/src/main/gnome-shell/gnome-shell-dark-pink.css +++ b/src/main/gnome-shell/gnome-shell-dark-pink.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-purple.css b/src/main/gnome-shell/gnome-shell-dark-purple.css index 7851c034..20498104 100644 --- a/src/main/gnome-shell/gnome-shell-dark-purple.css +++ b/src/main/gnome-shell/gnome-shell-dark-purple.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-red.css b/src/main/gnome-shell/gnome-shell-dark-red.css index 71976dcb..ca91a2e7 100644 --- a/src/main/gnome-shell/gnome-shell-dark-red.css +++ b/src/main/gnome-shell/gnome-shell-dark-red.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt-blue.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt-blue.css index 73dab021..a8eb1182 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt-blue.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt-blue.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt-green.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt-green.css index 4ef75ca3..c6a50868 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt-green.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt-green.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt-grey.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt-grey.css index 651bd04c..4dad4c7a 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt-grey.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt-grey.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt-orange.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt-orange.css index 01daebde..f63c2f65 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt-orange.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt-orange.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt-pink.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt-pink.css index ef940615..5ea518a3 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt-pink.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt-pink.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt-purple.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt-purple.css index ca2215a0..7ace7aa9 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt-purple.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt-purple.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt-red.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt-red.css index a4aa28d6..b87a7494 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt-red.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt-red.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt-yellow.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt-yellow.css index bfcdadcd..0c7ff9d4 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt-yellow.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt-yellow.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #F3BA4B; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #F3BA4B; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #F3BA4B; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-alt.css b/src/main/gnome-shell/gnome-shell-dark-solid-alt.css index 5d3499fd..3216f810 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-alt.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-alt.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #0860F2; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #0860F2; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-blue.css b/src/main/gnome-shell/gnome-shell-dark-solid-blue.css index 73dab021..a8eb1182 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-blue.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-blue.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-green.css b/src/main/gnome-shell/gnome-shell-dark-solid-green.css index 4ef75ca3..c6a50868 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-green.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-green.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-grey.css b/src/main/gnome-shell/gnome-shell-dark-solid-grey.css index 651bd04c..4dad4c7a 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-grey.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-grey.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-orange.css b/src/main/gnome-shell/gnome-shell-dark-solid-orange.css index 01daebde..f63c2f65 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-orange.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-orange.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-pink.css b/src/main/gnome-shell/gnome-shell-dark-solid-pink.css index ef940615..5ea518a3 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-pink.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-pink.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-purple.css b/src/main/gnome-shell/gnome-shell-dark-solid-purple.css index ca2215a0..7ace7aa9 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-purple.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-purple.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-red.css b/src/main/gnome-shell/gnome-shell-dark-solid-red.css index a4aa28d6..b87a7494 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-red.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-red.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid-yellow.css b/src/main/gnome-shell/gnome-shell-dark-solid-yellow.css index bfcdadcd..0c7ff9d4 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid-yellow.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid-yellow.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #F3BA4B; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #F3BA4B; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #242424; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #F3BA4B; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark-solid.css b/src/main/gnome-shell/gnome-shell-dark-solid.css index c884d66c..d049f9a4 100644 --- a/src/main/gnome-shell/gnome-shell-dark-solid.css +++ b/src/main/gnome-shell/gnome-shell-dark-solid.css @@ -156,9 +156,9 @@ stage { .candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #242424; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -445,7 +445,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -508,7 +508,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -650,11 +649,7 @@ stage { } .message { - margin: 0 4px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1984,9 +1979,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2939,7 +2932,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(42, 42, 42, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3094,7 +3086,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #2a2a2a; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3162,7 +3153,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,6 +3285,7 @@ StEntry StLabel.hint-text { padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3306,6 +3298,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { diff --git a/src/main/gnome-shell/gnome-shell-dark-yellow.css b/src/main/gnome-shell/gnome-shell-dark-yellow.css index 957bb8a7..c1ff55eb 100644 --- a/src/main/gnome-shell/gnome-shell-dark-yellow.css +++ b/src/main/gnome-shell/gnome-shell-dark-yellow.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #F3BA4B; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #F3BA4B; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(36, 36, 36, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #F3BA4B; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0.75); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-dark.css b/src/main/gnome-shell/gnome-shell-dark.css index b62ac6f6..d222631c 100644 --- a/src/main/gnome-shell/gnome-shell-dark.css +++ b/src/main/gnome-shell/gnome-shell-dark.css @@ -156,9 +156,9 @@ stage { .candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(36, 36, 36, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 1px; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -445,7 +445,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -508,7 +508,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -650,11 +649,7 @@ stage { } .message { - margin: 0 4px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1984,9 +1979,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2939,7 +2932,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(0, 0, 0, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3094,7 +3086,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(0, 0, 0, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3162,7 +3153,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0.75); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,6 +3285,7 @@ StEntry StLabel.hint-text { padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3306,6 +3298,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { diff --git a/src/main/gnome-shell/gnome-shell-light-alt-blue.css b/src/main/gnome-shell/gnome-shell-light-alt-blue.css index 94268b89..d2b790e2 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt-blue.css +++ b/src/main/gnome-shell/gnome-shell-light-alt-blue.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-alt-green.css b/src/main/gnome-shell/gnome-shell-light-alt-green.css index 6525117f..6bcf6741 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt-green.css +++ b/src/main/gnome-shell/gnome-shell-light-alt-green.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-alt-grey.css b/src/main/gnome-shell/gnome-shell-light-alt-grey.css index 4ce14d39..9ade9346 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt-grey.css +++ b/src/main/gnome-shell/gnome-shell-light-alt-grey.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-alt-orange.css b/src/main/gnome-shell/gnome-shell-light-alt-orange.css index ce56d2b2..7ea2ed5d 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt-orange.css +++ b/src/main/gnome-shell/gnome-shell-light-alt-orange.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-alt-pink.css b/src/main/gnome-shell/gnome-shell-light-alt-pink.css index 06733797..572b9595 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt-pink.css +++ b/src/main/gnome-shell/gnome-shell-light-alt-pink.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-alt-purple.css b/src/main/gnome-shell/gnome-shell-light-alt-purple.css index 192d6817..38736191 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt-purple.css +++ b/src/main/gnome-shell/gnome-shell-light-alt-purple.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-alt-red.css b/src/main/gnome-shell/gnome-shell-light-alt-red.css index dbe647dc..5e7ce4d1 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt-red.css +++ b/src/main/gnome-shell/gnome-shell-light-alt-red.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-alt-yellow.css b/src/main/gnome-shell/gnome-shell-light-alt-yellow.css index b347a533..afbd5f88 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt-yellow.css +++ b/src/main/gnome-shell/gnome-shell-light-alt-yellow.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #F3BA4B; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #F3BA4B; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #F3BA4B; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-alt.css b/src/main/gnome-shell/gnome-shell-light-alt.css index 8cbb6fcc..d6206d10 100644 --- a/src/main/gnome-shell/gnome-shell-light-alt.css +++ b/src/main/gnome-shell/gnome-shell-light-alt.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #0860F2; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #0860F2; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-blue.css b/src/main/gnome-shell/gnome-shell-light-blue.css index ce4d1846..8b965ac6 100644 --- a/src/main/gnome-shell/gnome-shell-light-blue.css +++ b/src/main/gnome-shell/gnome-shell-light-blue.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-green.css b/src/main/gnome-shell/gnome-shell-light-green.css index 80b51141..48ac2680 100644 --- a/src/main/gnome-shell/gnome-shell-light-green.css +++ b/src/main/gnome-shell/gnome-shell-light-green.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-grey.css b/src/main/gnome-shell/gnome-shell-light-grey.css index 5ae0ed5c..d8f2e62e 100644 --- a/src/main/gnome-shell/gnome-shell-light-grey.css +++ b/src/main/gnome-shell/gnome-shell-light-grey.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-orange.css b/src/main/gnome-shell/gnome-shell-light-orange.css index c84dddc0..a295b2b1 100644 --- a/src/main/gnome-shell/gnome-shell-light-orange.css +++ b/src/main/gnome-shell/gnome-shell-light-orange.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-pink.css b/src/main/gnome-shell/gnome-shell-light-pink.css index 0482cb54..b92332e0 100644 --- a/src/main/gnome-shell/gnome-shell-light-pink.css +++ b/src/main/gnome-shell/gnome-shell-light-pink.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-purple.css b/src/main/gnome-shell/gnome-shell-light-purple.css index 30fe31e7..41607fcf 100644 --- a/src/main/gnome-shell/gnome-shell-light-purple.css +++ b/src/main/gnome-shell/gnome-shell-light-purple.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-red.css b/src/main/gnome-shell/gnome-shell-light-red.css index fd6a8033..ea5b0b2c 100644 --- a/src/main/gnome-shell/gnome-shell-light-red.css +++ b/src/main/gnome-shell/gnome-shell-light-red.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt-blue.css b/src/main/gnome-shell/gnome-shell-light-solid-alt-blue.css index 161aacca..17d1454d 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt-blue.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt-blue.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt-green.css b/src/main/gnome-shell/gnome-shell-light-solid-alt-green.css index 8ba2495c..a483e507 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt-green.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt-green.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt-grey.css b/src/main/gnome-shell/gnome-shell-light-solid-alt-grey.css index d5f531f1..cfb74829 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt-grey.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt-grey.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt-orange.css b/src/main/gnome-shell/gnome-shell-light-solid-alt-orange.css index bfb4edde..db03234c 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt-orange.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt-orange.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt-pink.css b/src/main/gnome-shell/gnome-shell-light-solid-alt-pink.css index 621c5b5b..5887a546 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt-pink.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt-pink.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt-purple.css b/src/main/gnome-shell/gnome-shell-light-solid-alt-purple.css index 1a3d2349..c37e20d0 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt-purple.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt-purple.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt-red.css b/src/main/gnome-shell/gnome-shell-light-solid-alt-red.css index 3f3e66b9..896a86d5 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt-red.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt-red.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt-yellow.css b/src/main/gnome-shell/gnome-shell-light-solid-alt-yellow.css index bfb4edde..db03234c 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt-yellow.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt-yellow.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-alt.css b/src/main/gnome-shell/gnome-shell-light-solid-alt.css index 6e67c3c0..9377555e 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-alt.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-alt.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #0860F2; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #0860F2; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-blue.css b/src/main/gnome-shell/gnome-shell-light-solid-blue.css index 161aacca..17d1454d 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-blue.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-blue.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #2E7CF7; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #2E7CF7; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #2E7CF7; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-green.css b/src/main/gnome-shell/gnome-shell-light-solid-green.css index 8ba2495c..a483e507 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-green.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-green.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #79B757; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #79B757; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #79B757; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-grey.css b/src/main/gnome-shell/gnome-shell-light-solid-grey.css index d5f531f1..cfb74829 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-grey.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-grey.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #8C8C8C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #8C8C8C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #8C8C8C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-orange.css b/src/main/gnome-shell/gnome-shell-light-solid-orange.css index bfb4edde..db03234c 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-orange.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-orange.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E9873A; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #E9873A; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #E9873A; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-pink.css b/src/main/gnome-shell/gnome-shell-light-solid-pink.css index 621c5b5b..5887a546 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-pink.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-pink.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #E55E9C; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #E55E9C; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #E55E9C; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-purple.css b/src/main/gnome-shell/gnome-shell-light-solid-purple.css index 1a3d2349..c37e20d0 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-purple.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-purple.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #9A57A3; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #9A57A3; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #9A57A3; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-red.css b/src/main/gnome-shell/gnome-shell-light-solid-red.css index 3f3e66b9..896a86d5 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-red.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-red.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #ED5F5D; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #ED5F5D; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #ED5F5D; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid-yellow.css b/src/main/gnome-shell/gnome-shell-light-solid-yellow.css index f0055902..a0209b98 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid-yellow.css +++ b/src/main/gnome-shell/gnome-shell-light-solid-yellow.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #F3BA4B; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3171,7 +3162,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,21 +3289,12 @@ StEntry StLabel.hint-text { selected-color: #F3BA4B; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: #f5f5f5; - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3325,6 +3307,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3419,7 +3402,19 @@ StEntry StLabel.hint-text { background-color: #F3BA4B; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3437,6 +3432,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light-solid.css b/src/main/gnome-shell/gnome-shell-light-solid.css index e3ad5405..7a24bfc8 100644 --- a/src/main/gnome-shell/gnome-shell-light-solid.css +++ b/src/main/gnome-shell/gnome-shell-light-solid.css @@ -156,9 +156,9 @@ stage { .candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: #f5f5f5; border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -445,7 +445,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -508,7 +508,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -650,11 +649,7 @@ stage { } .message { - margin: 0 4px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1984,9 +1979,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2939,7 +2932,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(241, 241, 241, 0.95); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3094,7 +3086,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: #f1f1f1; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3166,7 +3157,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3298,6 +3289,7 @@ StEntry StLabel.hint-text { padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3310,6 +3302,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { diff --git a/src/main/gnome-shell/gnome-shell-light-yellow.css b/src/main/gnome-shell/gnome-shell-light-yellow.css index a3c622d3..458ceb95 100644 --- a/src/main/gnome-shell/gnome-shell-light-yellow.css +++ b/src/main/gnome-shell/gnome-shell-light-yellow.css @@ -157,12 +157,12 @@ stage { border-radius: 0 0 6px 6px; } -.candidate-popup-boxpointer, .popup-menu .popup-menu-content, .modal-dialog { +.candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -449,7 +449,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #F3BA4B; border: none; @@ -513,7 +513,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -655,11 +654,7 @@ stage { } .message { - margin: 2px 4px 6px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1989,9 +1984,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2944,7 +2937,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3099,7 +3091,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3167,7 +3158,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,21 +3285,12 @@ StEntry StLabel.hint-text { selected-color: #F3BA4B; } -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(245, 245, 245, 0.95); - -arrow-border-width: 0; - -arrow-border-color: transparent; - -arrow-base: 5px; - -arrow-rise: 5px; - background-color: transparent; -} - .popup-separator-menu-item { margin: 0 0; padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3321,6 +3303,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { @@ -3415,7 +3398,19 @@ StEntry StLabel.hint-text { background-color: #F3BA4B; } +.candidate-popup-boxpointer { + -arrow-border-radius: 2px; + -arrow-background-color: transparent; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-base: 64px; + -arrow-rise: 12px; + background-color: transparent; +} + .candidate-popup-content { + box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); + border: 1px solid rgba(0, 0, 0, 0); padding: 8px; spacing: 0; } @@ -3433,6 +3428,7 @@ StEntry StLabel.hint-text { transition-duration: 0ms; min-height: 28px; padding: 0 8px; + margin-right: 2px; border-radius: 6px; } diff --git a/src/main/gnome-shell/gnome-shell-light.css b/src/main/gnome-shell/gnome-shell-light.css index 410c2428..83a58022 100644 --- a/src/main/gnome-shell/gnome-shell-light.css +++ b/src/main/gnome-shell/gnome-shell-light.css @@ -156,9 +156,9 @@ stage { .candidate-popup-content, .popup-menu .popup-menu-content, .modal-dialog { background-color: rgba(245, 245, 245, 0.95); border-radius: 12px; - box-shadow: inset 0 0 1px 0 rgba(255, 255, 255, 0.2); border: solid rgba(0, 0, 0, 0.75); border-width: 0; + box-shadow: 3px 3px 8px -3px rgba(0, 0, 0, 0.65); } #screenShieldNotifications StScrollBar StBin#trough, #overview StScrollBar StBin#trough { @@ -445,7 +445,7 @@ stage { } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: rgba(255, 255, 255, 0.85); background-color: #0860F2; border: none; @@ -508,7 +508,6 @@ stage { font-weight: bold; } -/* Events */ .events-button .events-box { spacing: 6px; } @@ -650,11 +649,7 @@ stage { } .message { - margin: 0 4px; -} - -.message:first-child { - margin-top: 8px; + margin: 0 4px 6px; } .message .message-icon-bin { @@ -1984,9 +1979,7 @@ StEntry StLabel.hint-text { text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: #F27835; - border-radius: 9999px; + color: #F27835; } .login-dialog-logo-bin { @@ -2939,7 +2932,6 @@ StEntry StLabel.hint-text { #panel { background-color: rgba(255, 255, 255, 0.16); - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: 28px; @@ -3094,7 +3086,6 @@ StEntry StLabel.hint-text { #panel.solid { background-color: rgba(255, 255, 255, 0.16); - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; text-shadow: none; @@ -3162,7 +3153,7 @@ StEntry StLabel.hint-text { padding: 6px 0 !important; box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25); border: 1px solid rgba(0, 0, 0, 0); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu .popup-menu-item { @@ -3294,6 +3285,7 @@ StEntry StLabel.hint-text { padding: 0 0; background: none; border: none; + height: 1px; } .popup-separator-menu-item .popup-separator-menu-item-separator { @@ -3306,6 +3298,7 @@ StEntry StLabel.hint-text { .popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { padding: 0 0; margin: 0 32px 0 0; + height: 1px; } .system-switch-user-submenu-icon.user-icon { diff --git a/src/main/gtk-2.0/common/main.rc b/src/main/gtk-2.0/common/main.rc index 2a59cc13..4d04c36f 100644 --- a/src/main/gtk-2.0/common/main.rc +++ b/src/main/gtk-2.0/common/main.rc @@ -5,6 +5,9 @@ style "default" { # Style Properties + GtkWindow::resize-grip-height = 4 + GtkWindow::resize-grip-width = 4 + GtkWidget::focus-line-width = 1 GtkMenuBar::window-dragging = 1 GtkToolbar::window-dragging = 1 diff --git a/src/main/gtk-3.0/gtk-dark-blue.css b/src/main/gtk-3.0/gtk-dark-blue.css index cc4fe745..9068d9d4 100644 --- a/src/main/gtk-3.0/gtk-dark-blue.css +++ b/src/main/gtk-3.0/gtk-dark-blue.css @@ -5988,29 +5988,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6806,6 +6818,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7692,6 +7719,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10067,17 +10102,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid rgba(77, 77, 77, 0.95); } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-green.css b/src/main/gtk-3.0/gtk-dark-green.css index 6ef18bea..468f6545 100644 --- a/src/main/gtk-3.0/gtk-dark-green.css +++ b/src/main/gtk-3.0/gtk-dark-green.css @@ -5988,29 +5988,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6806,6 +6818,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7692,6 +7719,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10067,17 +10102,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid rgba(77, 77, 77, 0.95); } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-grey.css b/src/main/gtk-3.0/gtk-dark-grey.css index 133054df..2c969a55 100644 --- a/src/main/gtk-3.0/gtk-dark-grey.css +++ b/src/main/gtk-3.0/gtk-dark-grey.css @@ -5988,29 +5988,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6806,6 +6818,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7692,6 +7719,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10067,17 +10102,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid rgba(77, 77, 77, 0.95); } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-orange.css b/src/main/gtk-3.0/gtk-dark-orange.css index d805cb29..ccce8e34 100644 --- a/src/main/gtk-3.0/gtk-dark-orange.css +++ b/src/main/gtk-3.0/gtk-dark-orange.css @@ -5988,29 +5988,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6806,6 +6818,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7692,6 +7719,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10067,17 +10102,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid rgba(77, 77, 77, 0.95); } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-pink.css b/src/main/gtk-3.0/gtk-dark-pink.css index ed012111..de41e1c8 100644 --- a/src/main/gtk-3.0/gtk-dark-pink.css +++ b/src/main/gtk-3.0/gtk-dark-pink.css @@ -5988,29 +5988,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6806,6 +6818,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7692,6 +7719,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10067,17 +10102,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid rgba(77, 77, 77, 0.95); } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-purple.css b/src/main/gtk-3.0/gtk-dark-purple.css index aea4c457..f0107703 100644 --- a/src/main/gtk-3.0/gtk-dark-purple.css +++ b/src/main/gtk-3.0/gtk-dark-purple.css @@ -5988,29 +5988,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6806,6 +6818,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7692,6 +7719,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10067,17 +10102,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid rgba(77, 77, 77, 0.95); } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-red.css b/src/main/gtk-3.0/gtk-dark-red.css index 13bd1fb7..6a17b486 100644 --- a/src/main/gtk-3.0/gtk-dark-red.css +++ b/src/main/gtk-3.0/gtk-dark-red.css @@ -5988,29 +5988,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6806,6 +6818,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7692,6 +7719,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10067,17 +10102,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid rgba(77, 77, 77, 0.95); } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-solid-blue.css b/src/main/gtk-3.0/gtk-dark-solid-blue.css index db4ee2cb..310d4274 100644 --- a/src/main/gtk-3.0/gtk-dark-solid-blue.css +++ b/src/main/gtk-3.0/gtk-dark-solid-blue.css @@ -5992,29 +5992,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6810,6 +6822,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7696,6 +7723,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10071,17 +10106,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid #4d4d4d; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-solid-green.css b/src/main/gtk-3.0/gtk-dark-solid-green.css index a7130795..0d867fa1 100644 --- a/src/main/gtk-3.0/gtk-dark-solid-green.css +++ b/src/main/gtk-3.0/gtk-dark-solid-green.css @@ -5992,29 +5992,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6810,6 +6822,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7696,6 +7723,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10071,17 +10106,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid #4d4d4d; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-solid-grey.css b/src/main/gtk-3.0/gtk-dark-solid-grey.css index 7af7370d..404f7151 100644 --- a/src/main/gtk-3.0/gtk-dark-solid-grey.css +++ b/src/main/gtk-3.0/gtk-dark-solid-grey.css @@ -5992,29 +5992,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6810,6 +6822,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7696,6 +7723,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10071,17 +10106,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid #4d4d4d; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-solid-orange.css b/src/main/gtk-3.0/gtk-dark-solid-orange.css index 9165361c..1a0153ca 100644 --- a/src/main/gtk-3.0/gtk-dark-solid-orange.css +++ b/src/main/gtk-3.0/gtk-dark-solid-orange.css @@ -5992,29 +5992,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6810,6 +6822,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7696,6 +7723,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10071,17 +10106,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid #4d4d4d; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-solid-pink.css b/src/main/gtk-3.0/gtk-dark-solid-pink.css index 6154855f..f8871433 100644 --- a/src/main/gtk-3.0/gtk-dark-solid-pink.css +++ b/src/main/gtk-3.0/gtk-dark-solid-pink.css @@ -5992,29 +5992,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6810,6 +6822,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7696,6 +7723,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10071,17 +10106,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid #4d4d4d; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-solid-purple.css b/src/main/gtk-3.0/gtk-dark-solid-purple.css index 9c0fcb31..d73f7566 100644 --- a/src/main/gtk-3.0/gtk-dark-solid-purple.css +++ b/src/main/gtk-3.0/gtk-dark-solid-purple.css @@ -5992,29 +5992,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6810,6 +6822,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7696,6 +7723,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10071,17 +10106,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid #4d4d4d; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-solid-red.css b/src/main/gtk-3.0/gtk-dark-solid-red.css index e06eff54..75e1d46c 100644 --- a/src/main/gtk-3.0/gtk-dark-solid-red.css +++ b/src/main/gtk-3.0/gtk-dark-solid-red.css @@ -5992,29 +5992,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6810,6 +6822,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7696,6 +7723,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10071,17 +10106,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid #4d4d4d; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-solid-yellow.css b/src/main/gtk-3.0/gtk-dark-solid-yellow.css index 640376bf..76949065 100644 --- a/src/main/gtk-3.0/gtk-dark-solid-yellow.css +++ b/src/main/gtk-3.0/gtk-dark-solid-yellow.css @@ -5992,29 +5992,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6810,6 +6822,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7696,6 +7723,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10071,17 +10106,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid #4d4d4d; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-solid.css b/src/main/gtk-3.0/gtk-dark-solid.css index b7fb3fec..3eee88c2 100644 --- a/src/main/gtk-3.0/gtk-dark-solid.css +++ b/src/main/gtk-3.0/gtk-dark-solid.css @@ -5992,29 +5992,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6810,6 +6822,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7696,6 +7723,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10071,17 +10106,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid #4d4d4d; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark-yellow.css b/src/main/gtk-3.0/gtk-dark-yellow.css index d1eea9c2..0fa8a7f6 100644 --- a/src/main/gtk-3.0/gtk-dark-yellow.css +++ b/src/main/gtk-3.0/gtk-dark-yellow.css @@ -5988,29 +5988,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6806,6 +6818,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7692,6 +7719,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10067,17 +10102,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid rgba(77, 77, 77, 0.95); } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-dark.css b/src/main/gtk-3.0/gtk-dark.css index 7f0fd229..cad4dbf3 100644 --- a/src/main/gtk-3.0/gtk-dark.css +++ b/src/main/gtk-3.0/gtk-dark.css @@ -5988,29 +5988,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.03), inset 0 0 3px rgba(255, 255, 255, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px rgba(255, 255, 255, 0.06); background-color: rgba(255, 255, 255, 0.05); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6806,6 +6818,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7692,6 +7719,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(255, 255, 255, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10067,17 +10102,12 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #333333; border: 1px solid rgba(77, 77, 77, 0.95); } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-blue.css b/src/main/gtk-3.0/gtk-light-blue.css index 80496a07..4584fd96 100644 --- a/src/main/gtk-3.0/gtk-light-blue.css +++ b/src/main/gtk-3.0/gtk-light-blue.css @@ -6011,29 +6011,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6822,6 +6834,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7719,6 +7746,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10105,16 +10140,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-green.css b/src/main/gtk-3.0/gtk-light-green.css index 40e1210d..65517fd9 100644 --- a/src/main/gtk-3.0/gtk-light-green.css +++ b/src/main/gtk-3.0/gtk-light-green.css @@ -6011,29 +6011,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6822,6 +6834,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7719,6 +7746,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10105,16 +10140,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-grey.css b/src/main/gtk-3.0/gtk-light-grey.css index 929ad455..d7a295e6 100644 --- a/src/main/gtk-3.0/gtk-light-grey.css +++ b/src/main/gtk-3.0/gtk-light-grey.css @@ -6011,29 +6011,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6822,6 +6834,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7719,6 +7746,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10105,16 +10140,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-orange.css b/src/main/gtk-3.0/gtk-light-orange.css index 14b8c734..6891d204 100644 --- a/src/main/gtk-3.0/gtk-light-orange.css +++ b/src/main/gtk-3.0/gtk-light-orange.css @@ -6011,29 +6011,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6822,6 +6834,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7719,6 +7746,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10105,16 +10140,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-pink.css b/src/main/gtk-3.0/gtk-light-pink.css index ddbfb171..3ee1c962 100644 --- a/src/main/gtk-3.0/gtk-light-pink.css +++ b/src/main/gtk-3.0/gtk-light-pink.css @@ -6011,29 +6011,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6822,6 +6834,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7719,6 +7746,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10105,16 +10140,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-purple.css b/src/main/gtk-3.0/gtk-light-purple.css index e9b29064..ed9f0eaa 100644 --- a/src/main/gtk-3.0/gtk-light-purple.css +++ b/src/main/gtk-3.0/gtk-light-purple.css @@ -6011,29 +6011,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6822,6 +6834,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7719,6 +7746,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10105,16 +10140,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-red.css b/src/main/gtk-3.0/gtk-light-red.css index 9b8e0982..f7d096e7 100644 --- a/src/main/gtk-3.0/gtk-light-red.css +++ b/src/main/gtk-3.0/gtk-light-red.css @@ -6011,29 +6011,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6822,6 +6834,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7719,6 +7746,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10105,16 +10140,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-solid-blue.css b/src/main/gtk-3.0/gtk-light-solid-blue.css index 1b0e8e79..bc5fee78 100644 --- a/src/main/gtk-3.0/gtk-light-solid-blue.css +++ b/src/main/gtk-3.0/gtk-light-solid-blue.css @@ -6015,29 +6015,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6826,6 +6838,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7723,6 +7750,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10109,16 +10144,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-solid-green.css b/src/main/gtk-3.0/gtk-light-solid-green.css index 741c5091..b98e331f 100644 --- a/src/main/gtk-3.0/gtk-light-solid-green.css +++ b/src/main/gtk-3.0/gtk-light-solid-green.css @@ -6015,29 +6015,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6826,6 +6838,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7723,6 +7750,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10109,16 +10144,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-solid-grey.css b/src/main/gtk-3.0/gtk-light-solid-grey.css index 6e282c33..a335b0e8 100644 --- a/src/main/gtk-3.0/gtk-light-solid-grey.css +++ b/src/main/gtk-3.0/gtk-light-solid-grey.css @@ -6015,29 +6015,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6826,6 +6838,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7723,6 +7750,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10109,16 +10144,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-solid-orange.css b/src/main/gtk-3.0/gtk-light-solid-orange.css index 6d398413..a913440e 100644 --- a/src/main/gtk-3.0/gtk-light-solid-orange.css +++ b/src/main/gtk-3.0/gtk-light-solid-orange.css @@ -6015,29 +6015,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6826,6 +6838,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7723,6 +7750,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10109,16 +10144,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-solid-pink.css b/src/main/gtk-3.0/gtk-light-solid-pink.css index ef311941..c20a422d 100644 --- a/src/main/gtk-3.0/gtk-light-solid-pink.css +++ b/src/main/gtk-3.0/gtk-light-solid-pink.css @@ -6015,29 +6015,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6826,6 +6838,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7723,6 +7750,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10109,16 +10144,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-solid-purple.css b/src/main/gtk-3.0/gtk-light-solid-purple.css index f5ddfb2d..be1f5df8 100644 --- a/src/main/gtk-3.0/gtk-light-solid-purple.css +++ b/src/main/gtk-3.0/gtk-light-solid-purple.css @@ -6015,29 +6015,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6826,6 +6838,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7723,6 +7750,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10109,16 +10144,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-solid-red.css b/src/main/gtk-3.0/gtk-light-solid-red.css index dda6032a..f637ad9e 100644 --- a/src/main/gtk-3.0/gtk-light-solid-red.css +++ b/src/main/gtk-3.0/gtk-light-solid-red.css @@ -6015,29 +6015,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6826,6 +6838,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7723,6 +7750,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10109,16 +10144,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-solid-yellow.css b/src/main/gtk-3.0/gtk-light-solid-yellow.css index 187e6584..fdd36e69 100644 --- a/src/main/gtk-3.0/gtk-light-solid-yellow.css +++ b/src/main/gtk-3.0/gtk-light-solid-yellow.css @@ -6015,29 +6015,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6826,6 +6838,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7723,6 +7750,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10109,16 +10144,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-solid.css b/src/main/gtk-3.0/gtk-light-solid.css index 6350d0e3..f92cfe32 100644 --- a/src/main/gtk-3.0/gtk-light-solid.css +++ b/src/main/gtk-3.0/gtk-light-solid.css @@ -6015,29 +6015,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6826,6 +6838,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid #161616; @@ -7723,6 +7750,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10109,16 +10144,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light-yellow.css b/src/main/gtk-3.0/gtk-light-yellow.css index 155c514a..2dae4d2c 100644 --- a/src/main/gtk-3.0/gtk-light-yellow.css +++ b/src/main/gtk-3.0/gtk-light-yellow.css @@ -6011,29 +6011,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6822,6 +6834,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7719,6 +7746,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10105,16 +10140,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/main/gtk-3.0/gtk-light.css b/src/main/gtk-3.0/gtk-light.css index 4ff88f26..b928cbc6 100644 --- a/src/main/gtk-3.0/gtk-light.css +++ b/src/main/gtk-3.0/gtk-light.css @@ -6011,29 +6011,41 @@ window.background.csd > headerbar.titlebar > leaflet > separator.sidebar, window border-right: none; } -.tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { +window.background.csd stack stack stack frame > list, +window.background.csd > stack > stack > box > frame > list, +window.background.csd > stack > stack > box > box > frame > list, +window.background.csd > stack > box > stack > box > frame > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > list, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list, window.background.csd > stack > list, +window.background.csd > stack > scrolledwindow > viewport > box > list, +window.background.csd > box > stack > scrolledwindow > viewport > box > list, .tweak-group-startup, list.tweak-group list, hdyleaflet list.view, hdyleaflet list.frame, leaflet list.view, leaflet list.frame, box.horizontal > stack.background list.view, box.horizontal > stack.background list.frame, hdyleaflet frame.view, leaflet frame.view, box.horizontal > stack.background frame.view, hdyleaflet frame:not(.view) list:not(.contacts-contact-list), leaflet frame:not(.view) list:not(.contacts-contact-list), box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) { border-radius: 12px; box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.02), inset 0 0 3px rgba(0, 0, 0, 0.01), inset 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px rgba(0, 0, 0, 0.05); background-color: rgba(0, 0, 0, 0.03); border: none; } -.tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { +window.background.csd stack stack stack frame > list > separator, +window.background.csd > stack > stack > box > frame > list > separator, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > list > separator, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > list > separator, window.background.csd > stack > list > separator, +window.background.csd > stack > scrolledwindow > viewport > box > list > separator, .tweak-group-startup > separator, list.tweak-group list > separator, hdyleaflet list.view > separator, hdyleaflet list.frame > separator, leaflet list.view > separator, leaflet list.frame > separator, box.horizontal > stack.background list.view > separator, box.horizontal > stack.background list.frame > separator, hdyleaflet frame.view > separator, leaflet frame.view > separator, box.horizontal > stack.background frame.view > separator, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) > separator, leaflet frame:not(.view) list:not(.contacts-contact-list) > separator, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) > separator { background: none; min-height: 0; } -list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { +window.background.csd stack stack stack frame > list row.activatable:first-child, window.background.csd > stack > list row.activatable:first-child, list.tweak-group list row.activatable:first-child, hdyleaflet list.view row.activatable:first-child, hdyleaflet list.frame row.activatable:first-child, leaflet list.view row.activatable:first-child, leaflet list.frame row.activatable:first-child, box.horizontal > stack.background list.view row.activatable:first-child, box.horizontal > stack.background list.frame row.activatable:first-child, hdyleaflet frame.view list row.activatable:first-child, leaflet frame.view list row.activatable:first-child, box.horizontal > stack.background frame.view list row.activatable:first-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; } -list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { +window.background.csd stack stack stack frame > list row.activatable:last-child, window.background.csd > stack > list row.activatable:last-child, list.tweak-group list row.activatable:last-child, hdyleaflet list.view row.activatable:last-child, hdyleaflet list.frame row.activatable:last-child, leaflet list.view row.activatable:last-child, leaflet list.frame row.activatable:last-child, box.horizontal > stack.background list.view row.activatable:last-child, box.horizontal > stack.background list.frame row.activatable:last-child, hdyleaflet frame.view list row.activatable:last-child, leaflet frame.view list row.activatable:last-child, box.horizontal > stack.background frame.view list row.activatable:last-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; } -list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { +window.background.csd stack stack stack frame > list row.activatable:only-child, window.background.csd > stack > list row.activatable:only-child, list.tweak-group list row.activatable:only-child, hdyleaflet list.view row.activatable:only-child, hdyleaflet list.frame row.activatable:only-child, leaflet list.view row.activatable:only-child, leaflet list.frame row.activatable:only-child, box.horizontal > stack.background list.view row.activatable:only-child, box.horizontal > stack.background list.frame row.activatable:only-child, hdyleaflet frame.view list row.activatable:only-child, leaflet frame.view list row.activatable:only-child, box.horizontal > stack.background frame.view list row.activatable:only-child, hdyleaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, leaflet frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child, box.horizontal > stack.background frame:not(.view) list:not(.contacts-contact-list) row.activatable:only-child { border-radius: 12px; } @@ -6822,6 +6834,21 @@ dialog.background.csd > .dialog-vbox > .dialog-action-box > .dialog-action-area margin: 0 6px 6px; } +window.background.csd stack stack stack frame > border, +window.background.csd > stack > stack > box > frame > border, +window.background.csd > stack > stack > box > box > frame > border, +window.background.csd > stack > box > stack > box > frame > border, +window.background.csd > stack > box > stack > scrolledwindow > viewport frame > border, +window.background.csd > stack > box > stack > box > scrolledwindow > viewport > frame > border, +window.background.csd > stack > grid > scrolledwindow > viewport > box > frame > border { + border: none; +} + +window.background.csd > stack > box > box > list, +window.background.csd > stack > box > stack > scrolledwindow > viewport > list { + border-bottom-left-radius: 12px; +} + MsdOsdWindow.background.osd { border-radius: 2px; border: 1px solid rgba(22, 22, 22, 0.9); @@ -7719,6 +7746,14 @@ window > box.vertical > box.horizontal > widget { background-color: transparent; } +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; +} + +window.background > box.vertical > overlay > stack > scrolledwindow.frame > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid rgba(0, 0, 0, 0.12); +} + window#ValaPanel.background widget.-vala-panel-background > separator { background: none; } @@ -10105,16 +10140,11 @@ window.budgie-switcher-window .drop-shadow, .drop-shadow { .budgie-run-dialog, .budgie-session-dialog, .budgie-polkit-dialog { - border-radius: 12px; background-color: #f5f5f5; } -.background.budgie-run-dialog, .background.budgie-session-dialog, -.background.budgie-polkit-dialog { - border-radius: 12px; -} - -.budgie-run-dialog decoration, .budgie-session-dialog decoration, +.budgie-run-dialog, .budgie-session-dialog, +.budgie-polkit-dialog, .budgie-run-dialog decoration, .budgie-session-dialog decoration, .budgie-polkit-dialog decoration { border-radius: 12px; } diff --git a/src/sass/gnome-shell/widgets/_base.scss b/src/sass/gnome-shell/widgets/_base.scss index 81f30b22..00ed8a29 100644 --- a/src/sass/gnome-shell/widgets/_base.scss +++ b/src/sass/gnome-shell/widgets/_base.scss @@ -120,9 +120,9 @@ stage { %theme_dialogs { background-color: $dialog_bg_color; border-radius: $wm_radius; - box-shadow: inset 0 0 1px 0 rgba(white, 0.2); border: solid rgba(black, 0.75); border-width: if($variant=='light', 0, 1px); + box-shadow: 3px 3px 8px -3px rgba(black, 0.65); } %overview_scrollbar { diff --git a/src/sass/gnome-shell/widgets/_calendar.scss b/src/sass/gnome-shell/widgets/_calendar.scss index c94e2a05..1e1493d4 100644 --- a/src/sass/gnome-shell/widgets/_calendar.scss +++ b/src/sass/gnome-shell/widgets/_calendar.scss @@ -152,7 +152,7 @@ } .calendar-today { - font-weight: bold !important; + font-weight: bold; color: $light_alt_fg_color; background-color: $primary_color; border: none; @@ -216,7 +216,7 @@ font-weight: bold; } -/* Events */ +// Events .events-button { .events-box { spacing: 6px; @@ -354,11 +354,9 @@ } .message { - margin: 0 4px; + margin: 0 4px 6px; @extend %popover_bubble; - &:first-child { margin-top: 8px; } - // icon container .message-icon-bin { margin: 8px 0; diff --git a/src/sass/gnome-shell/widgets/_login-dialog.scss b/src/sass/gnome-shell/widgets/_login-dialog.scss index 5c560944..85b07902 100644 --- a/src/sass/gnome-shell/widgets/_login-dialog.scss +++ b/src/sass/gnome-shell/widgets/_login-dialog.scss @@ -68,9 +68,7 @@ text-align: center; margin-bottom: 8px; padding: 2px 6px; - color: white; - background-color: $warning_color; - border-radius: $circular_radius; + color: $warning_color; } .login-dialog-logo-bin { padding: 24px 0px; } diff --git a/src/sass/gnome-shell/widgets/_panel.scss b/src/sass/gnome-shell/widgets/_panel.scss index 6f7e71ad..6a2e0fef 100644 --- a/src/sass/gnome-shell/widgets/_panel.scss +++ b/src/sass/gnome-shell/widgets/_panel.scss @@ -3,7 +3,6 @@ $shell_panel_bg: if($trans == 'true', $panel_bg, rgba($panel_bg, 0.95)); #panel { background-color: $shell_panel_bg; - /* transition from solid to transparent */ transition-duration: 250ms; font-weight: bold; height: $menuitem_size; @@ -146,7 +145,6 @@ $shell_panel_bg: if($trans == 'true', $panel_bg, rgba($panel_bg, 0.95)); &.solid { background-color: $panel_bg; - /* transition from transparent to solid */ transition-duration: 250ms; background-gradient-direction: none; // for Ubuntu session text-shadow: none; // for Ubuntu session diff --git a/src/sass/gnome-shell/widgets/_popovers.scss b/src/sass/gnome-shell/widgets/_popovers.scss index d25f244d..d2d9691c 100644 --- a/src/sass/gnome-shell/widgets/_popovers.scss +++ b/src/sass/gnome-shell/widgets/_popovers.scss @@ -12,7 +12,7 @@ $popop_menuitem_radius: $wm_radius - 4px; @extend %theme_dialogs; box-shadow: 0 8px 16px 0 rgba(black, 0.25); border: 1px solid if($variant=='light', rgba(black, 0), rgba(black, 0.75)); - margin: 4px 8px !important; + margin: 4px 8px 4px 12px !important; } .popup-menu-item { @@ -133,6 +133,7 @@ $popop_menuitem_radius: $wm_radius - 4px; padding: 0 0; background: none; border: none; + height: 1px; .popup-separator-menu-item-separator { height: 1px; //not really the whole box @@ -143,6 +144,7 @@ $popop_menuitem_radius: $wm_radius - 4px; .popup-sub-menu & { //submenu separators padding: 0 0; margin: 0 32px 0 0; + height: 1px; } } } diff --git a/src/sass/gtk/_applications.scss b/src/sass/gtk/_applications.scss index 368ec768..e489fcc8 100644 --- a/src/sass/gtk/_applications.scss +++ b/src/sass/gtk/_applications.scss @@ -2434,6 +2434,42 @@ dialog.background.csd { } } +// +// Extensions +// +window.background.csd { + > stack, // GameMode setting + > stack > scrolledwindow > viewport > box, // User Themes (Workspace) setting + > box > stack > scrolledwindow > viewport > box { + > list { + @extend %circular_list; + + row.activatable { @extend %circular_row; } + } + } + + stack stack stack frame, // ArcMenu setting + > stack > stack > box > frame, // Night Theme Switcher setting + > stack > stack > box > box > frame, // Night Theme Switcher setting bottom lists + > stack > box > stack > box > frame, // ArcMenu setting + > stack > box > stack > scrolledwindow > viewport frame, // ArcMenu setting + > stack > box > stack > box > scrolledwindow > viewport > frame, // ArcMenu setting + > stack > grid > scrolledwindow > viewport > box > frame { // GSConnect setting + > border { border: none; } + + > list { + @extend %circular_list; + + row.activatable { @extend %circular_row; } + } + } + + > stack > box > box > list, + > stack > box > stack > scrolledwindow > viewport > list { // ArcMenu setting sidebar + border-bottom-left-radius: $wm_radius; + } +} + // // Mate OSD Window // @@ -3341,14 +3377,6 @@ window.background.csd { toolbar#SubToolBox { min-height: 36px; - // > toolitem#select-x { - // spinbutton { - // entry { - // min-width: 0; - // } - // } - // } - entry, button { margin-top: 6px; margin-bottom: 6px; @@ -3409,6 +3437,17 @@ window > box.vertical > box.horizontal { > widget { background-color: transparent; } } +// +// Pamac +// +window.background > box.vertical > overlay > stack > scrolledwindow.frame { + border: none; + + > viewport.frame > box.vertical > stack > scrolledwindow { + border-top: 1px solid $borders_color; + } +} + // // vala-panel // @@ -3496,11 +3535,11 @@ menubar.-vala-panel-background { } } -// * Elementary Apps * +// +// Elementary Apps +// -// // Wingpanel -// .menubar.panel { .panel { &, &.color-light, &.color-dark { diff --git a/src/sass/gtk/_budgie.scss b/src/sass/gtk/_budgie.scss index 5fc040c2..9b002a97 100644 --- a/src/sass/gtk/_budgie.scss +++ b/src/sass/gtk/_budgie.scss @@ -140,8 +140,6 @@ $raven_padding: 8px; &:disabled { color: $disabled_fg_color; } } - - treeview.view.sidebar, scrolledwindow.sidebar:not(.categories) { //AppMenu (Elementary) // min-height: 36px; @@ -1173,12 +1171,10 @@ window.budgie-switcher-window { } %budgie_dialog { - border-radius: $wm_radius; background-color: $bg_color; @if $variant == 'dark' { border: 1px solid lighten($menu_bg, 10%); } - &.background {border-radius: $wm_radius; } - decoration { border-radius: $wm_radius; } + &, &.background, decoration { border-radius: $wm_radius; } } // Session Dialog