whycq
2024-07-25 a8bbfa5addff1f556c670e049f8eb86ebe8c58d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@charset "UTF-8";
/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
/**
 * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
 */
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.uni-calendar-item__weeks-box.data-v-39ec3f8e {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1px 0;
  position: relative;
}
.uni-calendar-item__weeks-box-text.data-v-39ec3f8e {
  font-size: 14px;
  font-weight: bold;
  color: #455997;
}
.uni-calendar-item__weeks-lunar-text.data-v-39ec3f8e {
  font-size: 12px;
  color: #333;
}
.uni-calendar-item__weeks-box-item.data-v-39ec3f8e {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.uni-calendar-item__weeks-box-circle.data-v-39ec3f8e {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #dd524d;
}
.uni-calendar-item__weeks-box .uni-calendar-item--disable.data-v-39ec3f8e {
  cursor: default;
}
.uni-calendar-item--disable .uni-calendar-item__weeks-box-text-disable.data-v-39ec3f8e {
  color: #D1D1D1;
}
.uni-calendar-item--isDay.data-v-39ec3f8e {
  position: absolute;
  top: 10px;
  right: 17%;
  background-color: #dd524d;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.uni-calendar-item--extra.data-v-39ec3f8e {
  color: #dd524d;
  opacity: 0.8;
}
.uni-calendar-item__weeks-box .uni-calendar-item--checked.data-v-39ec3f8e {
  background-color: #007aff;
  border-radius: 50%;
  box-sizing: border-box;
  border: 3px solid #fff;
}
.uni-calendar-item--checked .uni-calendar-item--checked-text.data-v-39ec3f8e {
  color: #fff;
}
.uni-calendar-item--multiple .uni-calendar-item--checked-range-text.data-v-39ec3f8e {
  color: #333;
}
.uni-calendar-item--multiple.data-v-39ec3f8e {
  background-color: #F6F7FC;
}
.uni-calendar-item--multiple .uni-calendar-item--before-checked.data-v-39ec3f8e,
.uni-calendar-item--multiple .uni-calendar-item--after-checked.data-v-39ec3f8e {
  background-color: #409eff;
  border-radius: 50%;
  box-sizing: border-box;
  border: 3px solid #F6F7FC;
}
.uni-calendar-item--before-checked .uni-calendar-item--checked-text.data-v-39ec3f8e,
.uni-calendar-item--after-checked .uni-calendar-item--checked-text.data-v-39ec3f8e {
  color: #fff;
}
.uni-calendar-item--before-checked-x.data-v-39ec3f8e {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  box-sizing: border-box;
  background-color: #F6F7FC;
}
.uni-calendar-item--after-checked-x.data-v-39ec3f8e {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: #F6F7FC;
}