更新:登录功能
This commit is contained in:
@@ -0,0 +1,89 @@
|
||||
@import '../../common/abstracts/variable';
|
||||
@import '../../common/abstracts/mixin';
|
||||
|
||||
.wot-theme-dark {
|
||||
@include b(month-panel) {
|
||||
@include e(title) {
|
||||
color: $-dark-color;
|
||||
}
|
||||
|
||||
@include e(weeks) {
|
||||
box-shadow: 0px 4px 8px 0 rgba(255, 255, 255, 0.02);
|
||||
color: $-dark-color;
|
||||
}
|
||||
|
||||
@include e(time-label) {
|
||||
color: $-dark-color;
|
||||
&::after{
|
||||
background: $-dark-background4;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include b(month-panel) {
|
||||
font-size: $-calendar-fs;
|
||||
|
||||
@include e(title) {
|
||||
padding: 5px 0;
|
||||
text-align: center;
|
||||
font-size: $-calendar-panel-title-fs;
|
||||
color: $-calendar-panel-title-color;
|
||||
padding: $-calendar-panel-padding;
|
||||
}
|
||||
|
||||
@include e(weeks) {
|
||||
display: flex;
|
||||
height: $-calendar-week-height;
|
||||
line-height: $-calendar-week-height;
|
||||
box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.02);
|
||||
color: $-calendar-week-color;
|
||||
font-size: $-calendar-week-fs;
|
||||
padding: $-calendar-panel-padding;
|
||||
}
|
||||
|
||||
@include e(week) {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@include e(container) {
|
||||
padding: $-calendar-panel-padding;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@include e(time) {
|
||||
display: flex;
|
||||
box-shadow: 0px -4px 8px 0px rgba(0, 0, 0, 0.02);
|
||||
}
|
||||
|
||||
@include e(time-label) {
|
||||
position: relative;
|
||||
flex: 1;
|
||||
font-size: $-picker-column-fs;
|
||||
text-align: center;
|
||||
line-height: 125px;
|
||||
color: $-picker-column-color;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
height: 35px;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
transform: translateY(-50%);
|
||||
background: $-picker-column-select-bg;
|
||||
z-index: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@include e(time-text) {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
@include e(time-picker) {
|
||||
flex: 3;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user