This commit is contained in:
Vince 2021-06-29 21:20:33 +08:00
parent 25a7a6c068
commit 6594aef210
3 changed files with 124 additions and 37 deletions

View File

@ -1866,8 +1866,12 @@ actionbar {
} }
} }
.background:not(.unified) .titlebar { .background:not(.unified) {
&, & headerbar { box-shadow: inset 0 1px $highlight_color; } .titlebar {
&, & headerbar { box-shadow: inset 0 1px $highlight_color; }
}
stack.titlebar { box-shadow: none; }
} }
window.background.csd.unified { window.background.csd.unified {
@ -2547,7 +2551,7 @@ notebook {
@extend %tabs_tab; @extend %tabs_tab;
// close button // close button
button.flat { button.flat, button.close-button {
min-height: $small_size; min-height: $small_size;
min-width: $small_size; min-width: $small_size;
border-radius: 3px; border-radius: 3px;

View File

@ -1334,51 +1334,54 @@ button.documents-favorite:active:hover {
// //
// Gnome Tweak Tool ( Gnome tweaks ) // Gnome Tweak Tool ( Gnome tweaks )
// //
window.background.csd {
> hdyleaflet,
> leaflet,
> box.horizontal > stack.background {
frame > border { border: none; }
hdyleaflet, leaflet, box.horizontal > stack.background { frame:not(.view) list:not(.contacts-contact-list) { // Don't set this to Gnome-Contacts
frame > border { border: none; } @extend %circular_list;
frame:not(.view) list:not(.contacts-contact-list) { // Don't set this to Gnome-Contacts row.activatable {
@extend %circular_list; @extend %circular_row;
row.activatable { .row-header > button:not(.text-button) {
@extend %circular_row; min-height: 28px;
min-width: 28px;
.row-header > button:not(.text-button) { padding: 0;
min-height: 28px; margin: 4px 0;
min-width: 28px; }
padding: 0;
margin: 4px 0;
} }
} }
}
frame.view { frame.view {
@extend %circular_list; @extend %circular_list;
list { list {
background: none;
> separator {
background: none; background: none;
min-height: 0;
> separator {
background: none;
min-height: 0;
}
row.activatable { @extend %circular_row; }
} }
}
list.view, list.frame {
@extend %circular_list;
row.activatable { @extend %circular_row; } row.activatable { @extend %circular_row; }
} }
}
list.view, list.frame { > box.vertical > scrolledwindow > viewport.frame {
@extend %circular_list; &,
> stack,
row.activatable { @extend %circular_row; } > stack > box.vertical {
} > list > row.activatable { @extend %sidebar_row; }
}
> box.vertical > scrolledwindow > viewport.frame {
&,
> stack,
> stack > box.vertical {
> list > row.activatable { @extend %sidebar_row; }
} }
} }
} }
@ -1639,7 +1642,7 @@ window#gnome-system-monitor.background.csd {
// Gnome-sound-recorder // Gnome-sound-recorder
// //
stack { window.background.csd > stack {
> grid.vertical { > grid.vertical {
> scrolledwindow { > scrolledwindow {
border: none; border: none;
@ -1831,7 +1834,6 @@ popover.background:not(.emoji-picker) > box.vertical > scrolledwindow {
// popover for bookmarks // popover for bookmarks
popover.background:not(.emoji-picker) > box.vertical > stack > box.vertical { popover.background:not(.emoji-picker) > box.vertical > stack > box.vertical {
scrolledwindow > viewport.frame { scrolledwindow > viewport.frame {
border: 1px solid $borders_color; border: 1px solid $borders_color;
@ -2795,6 +2797,41 @@ window#GearyMainWindow.background.csd { // <= 3.32
} }
//
// Gnome-Box
//
window.background.csd {
> overlay > stack.content-bg {
background-color: transparent;
border-radius: 0 0 $wm_radius $wm_radius;
> notebook.frame {
border: none;
> stack {
border-radius: 0 0 $wm_radius $wm_radius;
> box.transparent-bg > scrolledwindow > viewport.frame > grid > stack > box {
> frame {
> border {
border: 1px solid $borders_color;
border-bottom: none;
border-radius: $bt_radius $bt_radius 0 0;
}
> stack > list {
border-radius: $bt_radius $bt_radius 0 0;
}
}
> toolbar.inline-toolbar { border-top: 1px solid $borders_color; }
}
}
}
}
}
// //
// Dialogs // Dialogs
// //

View File

@ -438,7 +438,13 @@ toolbar#SubToolBox {
} }
} }
box#SubToolbox {
background-color: $base_color;
}
widget#ToolboxCommon { widget#ToolboxCommon {
background-color: $base_color;
button.flat { button.flat {
&:active { &:active {
background-color: rgba($fg_color, 0.25); background-color: rgba($fg_color, 0.25);
@ -463,6 +469,46 @@ box#DesktopStatusBar {
} }
} }
scrolledwindow#DialogNotebook {
> viewport.frame > notebook.frame {
border: 1px solid $borders_color;
button.close-button {
margin-top: 4px;
margin-bottom: 4px;
border-radius: $circular_radius;
&, &:hover, &:active { background-color: transparent; }
}
notebook.frame { margin-top: -1px; }
}
}
grid#CanvasGrid {
.background & > button:not(.flat) {
@extend %flat_button;
border-radius: 3px;
&:active {
background-color: rgba($fg_color, 0.25);
}
&:checked {
background-color: rgba($fg_color, 0.15);
}
}
}
dialog.background {
> box.dialog-vbox > filechooser {
> actionbar > revealer > box > box > box > combobox {
margin-top: 24px;
margin-bottom: 24px;
}
}
}
// //
// Synaptic // Synaptic
// //