diff --git a/config/ags/scss/widgets/systray.scss b/config/ags/scss/widgets/systray.scss index 07889120..513d6ff6 100644 --- a/config/ags/scss/widgets/systray.scss +++ b/config/ags/scss/widgets/systray.scss @@ -3,7 +3,7 @@ background-color: $bg; color: #CBA6F7; border-radius: 80px; - border: 2px solid #1b1b2b; + border: 2px solid $bgSecondary; transition: background-color 0.5s ease-in-out, border 0.5s ease-in-out; @@ -13,29 +13,33 @@ font-size: 25px; } - menuitem:not(.tray-item) { + menu { background: $bgfull; + padding-top: 5px; + padding-bottom: 5px; + border: 2px solid #1b1b1b; + border-radius: 10px; + + check { + color: white; + margin-left: 2px; + margin-right: 5px; + min-height: 20px; + min-width: 20px; + -gtk-icon-source: -gtk-icontheme('checkbox-symbolic'); + + &:checked { + -gtk-icon-source: -gtk-icontheme('checkbox-checked-symbolic'); + } + } + } + + menuitem:not(.tray-item) { padding: 5px; - border-left: 2px solid #1b1b2b; - border-right: 2px solid #1b1b2b; - transition: background-color 0.2s ease-in-out; + transition: all 0.2s ease-in-out; &:hover { background: #1b1b1b; } - - &:nth-child(1) { - border-top-left-radius: 10px; - border-top-right-radius: 10px; - border-top: 2px solid #1b1b2b; - padding-top: 10px; - } - &:nth-last-child(1) { - border-bottom-left-radius: 10px; - border-bottom-right-radius: 10px; - border-bottom: 2px solid #1b1b2b; - padding-bottom: 10px; - } } } - diff --git a/config/ags/style.css b/config/ags/style.css index 8c112075..a288e432 100644 --- a/config/ags/style.css +++ b/config/ags/style.css @@ -133,27 +133,29 @@ background-color: rgba(40, 42, 54, 0.8); color: #CBA6F7; border-radius: 80px; - border: 2px solid #1b1b2b; + border: 2px solid rgba(56, 44, 74, 0.8); transition: background-color 0.5s ease-in-out, border 0.5s ease-in-out; } .sys-tray .tray-item { all: unset; padding: 0px 2px 0px 2px; font-size: 25px; } - .sys-tray menuitem:not(.tray-item) { + .sys-tray menu { background: #282a36; + padding-top: 5px; + padding-bottom: 5px; + border: 2px solid #1b1b1b; + border-radius: 10px; } + .sys-tray menu check { + color: white; + margin-left: 2px; + margin-right: 5px; + min-height: 20px; + min-width: 20px; + -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } + .sys-tray menu check:checked { + -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); } + .sys-tray menuitem:not(.tray-item) { padding: 5px; - border-left: 2px solid #1b1b2b; - border-right: 2px solid #1b1b2b; - transition: background-color 0.2s ease-in-out; } + transition: all 0.2s ease-in-out; } .sys-tray menuitem:not(.tray-item):hover { background: #1b1b1b; } - .sys-tray menuitem:not(.tray-item):nth-child(1) { - border-top-left-radius: 10px; - border-top-right-radius: 10px; - border-top: 2px solid #1b1b2b; - padding-top: 10px; } - .sys-tray menuitem:not(.tray-item):nth-last-child(1) { - border-bottom-left-radius: 10px; - border-bottom-right-radius: 10px; - border-bottom: 2px solid #1b1b2b; - padding-bottom: 10px; }