Mate DE: Fix odd rounded corners in some mate panel widgets

This commit is contained in:
EliverLara
2024-02-12 16:27:38 -06:00
parent 34d0d927a3
commit 612c96ef92
3 changed files with 57 additions and 13 deletions
+33 -13
View File
@@ -3,18 +3,38 @@
//
MsdOsdWindow.background.osd {
border-radius: 2px;
border: 1px solid $borders_color;
.progressbar {
background-color: $selected_bg_color;
border: none;
border-color: $selected_bg_color;
border-radius: 5px;
border-radius: 2px;
border: 1px solid $borders_color;
.progressbar {
background-color: $selected_bg_color;
border: none;
border-color: $selected_bg_color;
border-radius: 5px;
}
.trough {
background-color: darken($osd_bg_color, 5%);
border: none;
border-radius: 5px;
}
}
//
// Mate Panel
//
.mate-panel-menu-bar {
background-color: $panel_bg_color;
border-radius: 0;
button {
border-radius: 0;
&, &:hover {
background-color: transparent;
color: $fg_color;
}
.trough {
background-color: darken($osd_bg_color, 5%);
border: none;
border-radius: 5px;
&:active, &:checked {
box-shadow: 0 -2px 0 $selected_bg_color inset;
color: $fg_color;
}
}
}
}
+12
View File
@@ -5918,6 +5918,18 @@ MsdOsdWindow.background.osd {
border: none;
border-radius: 5px; }
.mate-panel-menu-bar {
background-color: #2e3440;
border-radius: 0; }
.mate-panel-menu-bar button {
border-radius: 0; }
.mate-panel-menu-bar button, .mate-panel-menu-bar button:hover {
background-color: transparent;
color: #d8dee9; }
.mate-panel-menu-bar button:active, .mate-panel-menu-bar button:checked {
box-shadow: 0 -2px 0 #8fbcbb inset;
color: #d8dee9; }
/***********************
* App-Specific Styles *
***********************/
+12
View File
@@ -5918,6 +5918,18 @@ MsdOsdWindow.background.osd {
border: none;
border-radius: 5px; }
.mate-panel-menu-bar {
background-color: #2e3440;
border-radius: 0; }
.mate-panel-menu-bar button {
border-radius: 0; }
.mate-panel-menu-bar button, .mate-panel-menu-bar button:hover {
background-color: transparent;
color: #d8dee9; }
.mate-panel-menu-bar button:active, .mate-panel-menu-bar button:checked {
box-shadow: 0 -2px 0 #8fbcbb inset;
color: #d8dee9; }
/***********************
* App-Specific Styles *
***********************/