ren-calendar.wxss 4.7 KB
@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-2e42c8f8 {
  color: #bbb7b7;
  font-size: 28rpx;
  text-align: center;
  background-color: #f6f8fa;
  padding-bottom: 10rpx;
}
.calendar-wrapper .header.data-v-2e42c8f8 {
  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-2e42c8f8,
.calendar-wrapper .header .next.data-v-2e42c8f8 {
  color: #4d7df9;
  font-size: 28rpx;
  font-weight: normal;
  padding: 8rpx 15rpx;
  border-radius: 10rpx;
  border: 2rpx solid #dcdfe6;
}
.calendar-wrapper .header .pre.data-v-2e42c8f8 {
  margin-right: 30rpx;
}
.calendar-wrapper .header .next.data-v-2e42c8f8 {
  margin-left: 30rpx;
}
.calendar-wrapper .week.data-v-2e42c8f8 {
  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-2e42c8f8 {
  flex: 1;
}
.calendar-wrapper .content.data-v-2e42c8f8 {
  position: relative;
  overflow: hidden;
  transition: height 0.4s ease;
}
.calendar-wrapper .content .days.data-v-2e42c8f8 {
  transition: top 0.3s;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.calendar-wrapper .content .days .item.data-v-2e42c8f8 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  display: block;
  height: 80rpx;
  line-height: 80rpx;
  width: calc(100% / 7);
}
.calendar-wrapper .content .days .item .day.data-v-2e42c8f8 {
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: #323233;
  font-size: 32rpx;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  width: 108rpx;
  height: 108rpx;
  box-sizing: border-box;
  line-height: 60rpx;
  overflow: hidden;
  border-radius: 60rpx;
}
.calendar-wrapper .content .days .item .day.choose.data-v-2e42c8f8 {
  /* background-color: #4d7df9; */
  background-color: #ffc01b;
  width: 108rpx;
  height: 108rpx;
  border-radius: 24rpx;
  /* color: #000; */
  color: #323233;
  font-size: 32rpx;
  font-weight: 700;
}
.calendar-wrapper .content .days .item .day.nolm.data-v-2e42c8f8 {
  color: #fff;
  opacity: 0.3;
}
.calendar-wrapper .content .days .item .isWorkDay.data-v-2e42c8f8 {
  color: #42464a;
}
.calendar-wrapper .content .days .item .notSigned.data-v-2e42c8f8 {
  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-2e42c8f8 {
  color: #000;
  background: #f6f8fa;
  /* background-color: #a8c0ff; */
}
.calendar-wrapper .content .days .item .workDay.data-v-2e42c8f8 {
  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-2e42c8f8 {
  margin-top: 10rpx;
  width: 16rpx;
  height: 8rpx;
  border-radius: 4rpx;
  opacity: 1;
  background: #ffc01b;
  font-style: normal;
  /* width: 8rpx;
                    height: 8rpx;
                    background: #fc7a64;
                    border-radius: 10rpx; */
  position: absolute;
  left: 43%;
  bottom: 0;
  pointer-events: none;
}
.calendar-wrapper .hide.data-v-2e42c8f8 {
  height: 80rpx !important;
}
.calendar-wrapper .weektoggle.data-v-2e42c8f8 {
  width: 85rpx;
  height: 32rpx;
  position: relative;
  bottom: -42rpx;
}
.calendar-wrapper .weektoggle.down.data-v-2e42c8f8 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  bottom: 0;
}
.dateText.data-v-2e42c8f8 {
  color: #323233;
  font-size: 32rpx;
  font-weight: 700;
  margin: 0 32rpx;
}