pull/280/head
vinceliuice 3 years ago
parent 0b65aee0a2
commit 4976ba3342

@ -1043,6 +1043,30 @@ searchbar > revealer > box {
* Header bars *
***************/
%flat-titlebar-button {
color: $text-secondary;
&:focus, &:hover, &:active, &:checked { color: $text; }
&:disabled { color: $text-secondary-disabled; }
&:checked:disabled { color: $text-disabled; }
&:backdrop {
color: $text-disabled;
&:focus, &:hover, &:active { color: $text-secondary; }
&:disabled { color: $text-secondary-disabled; }
&:checked {
color: $text-secondary;
&:disabled { color: $text-secondary-disabled; }
}
}
}
%titlebar-button {
@extend %button-flat;
color: $titlebar-text-secondary;
@ -1130,16 +1154,6 @@ headerbar {
&:disabled { color: $titlebar-text-secondary-disabled; }
}
&.flat {
@if $topbar == 'dark' and $variant == 'light' {
box-shadow: none;
} @else {
box-shadow: none;
&, &:backdrop { background-color: transparent; }
}
}
.title {
padding: 0 $space-size * 2;
font-weight: bold;
@ -1205,6 +1219,16 @@ headerbar {
button.toggle { border-radius: $circular-radius; }
&.flat {
background-color: $background;
box-shadow: none;
color: $text-secondary;
button:not(.suggested-action):not(.destructive-action) {
@extend %flat-titlebar-button;
}
}
popover.background { // reset
> contents {
color: $text;
@ -1467,17 +1491,33 @@ $window-space: if($mac_style == 'true', $space-size * 1.5, $space-size);
headerbar windowcontrols {
border-spacing: $space-size;
&:not(.empty) {
&.start:dir(ltr),
&.end:dir(rtl) {
margin-right: $window-space;
margin-left: $window-space;
@if $mac_style == 'true' {
&:not(.empty) {
&.start:dir(ltr),
&.end:dir(rtl) {
margin-right: $window-space;
margin-left: $window-space;
}
&.start:dir(rtl),
&.end:dir(ltr) {
margin-left: $window-space;
margin-right: $window-space;
}
}
} @else {
&:not(.empty) {
&.start:dir(ltr),
&.end:dir(rtl) {
margin-right: 0;
margin-left: 0;
}
&.start:dir(rtl),
&.end:dir(ltr) {
margin-left: $window-space;
margin-right: $window-space;
&.start:dir(rtl),
&.end:dir(ltr) {
margin-left: 0;
margin-right: 0;
}
}
}
@ -1487,7 +1527,7 @@ headerbar windowcontrols {
@if $mac_style == 'true' {
@extend %mac_window_button;
} @else {
@extend %button-flat-simple;
// @extend %button-flat-simple;
&, &:hover, &:active, &:backdrop {
> image {
@ -3635,6 +3675,21 @@ window.aboutdialog {
}
}
window.about.background.csd {
&, &:backdrop {
background-image: none;
background-color: $background;
}
headerbar {
color: $text-secondary;
button:not(.suggested-action):not(.destructive-action) {
@extend %flat-titlebar-button;
}
}
}
/***********
* Sidebar *
***********/
@ -4176,7 +4231,8 @@ window {
} @else {
box-shadow: $shadow-z16,
0 16px (24px * .6) 2px transparent,
0 6px (30px * .6) 5px transparent;
0 6px (30px * .6) 5px transparent,
inset 0 1px highlight($titlebar);
}
&:backdrop {
@ -4202,7 +4258,8 @@ window {
} @else {
box-shadow: $shadow-z4,
0 16px (24px * .6) 2px transparent,
0 6px (30px * .6) 5px transparent;
0 6px (30px * .6) 5px transparent,
inset 0 1px highlight($titlebar);
}
}
}

@ -4,14 +4,17 @@
//
.nautilus-window {
&.background.csd {
background-image: none;
background-color: if($topbar == 'dark' and $variant == 'light', $titlebar, $base);
color: if($topbar == 'dark' and $variant == 'light', $titlebar-text-secondary, $text-secondary);
&, &:backdrop {
background-image: none;
background-color: if($topbar == 'dark' and $variant == 'light', $titlebar, $base);
}
}
headerbar {
background-color: if($topbar == 'dark' and $variant == 'light', $titlebar, $base);
box-shadow: inset 0 1px highlight($titlebar);
background-color: transparent;
box-shadow: none;
}
flap > separator {

@ -462,7 +462,7 @@ preferencesgroup > box {
background: none;
box-shadow: none;
outline-color: transparent;
outline-width: 2px;
outline-width: 3px;
outline-offset: $space-size / 2;
outline-style: solid;

@ -640,7 +640,7 @@ button:drop(active) {
}
.nautilus-window tabbar tab:active > button.flat, .nautilus-window tabbar tab:checked > button.flat, .nautilus-window tabbar tab:selected > button.flat, .nautilus-window flap.unfolded > placessidebar > scrolledwindow > viewport > list.navigation-sidebar > row.activatable:selected button.sidebar-button, stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action), placessidebar .navigation-sidebar > row button.sidebar-button, calendar > header > button, row button.circular, check,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action), spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
dnd tab button.image-button, splitbutton.flat > button,
splitbutton.flat > menubutton > button, menubutton.flat > button, filechooser #pathbarbox > stack > box > button, window.dialog.message.csd .dialog-action-area > button, .app-notification button, headerbar popover.background button.flat:not(.suggested-action):not(.destructive-action), headerbar button:not(.suggested-action):not(.destructive-action), .toolbar button,
toolbar button, dropdown > .linked:not(.vertical) > button:not(:only-child),
@ -1391,6 +1391,42 @@ searchbar > revealer > box splitbutton {
/***************
* Header bars *
***************/
window.about.background.csd headerbar button:not(.suggested-action):not(.destructive-action), headerbar.flat button:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:active:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.87);
}
window.about.background.csd headerbar button:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
window.about.background.csd headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.38);
}
window.about.background.csd headerbar button:backdrop:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.38);
}
window.about.background.csd headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:active:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
window.about.background.csd headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
headerbar button:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
@ -1484,10 +1520,6 @@ headerbar:backdrop:disabled {
color: rgba(255, 255, 255, 0.3);
}
headerbar.flat {
box-shadow: none;
}
headerbar .title {
padding: 0 8px;
font-weight: bold;
@ -1557,6 +1589,12 @@ headerbar button.toggle {
border-radius: 9999px;
}
headerbar.flat {
background-color: #F2F2F2;
box-shadow: none;
color: rgba(0, 0, 0, 0.6);
}
headerbar popover.background > contents {
color: rgba(0, 0, 0, 0.87);
}
@ -1734,13 +1772,13 @@ headerbar windowcontrols {
}
headerbar windowcontrols:not(.empty).start:dir(ltr), headerbar windowcontrols:not(.empty).end:dir(rtl) {
margin-right: 4px;
margin-left: 4px;
margin-right: 0;
margin-left: 0;
}
headerbar windowcontrols:not(.empty).start:dir(rtl), headerbar windowcontrols:not(.empty).end:dir(ltr) {
margin-left: 4px;
margin-right: 4px;
margin-left: 0;
margin-right: 0;
}
headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):hover > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):active > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):backdrop > image {
@ -3955,6 +3993,15 @@ window.aboutdialog .large-icons {
-gtk-icon-size: 128px;
}
window.about.background.csd, window.about.background.csd:backdrop {
background-image: none;
background-color: #F2F2F2;
}
window.about.background.csd headerbar {
color: rgba(0, 0, 0, 0.6);
}
/***********
* Sidebar *
***********/
@ -4672,14 +4719,17 @@ popover.entry-completion > contents {
}
.nautilus-window.background.csd {
color: rgba(255, 255, 255, 0.7);
}
.nautilus-window.background.csd, .nautilus-window.background.csd:backdrop {
background-image: none;
background-color: #2C2C2C;
color: rgba(255, 255, 255, 0.7);
}
.nautilus-window headerbar {
background-color: #2C2C2C;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
background-color: transparent;
box-shadow: none;
}
.nautilus-window flap > separator {

@ -640,7 +640,7 @@ button:drop(active) {
}
.nautilus-window tabbar tab:active > button.flat, .nautilus-window tabbar tab:checked > button.flat, .nautilus-window tabbar tab:selected > button.flat, .nautilus-window flap.unfolded > placessidebar > scrolledwindow > viewport > list.navigation-sidebar > row.activatable:selected button.sidebar-button, stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action), placessidebar .navigation-sidebar > row button.sidebar-button, calendar > header > button, row button.circular, check,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action), spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
dnd tab button.image-button, splitbutton.flat > button,
splitbutton.flat > menubutton > button, menubutton.flat > button, filechooser #pathbarbox > stack > box > button, window.dialog.message.csd .dialog-action-area > button, .app-notification button, headerbar popover.background button.flat:not(.suggested-action):not(.destructive-action), headerbar button:not(.suggested-action):not(.destructive-action), .toolbar button,
toolbar button, dropdown > .linked:not(.vertical) > button:not(:only-child),
@ -1391,6 +1391,42 @@ searchbar > revealer > box splitbutton {
/***************
* Header bars *
***************/
window.about.background.csd headerbar button:not(.suggested-action):not(.destructive-action), headerbar.flat button:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
window.about.background.csd headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:active:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:not(.suggested-action):not(.destructive-action) {
color: white;
}
window.about.background.csd headerbar button:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.3);
}
window.about.background.csd headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.5);
}
window.about.background.csd headerbar button:backdrop:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.5);
}
window.about.background.csd headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:active:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
window.about.background.csd headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.3);
}
window.about.background.csd headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
window.about.background.csd headerbar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.3);
}
headerbar button:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
@ -1484,14 +1520,6 @@ headerbar:backdrop:disabled {
color: rgba(255, 255, 255, 0.3);
}
headerbar.flat {
box-shadow: none;
}
headerbar.flat, headerbar.flat:backdrop {
background-color: transparent;
}
headerbar .title {
padding: 0 8px;
font-weight: bold;
@ -1561,6 +1589,12 @@ headerbar button.toggle {
border-radius: 9999px;
}
headerbar.flat {
background-color: #212121;
box-shadow: none;
color: rgba(255, 255, 255, 0.7);
}
headerbar popover.background > contents {
color: white;
}
@ -1738,13 +1772,13 @@ headerbar windowcontrols {
}
headerbar windowcontrols:not(.empty).start:dir(ltr), headerbar windowcontrols:not(.empty).end:dir(rtl) {
margin-right: 4px;
margin-left: 4px;
margin-right: 0;
margin-left: 0;
}
headerbar windowcontrols:not(.empty).start:dir(rtl), headerbar windowcontrols:not(.empty).end:dir(ltr) {
margin-left: 4px;
margin-right: 4px;
margin-left: 0;
margin-right: 0;
}
headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):hover > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):active > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):backdrop > image {
@ -3959,6 +3993,15 @@ window.aboutdialog .large-icons {
-gtk-icon-size: 128px;
}
window.about.background.csd, window.about.background.csd:backdrop {
background-image: none;
background-color: #212121;
}
window.about.background.csd headerbar {
color: rgba(255, 255, 255, 0.7);
}
/***********
* Sidebar *
***********/
@ -4676,14 +4719,17 @@ popover.entry-completion > contents {
}
.nautilus-window.background.csd {
color: rgba(255, 255, 255, 0.7);
}
.nautilus-window.background.csd, .nautilus-window.background.csd:backdrop {
background-image: none;
background-color: #2C2C2C;
color: rgba(255, 255, 255, 0.7);
}
.nautilus-window headerbar {
background-color: #2C2C2C;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
background-color: transparent;
box-shadow: none;
}
.nautilus-window flap > separator {

@ -640,7 +640,7 @@ button:drop(active) {
}
.nautilus-window tabbar tab:active > button.flat, .nautilus-window tabbar tab:checked > button.flat, .nautilus-window tabbar tab:selected > button.flat, .nautilus-window flap.unfolded > placessidebar > scrolledwindow > viewport > list.navigation-sidebar > row.activatable:selected button.sidebar-button, stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action), placessidebar .navigation-sidebar > row button.sidebar-button, calendar > header > button, row button.circular, check,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action), spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
dnd tab button.image-button, splitbutton.flat > button,
splitbutton.flat > menubutton > button, menubutton.flat > button, filechooser #pathbarbox > stack > box > button, window.dialog.message.csd .dialog-action-area > button, .app-notification button, headerbar popover.background button.flat:not(.suggested-action):not(.destructive-action), headerbar button:not(.suggested-action):not(.destructive-action), .toolbar button,
toolbar button, dropdown > .linked:not(.vertical) > button:not(:only-child),
@ -1391,6 +1391,42 @@ searchbar > revealer > box splitbutton {
/***************
* Header bars *
***************/
window.about.background.csd headerbar button:not(.suggested-action):not(.destructive-action), headerbar.flat button:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
window.about.background.csd headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:active:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:not(.suggested-action):not(.destructive-action) {
color: white;
}
window.about.background.csd headerbar button:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.3);
}
window.about.background.csd headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.5);
}
window.about.background.csd headerbar button:backdrop:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.5);
}
window.about.background.csd headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:active:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
window.about.background.csd headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.3);
}
window.about.background.csd headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
window.about.background.csd headerbar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.3);
}
headerbar button:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
@ -1484,14 +1520,6 @@ headerbar:backdrop:disabled {
color: rgba(255, 255, 255, 0.3);
}
headerbar.flat {
box-shadow: none;
}
headerbar.flat, headerbar.flat:backdrop {
background-color: transparent;
}
headerbar .title {
padding: 0 12px;
font-weight: bold;
@ -1561,6 +1589,12 @@ headerbar button.toggle {
border-radius: 9999px;
}
headerbar.flat {
background-color: #212121;
box-shadow: none;
color: rgba(255, 255, 255, 0.7);
}
headerbar popover.background > contents {
color: white;
}
@ -1738,13 +1772,13 @@ headerbar windowcontrols {
}
headerbar windowcontrols:not(.empty).start:dir(ltr), headerbar windowcontrols:not(.empty).end:dir(rtl) {
margin-right: 6px;
margin-left: 6px;
margin-right: 0;
margin-left: 0;
}
headerbar windowcontrols:not(.empty).start:dir(rtl), headerbar windowcontrols:not(.empty).end:dir(ltr) {
margin-left: 6px;
margin-right: 6px;
margin-left: 0;
margin-right: 0;
}
headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):hover > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):active > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):backdrop > image {
@ -3959,6 +3993,15 @@ window.aboutdialog .large-icons {
-gtk-icon-size: 128px;
}
window.about.background.csd, window.about.background.csd:backdrop {
background-image: none;
background-color: #212121;
}
window.about.background.csd headerbar {
color: rgba(255, 255, 255, 0.7);
}
/***********
* Sidebar *
***********/
@ -4676,14 +4719,17 @@ popover.entry-completion > contents {
}
.nautilus-window.background.csd {
color: rgba(255, 255, 255, 0.7);
}
.nautilus-window.background.csd, .nautilus-window.background.csd:backdrop {
background-image: none;
background-color: #2C2C2C;
color: rgba(255, 255, 255, 0.7);
}
.nautilus-window headerbar {
background-color: #2C2C2C;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
background-color: transparent;
box-shadow: none;
}
.nautilus-window flap > separator {

@ -640,7 +640,7 @@ button:drop(active) {
}
.nautilus-window tabbar tab > button.flat, .nautilus-window tabbar tab:active > button.flat, .nautilus-window tabbar tab:checked > button.flat, .nautilus-window tabbar tab:selected > button.flat, .nautilus-window flap.unfolded > placessidebar > scrolledwindow > viewport > list.navigation-sidebar > row.activatable:selected button.sidebar-button, stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action), placessidebar .navigation-sidebar > row button.sidebar-button, calendar > header > button, row button.circular, check,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action), spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
dnd tab button.image-button, splitbutton.flat > button,
splitbutton.flat > menubutton > button, menubutton.flat > button, filechooser #pathbarbox > stack > box > button, window.dialog.message.csd .dialog-action-area > button, .app-notification button, headerbar popover.background button.flat:not(.suggested-action):not(.destructive-action), headerbar button:not(.suggested-action):not(.destructive-action), .toolbar button,
toolbar button, dropdown > .linked:not(.vertical) > button:not(:only-child),
@ -1391,6 +1391,42 @@ searchbar > revealer > box splitbutton {
/***************
* Header bars *
***************/
window.about.background.csd headerbar button:not(.suggested-action):not(.destructive-action), headerbar.flat button:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:active:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.87);
}
window.about.background.csd headerbar button:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
window.about.background.csd headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.38);
}
window.about.background.csd headerbar button:backdrop:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.38);
}
window.about.background.csd headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:active:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
window.about.background.csd headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
headerbar button:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
@ -1484,14 +1520,6 @@ headerbar:backdrop:disabled {
color: rgba(0, 0, 0, 0.26);
}
headerbar.flat {
box-shadow: none;
}
headerbar.flat, headerbar.flat:backdrop {
background-color: transparent;
}
headerbar .title {
padding: 0 8px;
font-weight: bold;
@ -1561,6 +1589,12 @@ headerbar button.toggle {
border-radius: 9999px;
}
headerbar.flat {
background-color: #F2F2F2;
box-shadow: none;
color: rgba(0, 0, 0, 0.6);
}
headerbar popover.background > contents {
color: rgba(0, 0, 0, 0.87);
}
@ -1738,13 +1772,13 @@ headerbar windowcontrols {
}
headerbar windowcontrols:not(.empty).start:dir(ltr), headerbar windowcontrols:not(.empty).end:dir(rtl) {
margin-right: 4px;
margin-left: 4px;
margin-right: 0;
margin-left: 0;
}
headerbar windowcontrols:not(.empty).start:dir(rtl), headerbar windowcontrols:not(.empty).end:dir(ltr) {
margin-left: 4px;
margin-right: 4px;
margin-left: 0;
margin-right: 0;
}
headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):hover > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):active > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):backdrop > image {
@ -3959,6 +3993,15 @@ window.aboutdialog .large-icons {
-gtk-icon-size: 128px;
}
window.about.background.csd, window.about.background.csd:backdrop {
background-image: none;
background-color: #F2F2F2;
}
window.about.background.csd headerbar {
color: rgba(0, 0, 0, 0.6);
}
/***********
* Sidebar *
***********/
@ -4447,7 +4490,7 @@ window {
window.csd {
border-radius: 16px;
box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent;
box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent, inset 0 1px rgba(255, 255, 255, 0.4);
}
window.csd.maximized, window.csd.fullscreen, window.csd.tiled, window.csd.tiled-top, window.csd.tiled-right, window.csd.tiled-bottom, window.csd.tiled-left {
@ -4456,7 +4499,7 @@ window.csd.maximized, window.csd.fullscreen, window.csd.tiled, window.csd.tiled-
window.csd:backdrop {
transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1);
box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent;
box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent, inset 0 1px rgba(255, 255, 255, 0.4);
}
window.ssd {
@ -4666,14 +4709,17 @@ popover.entry-completion > contents {
}
.nautilus-window.background.csd {
color: rgba(0, 0, 0, 0.6);
}
.nautilus-window.background.csd, .nautilus-window.background.csd:backdrop {
background-image: none;
background-color: #FFFFFF;
color: rgba(0, 0, 0, 0.6);
}
.nautilus-window headerbar {
background-color: #FFFFFF;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
background-color: transparent;
box-shadow: none;
}
.nautilus-window flap > separator {

@ -640,7 +640,7 @@ button:drop(active) {
}
.nautilus-window tabbar tab > button.flat, .nautilus-window tabbar tab:active > button.flat, .nautilus-window tabbar tab:checked > button.flat, .nautilus-window tabbar tab:selected > button.flat, .nautilus-window flap.unfolded > placessidebar > scrolledwindow > viewport > list.navigation-sidebar > row.activatable:selected button.sidebar-button, stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action), placessidebar .navigation-sidebar > row button.sidebar-button, calendar > header > button, row button.circular, check,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action), spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
dnd tab button.image-button, splitbutton.flat > button,
splitbutton.flat > menubutton > button, menubutton.flat > button, filechooser #pathbarbox > stack > box > button, window.dialog.message.csd .dialog-action-area > button, .app-notification button, headerbar popover.background button.flat:not(.suggested-action):not(.destructive-action), headerbar button:not(.suggested-action):not(.destructive-action), .toolbar button,
toolbar button, dropdown > .linked:not(.vertical) > button:not(:only-child),
@ -1391,6 +1391,42 @@ searchbar > revealer > box splitbutton {
/***************
* Header bars *
***************/
window.about.background.csd headerbar button:not(.suggested-action):not(.destructive-action), headerbar.flat button:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:active:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.87);
}
window.about.background.csd headerbar button:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
window.about.background.csd headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.38);
}
window.about.background.csd headerbar button:backdrop:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.38);
}
window.about.background.csd headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:active:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
window.about.background.csd headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
headerbar button:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
@ -1484,14 +1520,6 @@ headerbar:backdrop:disabled {
color: rgba(0, 0, 0, 0.26);
}
headerbar.flat {
box-shadow: none;
}
headerbar.flat, headerbar.flat:backdrop {
background-color: transparent;
}
headerbar .title {
padding: 0 12px;
font-weight: bold;
@ -1561,6 +1589,12 @@ headerbar button.toggle {
border-radius: 9999px;
}
headerbar.flat {
background-color: #F2F2F2;
box-shadow: none;
color: rgba(0, 0, 0, 0.6);
}
headerbar popover.background > contents {
color: rgba(0, 0, 0, 0.87);
}
@ -1738,13 +1772,13 @@ headerbar windowcontrols {
}
headerbar windowcontrols:not(.empty).start:dir(ltr), headerbar windowcontrols:not(.empty).end:dir(rtl) {
margin-right: 6px;
margin-left: 6px;
margin-right: 0;
margin-left: 0;
}
headerbar windowcontrols:not(.empty).start:dir(rtl), headerbar windowcontrols:not(.empty).end:dir(ltr) {
margin-left: 6px;
margin-right: 6px;
margin-left: 0;
margin-right: 0;
}
headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):hover > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):active > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):backdrop > image {
@ -3959,6 +3993,15 @@ window.aboutdialog .large-icons {
-gtk-icon-size: 128px;
}
window.about.background.csd, window.about.background.csd:backdrop {
background-image: none;
background-color: #F2F2F2;
}
window.about.background.csd headerbar {
color: rgba(0, 0, 0, 0.6);
}
/***********
* Sidebar *
***********/
@ -4447,7 +4490,7 @@ window {
window.csd {
border-radius: 18px;
box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent;
box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent, inset 0 1px rgba(255, 255, 255, 0.4);
}
window.csd.maximized, window.csd.fullscreen, window.csd.tiled, window.csd.tiled-top, window.csd.tiled-right, window.csd.tiled-bottom, window.csd.tiled-left {
@ -4456,7 +4499,7 @@ window.csd.maximized, window.csd.fullscreen, window.csd.tiled, window.csd.tiled-
window.csd:backdrop {
transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1);
box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent;
box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent, inset 0 1px rgba(255, 255, 255, 0.4);
}
window.ssd {
@ -4666,14 +4709,17 @@ popover.entry-completion > contents {
}
.nautilus-window.background.csd {
color: rgba(0, 0, 0, 0.6);
}
.nautilus-window.background.csd, .nautilus-window.background.csd:backdrop {
background-image: none;
background-color: #FFFFFF;
color: rgba(0, 0, 0, 0.6);
}
.nautilus-window headerbar {
background-color: #FFFFFF;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
background-color: transparent;
box-shadow: none;
}
.nautilus-window flap > separator {

@ -640,7 +640,7 @@ button:drop(active) {
}
.nautilus-window tabbar tab:active > button.flat, .nautilus-window tabbar tab:checked > button.flat, .nautilus-window tabbar tab:selected > button.flat, .nautilus-window flap.unfolded > placessidebar > scrolledwindow > viewport > list.navigation-sidebar > row.activatable:selected button.sidebar-button, stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action), placessidebar .navigation-sidebar > row button.sidebar-button, calendar > header > button, row button.circular, check,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action), spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
radio, scrollbar button, notebook > header > tabs > arrow, popover.background modelbutton, spinbutton:not(.vertical) > button, spinbutton.vertical > button, tabbar tab button.image-button,
dnd tab button.image-button, splitbutton.flat > button,
splitbutton.flat > menubutton > button, menubutton.flat > button, filechooser #pathbarbox > stack > box > button, window.dialog.message.csd .dialog-action-area > button, .app-notification button, headerbar popover.background button.flat:not(.suggested-action):not(.destructive-action), headerbar button:not(.suggested-action):not(.destructive-action), .toolbar button,
toolbar button, dropdown > .linked:not(.vertical) > button:not(:only-child),
@ -1391,6 +1391,42 @@ searchbar > revealer > box splitbutton {
/***************
* Header bars *
***************/
window.about.background.csd headerbar button:not(.suggested-action):not(.destructive-action), headerbar.flat button:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:active:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.87);
}
window.about.background.csd headerbar button:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
window.about.background.csd headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.38);
}
window.about.background.csd headerbar button:backdrop:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.38);
}
window.about.background.csd headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:focus:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:hover:not(.suggested-action):not(.destructive-action), window.about.background.csd headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:active:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
window.about.background.csd headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.6);
}
window.about.background.csd headerbar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.flat button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) {
color: rgba(0, 0, 0, 0.26);
}
headerbar button:not(.suggested-action):not(.destructive-action) {
color: rgba(255, 255, 255, 0.7);
}
@ -1484,10 +1520,6 @@ headerbar:backdrop:disabled {
color: rgba(255, 255, 255, 0.3);
}
headerbar.flat {
box-shadow: none;
}
headerbar .title {
padding: 0 12px;
font-weight: bold;
@ -1557,6 +1589,12 @@ headerbar button.toggle {
border-radius: 9999px;
}
headerbar.flat {
background-color: #F2F2F2;
box-shadow: none;
color: rgba(0, 0, 0, 0.6);
}
headerbar popover.background > contents {
color: rgba(0, 0, 0, 0.87);
}
@ -1734,13 +1772,13 @@ headerbar windowcontrols {
}
headerbar windowcontrols:not(.empty).start:dir(ltr), headerbar windowcontrols:not(.empty).end:dir(rtl) {
margin-right: 6px;
margin-left: 6px;
margin-right: 0;
margin-left: 0;
}
headerbar windowcontrols:not(.empty).start:dir(rtl), headerbar windowcontrols:not(.empty).end:dir(ltr) {
margin-left: 6px;
margin-right: 6px;
margin-left: 0;
margin-right: 0;
}
headerbar windowcontrols button:not(.suggested-action):not(.destructive-action) > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):hover > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):active > image, headerbar windowcontrols button:not(.suggested-action):not(.destructive-action):backdrop > image {
@ -3955,6 +3993,15 @@ window.aboutdialog .large-icons {
-gtk-icon-size: 128px;
}
window.about.background.csd, window.about.background.csd:backdrop {
background-image: none;
background-color: #F2F2F2;
}
window.about.background.csd headerbar {
color: rgba(0, 0, 0, 0.6);
}
/***********
* Sidebar *
***********/
@ -4672,14 +4719,17 @@ popover.entry-completion > contents {
}
.nautilus-window.background.csd {
color: rgba(255, 255, 255, 0.7);
}
.nautilus-window.background.csd, .nautilus-window.background.csd:backdrop {
background-image: none;
background-color: #2C2C2C;
color: rgba(255, 255, 255, 0.7);
}
.nautilus-window headerbar {
background-color: #2C2C2C;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
background-color: transparent;
box-shadow: none;
}
.nautilus-window flap > separator {

Loading…
Cancel
Save