Fixed libreoffice issues

This commit is contained in:
vinceliuice 2024-08-28 20:36:57 +08:00
parent 2b5f84adb0
commit 1f60c8eb3e
2 changed files with 44 additions and 8 deletions

View File

@ -3638,7 +3638,7 @@ calendar {
// Dialogs
//
$messagedialog_bg: if($trans == 'true', rgba($bg_color, 0.95), $bg_color);
$messagedialog_bg: if($trans == 'true', rgba($bg_color, 0.98), $bg_color);
messagedialog { // Message Dialog styling
&.background { background-color: rgba($messagedialog_bg, 1); }

View File

@ -301,11 +301,13 @@ window.background:not(.solid-csd):not(.csd) {
padding: 3px;
}
> scrolledwindow > viewport.frame > grid > box.vertical {
> toolbar {
background: none;
border: none;
padding: 6px;
> scrolledwindow > viewport.frame {
> grid > box.vertical {
> toolbar {
background: none;
border: none;
padding: 6px;
}
}
}
@ -317,12 +319,46 @@ window.background:not(.solid-csd):not(.csd) {
// for 'Notebookbar' toolbar
> notebook {
border: none; // unset borders
background-color: $base_color;
background: none;
box-shadow: none;
padding: 0;
margin: 0;
> stack {
border: none;
border: 1px solid $dark_sidebar_border;
border-left: none;
border-right: none;
background-color: transparent;
box-shadow: none;
border-radius: 0;
}
> header {
box-shadow: none;
border-radius: $bt_radius;
padding: 0;
margin: 0;
border: none;
background: none;
> tabs > tab {
margin: 3px 1px;
border-radius: $bt_radius;
border: none;
box-shadow: none;
&:hover {
background-color: rgba($fg_color, 0.1);
}
&:active {
background-color: rgba($fg_color, 0.2);
}
&:selected {
background-color: rgba($fg_color, 0.15);
}
}
}
}
}