This commit is contained in:
vinceliuice 2023-10-29 16:03:01 +08:00
parent 46fa742384
commit a6e500a0ba
4 changed files with 19 additions and 16 deletions

View file

@ -95,6 +95,7 @@
padding: 0;
margin: 0;
text-shadow: none;
color: $text-secondary;
// border-radius: $base_radius;
// month
@ -112,7 +113,7 @@
// prev/next month icons
.calendar-change-month-back,
.calendar-change-month-forward {
padding: 0 0 !important;
padding: 0 !important;
margin: ($base_padding / 2) 0 !important;
StIcon {
@ -135,10 +136,10 @@
.calendar-day-base {
@include fontsize($font_size - 1);
text-align: center;
width: $item_size + 2px;
height: $item_size + 2px;
padding: 0;
margin: 2px;
width: $item_size + 2px !important;
height: $item_size + 2px !important;
padding: 0 !important;
margin: 2px !important;
border-radius: $circular_radius;
color: $text-secondary;
border: none;
@ -164,10 +165,12 @@
}
}
&.calendar-weekday {}
.calendar-day {
&.calendar-weekday {}
&.calendar-weekend {
color: $text-disabled;
&.calendar-weekend {
color: $text-disabled !important;
}
}
.calendar-day { //border collapse hack - see calendar.js
@ -183,7 +186,7 @@
}
.calendar-nonwork-day {
color: $text-disabled;
color: $text-disabled !important;
font-weight: normal;
}
@ -216,12 +219,12 @@
}
.calendar-day-with-events {
color: $text-secondary;
color: $text-disabled !important;
background-image: url("assets/calendar-today.svg");
background-size: contain;
&.calendar-work-day {
color: $text-secondary;
color: $text-disabled !important;
font-weight: bold;
}
}

View file

@ -125,7 +125,7 @@
// album-art
.media-message-cover-icon {
icon-size: 48px;
icon-size: 32px !important;
border-radius: $base_radius;
&.fallback {

View file

@ -14,7 +14,7 @@
// album-art
.media-message-cover-icon {
padding: $base_padding;
padding: 0;
&.fallback {
padding: $base_padding;

View file

@ -11,15 +11,15 @@
}
.message-media-control {
margin: ($base_padding * 3 + 9px) $base_padding;
margin: $base_padding * 3.5 $base_padding;
padding: $base_padding * 2;
}
// album-art
.media-message-cover-icon {
padding: $base_padding * 2;
padding: 0;
&.fallback {
padding: $base_padding * 2;
padding: $base_padding;
}
}