diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:45:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:45:20 +0000 |
commit | ae1c76ff830d146d41e88d6fba724c0a54bce868 (patch) | |
tree | 3c354bec95af07be35fc71a4b738268496f1a1c4 /panels/background/preview.css | |
parent | Initial commit. (diff) | |
download | gnome-control-center-upstream/1%43.6.tar.xz gnome-control-center-upstream/1%43.6.zip |
Adding upstream version 1:43.6.upstream/1%43.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'panels/background/preview.css')
-rw-r--r-- | panels/background/preview.css | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/panels/background/preview.css b/panels/background/preview.css new file mode 100644 index 0000000..e949734 --- /dev/null +++ b/panels/background/preview.css @@ -0,0 +1,96 @@ +background-preview { + border-radius: 6px; +} + +background-preview .window { + border-radius: 6px; + box-shadow: 0 1px 4px 1px alpha(black, 0.13), + 0 1px 10px 5px alpha(black, 0.09), + 0 3px 16px 8px alpha(black, 0.04), + 0 0 0 1px alpha(black, .05); +} + +background-preview .window .header-bar { + min-height: 15px; +} + +background-preview .window.light { + background-color: #fafafa; + color: alpha(black, .8); +} + +background-preview .window.light .header-bar { + box-shadow: inset 0 -1px alpha(black, .07); +} + +background-preview .window.front.light .header-bar { + background-color: #ebebeb; +} + +background-preview .window.dark { + background-color: #242424; + color: white; +} + +background-preview .window.dark .header-bar { + box-shadow: inset 0 -1px alpha(black, .36); +} + +background-preview .window.front.dark .header-bar { + background-color: #303030; +} + +.background-preview-button { + background: none; + border-radius: 9px; + padding: 3px; + box-shadow: none; + outline: none; +} + +.background-preview-button:checked { + box-shadow: 0 0 0 3px @accent_color; +} + +.background-preview-button:focus:focus-visible { + box-shadow: 0 0 0 3px alpha(@accent_color, .3); +} + +.background-preview-button:checked:focus:focus-visible { + box-shadow: 0 0 0 3px @accent_color, 0 0 0 6px alpha(@accent_color, .3); +} + +.background-flowbox > flowboxchild { + background: none; + border-radius: 9px; +} + +.background-thumbnail { + border-radius: 6px; +} + +.slideshow-icon { + color: white; + -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.33); + margin: 8px; +} + +.selected-check { + color: @accent_fg_color; + background: @accent_bg_color; + border-radius: 100px; + padding: 2px; + opacity: 0; + margin: 6px; +} + +flowboxchild:selected .selected-check { + opacity: 1; +} + +.remove-button { + padding: 2px; + min-width: 0; + min-height: 0; + margin: 6px; +} |