161 lines
4.1 KiB
Plaintext
161 lines
4.1 KiB
Plaintext
|
@charset "UTF-8";
|
|||
|
/**
|
|||
|
* 这里是uni-app内置的常用样式变量
|
|||
|
*
|
|||
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|||
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|||
|
*
|
|||
|
*/
|
|||
|
/**
|
|||
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|||
|
*
|
|||
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|||
|
*/
|
|||
|
/* 颜色变量 */
|
|||
|
/* 行为相关颜色 */
|
|||
|
/* 筛选组件 */
|
|||
|
/* 文字基本颜色 */
|
|||
|
/* 背景颜色 */
|
|||
|
/* 边框颜色 */
|
|||
|
/* 尺寸变量 */
|
|||
|
/* 文字尺寸 */
|
|||
|
/* 图片尺寸 */
|
|||
|
/* Border Radius */
|
|||
|
/* 水平间距 */
|
|||
|
/* 垂直间距 */
|
|||
|
/* 透明度 */
|
|||
|
/* 文章场景相关 */
|
|||
|
.calendar-wrapper.data-v-2f272e66 {
|
|||
|
color: #bbb7b7;
|
|||
|
font-size: 28rpx;
|
|||
|
text-align: center;
|
|||
|
background-color: #fff;
|
|||
|
padding-bottom: 10rpx;
|
|||
|
}
|
|||
|
.calendar-wrapper .header.data-v-2f272e66 {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: center;
|
|||
|
height: 88rpx;
|
|||
|
color: #42464A;
|
|||
|
font-size: 32rpx;
|
|||
|
font-weight: bold;
|
|||
|
border-bottom: 2rpx solid #f2f2f2;
|
|||
|
}
|
|||
|
.calendar-wrapper .header .pre.data-v-2f272e66, .calendar-wrapper .header .next.data-v-2f272e66 {
|
|||
|
color: #4d7df9;
|
|||
|
font-size: 28rpx;
|
|||
|
font-weight: normal;
|
|||
|
padding: 8rpx 15rpx;
|
|||
|
border-radius: 10rpx;
|
|||
|
border: 2rpx solid #dcdfe6;
|
|||
|
}
|
|||
|
.calendar-wrapper .header .pre.data-v-2f272e66 {
|
|||
|
margin-right: 30rpx;
|
|||
|
}
|
|||
|
.calendar-wrapper .header .next.data-v-2f272e66 {
|
|||
|
margin-left: 30rpx;
|
|||
|
}
|
|||
|
.calendar-wrapper .week.data-v-2f272e66 {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
height: 80rpx;
|
|||
|
line-height: 80rpx;
|
|||
|
border-bottom: 1rpx solid rgba(255, 255, 255, 0.2);
|
|||
|
}
|
|||
|
.calendar-wrapper .week view.data-v-2f272e66 {
|
|||
|
flex: 1;
|
|||
|
}
|
|||
|
.calendar-wrapper .content.data-v-2f272e66 {
|
|||
|
position: relative;
|
|||
|
overflow: hidden;
|
|||
|
transition: height 0.4s ease;
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days.data-v-2f272e66 {
|
|||
|
transition: top 0.3s;
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
flex-wrap: wrap;
|
|||
|
position: relative;
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days .item.data-v-2f272e66 {
|
|||
|
position: relative;
|
|||
|
display: block;
|
|||
|
height: 80rpx;
|
|||
|
line-height: 80rpx;
|
|||
|
width: calc(100% / 7);
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days .item .day.data-v-2f272e66 {
|
|||
|
font-style: normal;
|
|||
|
display: inline-block;
|
|||
|
vertical-align: middle;
|
|||
|
width: 60rpx;
|
|||
|
height: 60rpx;
|
|||
|
line-height: 60rpx;
|
|||
|
overflow: hidden;
|
|||
|
border-radius: 60rpx;
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days .item .day.choose.data-v-2f272e66 {
|
|||
|
background-color: #4d7df9;
|
|||
|
color: #fff;
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days .item .day.nolm.data-v-2f272e66 {
|
|||
|
color: #fff;
|
|||
|
opacity: 0.3;
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days .item .isWorkDay.data-v-2f272e66 {
|
|||
|
color: #42464a;
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days .item .notSigned.data-v-2f272e66 {
|
|||
|
font-style: normal;
|
|||
|
width: 8rpx;
|
|||
|
height: 8rpx;
|
|||
|
background: #fa7268;
|
|||
|
border-radius: 10rpx;
|
|||
|
position: absolute;
|
|||
|
left: 50%;
|
|||
|
bottom: 0;
|
|||
|
pointer-events: none;
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days .item .today.data-v-2f272e66 {
|
|||
|
color: #fff;
|
|||
|
background-color: #a8c0ff;
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days .item .workDay.data-v-2f272e66 {
|
|||
|
font-style: normal;
|
|||
|
width: 8rpx;
|
|||
|
height: 8rpx;
|
|||
|
background: #4d7df9;
|
|||
|
border-radius: 10rpx;
|
|||
|
position: absolute;
|
|||
|
left: 50%;
|
|||
|
bottom: 0;
|
|||
|
pointer-events: none;
|
|||
|
}
|
|||
|
.calendar-wrapper .content .days .item .markDay.data-v-2f272e66 {
|
|||
|
font-style: normal;
|
|||
|
width: 8rpx;
|
|||
|
height: 8rpx;
|
|||
|
background: #fc7a64;
|
|||
|
border-radius: 10rpx;
|
|||
|
position: absolute;
|
|||
|
left: 46%;
|
|||
|
bottom: 0;
|
|||
|
pointer-events: none;
|
|||
|
}
|
|||
|
.calendar-wrapper .hide.data-v-2f272e66 {
|
|||
|
height: 80rpx !important;
|
|||
|
}
|
|||
|
.calendar-wrapper .weektoggle.data-v-2f272e66 {
|
|||
|
width: 85rpx;
|
|||
|
height: 32rpx;
|
|||
|
position: relative;
|
|||
|
bottom: -42rpx;
|
|||
|
}
|
|||
|
.calendar-wrapper .weektoggle.down.data-v-2f272e66 {
|
|||
|
-webkit-transform: rotate(180deg);
|
|||
|
transform: rotate(180deg);
|
|||
|
bottom: 0;
|
|||
|
}
|
|||
|
|