This commit is contained in:
vinceliuice 2022-10-23 09:35:36 +08:00
parent 815ac73d8d
commit 3194de2dce
2 changed files with 11 additions and 14 deletions

View File

@ -1767,8 +1767,6 @@ combobox {
%toolbar { %toolbar {
padding: $container_padding / 2 $container_padding; padding: $container_padding / 2 $container_padding;
border-spacing: $container_padding; border-spacing: $container_padding;
// background-color: $header_bg;
// border-bottom: 1px solid $borders_color;
} }
.toolbar { .toolbar {
@ -1829,14 +1827,13 @@ searchbar {
border-spacing: $container_padding; border-spacing: $container_padding;
@extend %toolbar; @extend %toolbar;
entry { margin: 0; } entry, button { margin: 0; }
.close { .close {
min-width: 18px; min-width: 18px;
min-height: 18px; min-height: 18px;
padding: 4px; padding: 4px;
border-radius: 50%; border-radius: 50%;
@extend %circular_button;
} }
} }
} }
@ -3005,12 +3002,6 @@ scrollbar {
transition: 300ms $ease-out-quad; transition: 300ms $ease-out-quad;
outline: none; outline: none;
// scrollbar border
// &.top { border-bottom: 1px solid $borders_color; }
// &.bottom { border-top: 1px solid $borders_color; }
// &.left { border-right: 1px solid $borders_color; }
// &.right { border-left: 1px solid $borders_color; }
&, button { border: none; } &, button { border: none; }
&.vertical button { &.vertical button {
@ -4388,10 +4379,16 @@ filechooserbutton:drop(active) {
} }
separator.sidebar { separator.sidebar {
&.left, &.right, &.left:dir(rtl), &:dir(rtl), &:dir(ltr), & { border: none; }
background-color: $header_border; background-color: $header_border;
min-height: 1px; min-height: 1px;
min-width: 1px; min-width: 1px;
border: none;
&:dir(ltr),
&.left,
&.left:dir(rtl),
&:dir(rtl),
&.right { border: none; }
} }
stacksidebar { stacksidebar {

View File

@ -1,7 +1,7 @@
/************ //
* Nautilus * // Nautilus
************/ //
$nautilus_header_image: image($header_bg); $nautilus_header_image: image($header_bg);
$nautilus_header_borders_image: image($header_border); $nautilus_header_borders_image: image($header_border);