2021-12-19 17:11:57 +05:00
|
|
|
background-preview {
|
|
|
|
border-radius: 6px;
|
2019-05-22 18:55:17 -03:00
|
|
|
}
|
|
|
|
|
2021-12-19 17:11:57 +05:00
|
|
|
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);
|
2019-05-22 18:55:17 -03:00
|
|
|
}
|
|
|
|
|
2021-12-19 17:11:57 +05:00
|
|
|
background-preview .window .header-bar {
|
|
|
|
min-height: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
background-preview .window.light {
|
|
|
|
background-color: #fafafa;
|
|
|
|
color: alpha(black, .8);
|
2019-05-22 18:55:17 -03:00
|
|
|
}
|
|
|
|
|
2022-06-28 22:36:06 +04:00
|
|
|
background-preview .window.light .header-bar {
|
|
|
|
box-shadow: inset 0 -1px alpha(black, .07);
|
|
|
|
}
|
|
|
|
|
2021-12-19 17:11:57 +05:00
|
|
|
background-preview .window.front.light .header-bar {
|
|
|
|
background-color: #ebebeb;
|
2019-05-22 18:55:17 -03:00
|
|
|
}
|
|
|
|
|
2021-12-19 17:11:57 +05:00
|
|
|
background-preview .window.dark {
|
|
|
|
background-color: #242424;
|
2019-05-22 18:55:17 -03:00
|
|
|
color: white;
|
2021-12-19 17:11:57 +05:00
|
|
|
}
|
|
|
|
|
2022-06-28 22:36:06 +04:00
|
|
|
background-preview .window.dark .header-bar {
|
|
|
|
box-shadow: inset 0 -1px alpha(black, .36);
|
|
|
|
}
|
|
|
|
|
2021-12-19 17:11:57 +05:00
|
|
|
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);
|
2019-05-22 18:55:17 -03:00
|
|
|
}
|
2019-05-22 19:20:58 -03:00
|
|
|
|
2021-12-19 21:08:45 +05:00
|
|
|
.background-flowbox > flowboxchild {
|
|
|
|
background: none;
|
|
|
|
border-radius: 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.background-thumbnail {
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
2021-12-19 18:26:12 +05:00
|
|
|
.slideshow-icon {
|
2019-05-22 19:20:58 -03:00
|
|
|
color: white;
|
|
|
|
-gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.33);
|
2021-12-19 21:08:45 +05:00
|
|
|
margin: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selected-check {
|
|
|
|
color: @accent_fg_color;
|
|
|
|
background: @accent_bg_color;
|
|
|
|
border-radius: 100px;
|
|
|
|
padding: 2px;
|
|
|
|
opacity: 0;
|
|
|
|
margin: 6px;
|
2024-03-07 14:33:40 -03:00
|
|
|
transition-duration: 200ms;
|
2021-12-19 21:08:45 +05:00
|
|
|
}
|
|
|
|
|
2024-02-15 12:35:43 +01:00
|
|
|
flowboxchild.active-item .selected-check {
|
2021-12-19 21:08:45 +05:00
|
|
|
opacity: 1;
|
2019-05-22 19:20:58 -03:00
|
|
|
}
|
2020-02-14 15:53:08 +01:00
|
|
|
|
2021-12-19 21:08:45 +05:00
|
|
|
.remove-button {
|
|
|
|
padding: 2px;
|
|
|
|
min-width: 0;
|
|
|
|
min-height: 0;
|
|
|
|
margin: 6px;
|
2020-02-14 15:53:08 +01:00
|
|
|
}
|