update
This commit is contained in:
parent
36760b7469
commit
5ee5f4397a
@ -31,7 +31,6 @@
|
|||||||
@import 'common/tiled-previews';
|
@import 'common/tiled-previews';
|
||||||
@import 'common/workspace-switcher';
|
@import 'common/workspace-switcher';
|
||||||
@import 'widgets-3-28/app-grid';
|
@import 'widgets-3-28/app-grid';
|
||||||
@import 'widgets-3-28/calendar';
|
|
||||||
@import 'widgets-3-28/dash';
|
@import 'widgets-3-28/dash';
|
||||||
@import 'widgets-3-28/login-dialog';
|
@import 'widgets-3-28/login-dialog';
|
||||||
@import 'widgets-3-28/other';
|
@import 'widgets-3-28/other';
|
||||||
|
@ -105,17 +105,18 @@ $popover_bubble_bg: if($variant == 'light', rgba(white, 0.95), rgba(lighten($bas
|
|||||||
border: none;
|
border: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
background-color: $popover_bubble_bg;
|
background-color: $popover_bubble_bg;
|
||||||
padding: $base_padding;
|
padding: $base_padding !important;
|
||||||
margin: 0 $base_padding * 2;
|
margin: 0 $base_padding * 2 !important;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
border-radius: $mn_radius;
|
border-radius: $mn_radius;
|
||||||
|
|
||||||
// month
|
// month
|
||||||
.calendar-month-label {
|
.calendar-month-label {
|
||||||
margin: 2px;
|
margin: 0;
|
||||||
padding: 6px 16px;
|
padding: $base_padding 0;
|
||||||
color: $fg_color;
|
color: $fg_color;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
font-size: 1em !important;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
|
|
||||||
@ -125,8 +126,11 @@ $popover_bubble_bg: if($variant == 'light', rgba(white, 0.95), rgba(lighten($bas
|
|||||||
// prev/next month icons
|
// prev/next month icons
|
||||||
.calendar-change-month-back,
|
.calendar-change-month-back,
|
||||||
.calendar-change-month-forward {
|
.calendar-change-month-forward {
|
||||||
|
padding: 2px !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
|
||||||
StIcon {
|
StIcon {
|
||||||
icon-size: $base_icon_size;
|
icon-size: $base_icon_size !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -201,22 +205,27 @@ $popover_bubble_bg: if($variant == 'light', rgba(white, 0.95), rgba(lighten($bas
|
|||||||
// Today
|
// Today
|
||||||
.calendar-today {
|
.calendar-today {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: $light_alt_fg_color;
|
color: $alt_fg_color !important;
|
||||||
background-color: $primary_color;
|
background-color: rgba($fg_color, 0.1);
|
||||||
border: none;
|
border: none;
|
||||||
|
|
||||||
&:hover, &:focus {
|
&:hover, &:focus {
|
||||||
background-color:lighten($primary_color, 3%);
|
background-color: rgba($fg_color, 0.15);
|
||||||
color: $light_alt_fg_color;
|
color: $fg_color !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:active, &:selected {
|
&:active {
|
||||||
|
background-color: darken($primary_color, 5%);
|
||||||
|
color: $light_fg_color !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:selected {
|
||||||
background-color: $primary_color;
|
background-color: $primary_color;
|
||||||
color: $light_alt_fg_color;
|
color: $light_fg_color !important;
|
||||||
|
|
||||||
&:hover, &:focus {
|
&:hover, &:focus {
|
||||||
background-color:lighten($primary_color, 3%);
|
background-color: lighten($primary_color, 8%);
|
||||||
color: $light_alt_fg_color;
|
color: $light_fg_color !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -254,8 +263,8 @@ $popover_bubble_bg: if($variant == 'light', rgba(white, 0.95), rgba(lighten($bas
|
|||||||
.weather-button,
|
.weather-button,
|
||||||
.events-button {
|
.events-button {
|
||||||
@extend %popover_bubble;
|
@extend %popover_bubble;
|
||||||
padding: $base_padding * 2;
|
padding: $base_padding * 2 !important;
|
||||||
margin: 2px $base_padding;
|
margin: 2px $base_margin !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Events
|
// Events
|
||||||
@ -314,7 +323,7 @@ $popover_bubble_bg: if($variant == 'light', rgba(white, 0.95), rgba(lighten($bas
|
|||||||
|
|
||||||
// Weather
|
// Weather
|
||||||
.weather-button {
|
.weather-button {
|
||||||
margin-bottom: 6px;
|
margin-bottom: 6px !important;
|
||||||
|
|
||||||
.weather-box {
|
.weather-box {
|
||||||
spacing: $base_spacing + $base_margin;
|
spacing: $base_spacing + $base_margin;
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
|
|
||||||
.calendar {
|
|
||||||
// prev/next month icons
|
|
||||||
.calendar-change-month-back,
|
|
||||||
.calendar-change-month-forward {
|
|
||||||
padding: 0 2px;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user