This commit is contained in:
Vince
2021-02-22 11:43:56 +08:00
135 changed files with 3381 additions and 2647 deletions

View File

@@ -120,9 +120,9 @@ stage {
%theme_dialogs {
background-color: $dialog_bg_color;
border-radius: $wm_radius;
box-shadow: inset 0 0 1px 0 rgba(white, 0.2);
border: solid rgba(black, 0.75);
border-width: if($variant=='light', 0, 1px);
box-shadow: 3px 3px 8px -3px rgba(black, 0.65);
}
%overview_scrollbar {

View File

@@ -152,7 +152,7 @@
}
.calendar-today {
font-weight: bold !important;
font-weight: bold;
color: $light_alt_fg_color;
background-color: $primary_color;
border: none;
@@ -216,7 +216,7 @@
font-weight: bold;
}
/* Events */
// Events
.events-button {
.events-box {
spacing: 6px;
@@ -354,11 +354,9 @@
}
.message {
margin: 0 4px;
margin: 0 4px 6px;
@extend %popover_bubble;
&:first-child { margin-top: 8px; }
// icon container
.message-icon-bin {
margin: 8px 0;

View File

@@ -68,9 +68,7 @@
text-align: center;
margin-bottom: 8px;
padding: 2px 6px;
color: white;
background-color: $warning_color;
border-radius: $circular_radius;
color: $warning_color;
}
.login-dialog-logo-bin { padding: 24px 0px; }

View File

@@ -3,7 +3,6 @@ $shell_panel_bg: if($trans == 'true', $panel_bg, rgba($panel_bg, 0.95));
#panel {
background-color: $shell_panel_bg;
/* transition from solid to transparent */
transition-duration: 250ms;
font-weight: bold;
height: $menuitem_size;
@@ -146,7 +145,6 @@ $shell_panel_bg: if($trans == 'true', $panel_bg, rgba($panel_bg, 0.95));
&.solid {
background-color: $panel_bg;
/* transition from transparent to solid */
transition-duration: 250ms;
background-gradient-direction: none; // for Ubuntu session
text-shadow: none; // for Ubuntu session

View File

@@ -12,7 +12,7 @@ $popop_menuitem_radius: $wm_radius - 4px;
@extend %theme_dialogs;
box-shadow: 0 8px 16px 0 rgba(black, 0.25);
border: 1px solid if($variant=='light', rgba(black, 0), rgba(black, 0.75));
margin: 4px 8px !important;
margin: 4px 8px 4px 12px !important;
}
.popup-menu-item {
@@ -133,6 +133,7 @@ $popop_menuitem_radius: $wm_radius - 4px;
padding: 0 0;
background: none;
border: none;
height: 1px;
.popup-separator-menu-item-separator {
height: 1px; //not really the whole box
@@ -143,6 +144,7 @@ $popop_menuitem_radius: $wm_radius - 4px;
.popup-sub-menu & { //submenu separators
padding: 0 0;
margin: 0 32px 0 0;
height: 1px;
}
}
}