init
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "LayTimeline",
|
||||
};
|
||||
</script>
|
||||
|
||||
<script setup lang="ts">
|
||||
import "./index.less";
|
||||
import { computed, withDefaults } from "vue";
|
||||
|
||||
export interface TimelineProps {
|
||||
direction?: "horizontal" | "vertical";
|
||||
}
|
||||
|
||||
const props = withDefaults(defineProps<TimelineProps>(), {
|
||||
direction: "vertical",
|
||||
});
|
||||
|
||||
const timeLineClass = computed(() => [
|
||||
"layui-timeline",
|
||||
props.direction === "horizontal" ? "layui-timeline-horizontal" : "",
|
||||
]);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ul :class="timeLineClass">
|
||||
<slot></slot>
|
||||
</ul>
|
||||
</template>
|
||||
Binary file not shown.
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<transition name="fade">
|
||||
<slot></slot>
|
||||
</transition>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { inject, ref } from "vue";
|
||||
|
||||
const time = inject("time");
|
||||
const transition = ref(`opacity ${time}s ease`);
|
||||
</script>
|
||||
<style>
|
||||
.fade-enter-from,
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
.fade-enter-to,
|
||||
.fade-leave-from {
|
||||
opacity: 1;
|
||||
}
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: v-bind(transition);
|
||||
}
|
||||
</style>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,20 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "ComponentIcon",
|
||||
};
|
||||
</script>
|
||||
<script setup lang="ts">
|
||||
import LayIcon from "../component/icon/index";
|
||||
|
||||
const props = defineProps<{
|
||||
color?: string;
|
||||
size?: string;
|
||||
}>();
|
||||
</script>
|
||||
<template>
|
||||
<lay-icon
|
||||
:color="props.color"
|
||||
:size="props.size"
|
||||
type="layui-icon-component"
|
||||
/>
|
||||
</template>
|
||||
@@ -0,0 +1,56 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "LayRadioGroup",
|
||||
};
|
||||
</script>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { provide, ref, watch } from "vue";
|
||||
|
||||
export interface RadioGroupProps {
|
||||
modelValue?: string | boolean | number;
|
||||
name?: string;
|
||||
disabled?: boolean;
|
||||
}
|
||||
|
||||
const props = withDefaults(defineProps<RadioGroupProps>(), {
|
||||
disabled: false,
|
||||
});
|
||||
|
||||
const emit = defineEmits(["update:modelValue", "change"]);
|
||||
|
||||
const modelValue = ref(props.modelValue);
|
||||
const disabled = ref(props.disabled);
|
||||
|
||||
provide("radioGroup", {
|
||||
name: "LayRadioGroup",
|
||||
modelValue: modelValue,
|
||||
naiveName: props.name,
|
||||
disabled: disabled,
|
||||
});
|
||||
|
||||
watch(
|
||||
() => modelValue,
|
||||
(val) => {
|
||||
emit("change", modelValue.value);
|
||||
emit("update:modelValue", modelValue.value);
|
||||
},
|
||||
{ deep: true }
|
||||
);
|
||||
|
||||
watch(
|
||||
() => props.modelValue,
|
||||
(val) => (modelValue.value = val)
|
||||
);
|
||||
|
||||
watch(
|
||||
() => props.disabled,
|
||||
(val) => (disabled.value = val)
|
||||
);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="layui-radio-group">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
Binary file not shown.
@@ -0,0 +1,597 @@
|
||||
@import "../dropdown/index.less";
|
||||
@import "../input/index.less";
|
||||
|
||||
@lg: 44px;
|
||||
@md: 38px;
|
||||
@sm: 32px;
|
||||
@xs: 26px;
|
||||
@lg-width: 260px;
|
||||
@md-width: 220px;
|
||||
@sm-width: 180px;
|
||||
@xs-width: 140px;
|
||||
@lg-range-width: 520px;
|
||||
@md-range-width: 440px;
|
||||
@sm-range-width: 360px;
|
||||
@xs-range-width: 280px;
|
||||
|
||||
.set-size(@size,@width) {
|
||||
& {
|
||||
width: @width;
|
||||
height: @size;
|
||||
.layui-input {
|
||||
height: @size;
|
||||
line-height: @size;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-date-picker {
|
||||
&[size="lg"] {
|
||||
.set-size(@lg,@lg-width);
|
||||
}
|
||||
&[size="md"] {
|
||||
.set-size(@md,@md-width);
|
||||
}
|
||||
&[size="sm"] {
|
||||
.set-size(@sm,@sm-width);
|
||||
}
|
||||
&[size="xs"] {
|
||||
.set-size(@xs,@xs-width);
|
||||
}
|
||||
}
|
||||
.layui-date-range-picker {
|
||||
&[size="lg"] {
|
||||
.set-size(@lg,@lg-range-width);
|
||||
}
|
||||
&[size="md"] {
|
||||
.set-size(@md,@md-range-width);
|
||||
}
|
||||
&[size="sm"] {
|
||||
.set-size(@sm,@sm-range-width);
|
||||
}
|
||||
&[size="xs"] {
|
||||
.set-size(@xs,@xs-range-width);
|
||||
}
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "laydate-icon";
|
||||
src: url("./font/iconfont.eot");
|
||||
src: url("./font/iconfont.eot#iefix") format("embedded-opentype"),
|
||||
url("./font/iconfont.svg#iconfont") format("svg"),
|
||||
url("./font/iconfont.woff") format("woff"),
|
||||
url("./font/iconfont.ttf") format("truetype");
|
||||
}
|
||||
|
||||
.laydate-icon {
|
||||
font-family: "laydate-icon" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
html #layuicss-laydate {
|
||||
display: none;
|
||||
position: absolute;
|
||||
width: 1989px;
|
||||
}
|
||||
|
||||
/* 初始化 */
|
||||
.layui-laydate * {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* 主体结构 */
|
||||
.layui-laydate,
|
||||
.layui-laydate * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.layui-laydate {
|
||||
z-index: 66666666;
|
||||
border-radius: 2px;
|
||||
font-size: 14px;
|
||||
-webkit-animation-duration: 0.2s;
|
||||
animation-duration: 0.2s;
|
||||
-webkit-animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
.layui-laydate-main {
|
||||
width: 272px;
|
||||
}
|
||||
.layui-laydate-header *,
|
||||
.layui-laydate-content td,
|
||||
.layui-laydate-list li {
|
||||
transition-duration: 0.3s;
|
||||
-webkit-transition-duration: 0.3s;
|
||||
}
|
||||
|
||||
/* 微微往下滑入 */
|
||||
@keyframes laydate-downbit {
|
||||
0% {
|
||||
opacity: 0.3;
|
||||
transform: translate3d(0, -5px, 0);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.layui-laydate {
|
||||
animation-name: laydate-downbit;
|
||||
}
|
||||
.layui-laydate-static {
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
-webkit-animation: none;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
/* 展开年月列表时 */
|
||||
.laydate-ym-show .laydate-prev-m,
|
||||
.laydate-ym-show .laydate-next-m {
|
||||
display: none !important;
|
||||
}
|
||||
.laydate-ym-show .laydate-prev-y,
|
||||
.laydate-ym-show .laydate-next-y {
|
||||
display: inline-block !important;
|
||||
}
|
||||
.laydate-ym-show .laydate-set-ym span[lay-type="month"] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* 展开时间列表时 */
|
||||
.laydate-time-show .layui-laydate-header .layui-icon,
|
||||
.laydate-time-show .laydate-set-ym span[lay-type="year"],
|
||||
.laydate-time-show .laydate-set-ym span[lay-type="month"] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* 头部结构 */
|
||||
.layui-laydate-header {
|
||||
position: relative;
|
||||
line-height: 30px;
|
||||
padding: 10px 70px 5px;
|
||||
}
|
||||
.layui-laydate-header * {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
.layui-laydate-header i {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
padding: 0 5px;
|
||||
color: #999;
|
||||
font-size: 18px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.layui-laydate-header i.laydate-prev-y {
|
||||
left: 15px;
|
||||
}
|
||||
.layui-laydate-header i.laydate-prev-m {
|
||||
left: 45px;
|
||||
}
|
||||
.layui-laydate-header i.laydate-next-y {
|
||||
right: 15px;
|
||||
}
|
||||
.layui-laydate-header i.laydate-next-m {
|
||||
right: 45px;
|
||||
}
|
||||
.laydate-set-ym {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.laydate-set-ym span {
|
||||
padding: 0 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.laydate-time-text {
|
||||
cursor: default !important;
|
||||
}
|
||||
|
||||
/* 主体结构 */
|
||||
.layui-laydate-content {
|
||||
position: relative;
|
||||
padding: 10px;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
.layui-laydate-content table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
.layui-laydate-content th,
|
||||
.layui-laydate-content td {
|
||||
width: 36px;
|
||||
height: 30px;
|
||||
padding: 5px;
|
||||
text-align: center !important;
|
||||
}
|
||||
.layui-laydate-content th {
|
||||
font-weight: 400;
|
||||
}
|
||||
.layui-laydate-content td {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
}
|
||||
.laydate-day-mark {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
line-height: 30px;
|
||||
font-size: 12px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.laydate-day-mark::after {
|
||||
position: absolute;
|
||||
content: "";
|
||||
right: 2px;
|
||||
top: 2px;
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
/* 底部结构 */
|
||||
.layui-laydate-footer {
|
||||
position: relative;
|
||||
height: 46px;
|
||||
line-height: 26px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.layui-laydate-footer .laydate-footer-btns span {
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.layui-laydate-footer .laydate-footer-btns span:first-child {
|
||||
border-top-left-radius: 2px;
|
||||
border-bottom-left-radius: 2px;
|
||||
}
|
||||
|
||||
.layui-laydate-footer .laydate-footer-btns span:last-child {
|
||||
border-top-right-radius: 2px;
|
||||
border-bottom-right-radius: 2px;
|
||||
}
|
||||
|
||||
.layui-laydate-footer span {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
height: 26px;
|
||||
line-height: 24px;
|
||||
padding: 0 10px;
|
||||
border: 1px solid #c9c9c9;
|
||||
border-radius: 2px;
|
||||
background-color: #fff;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.layui-laydate-footer span:hover {
|
||||
color: #5fb878;
|
||||
}
|
||||
.layui-laydate-footer span.layui-laydate-preview {
|
||||
cursor: default;
|
||||
border-color: transparent !important;
|
||||
}
|
||||
.layui-laydate-footer span.layui-laydate-preview:hover {
|
||||
color: #666;
|
||||
}
|
||||
.layui-laydate-footer span:first-child.layui-laydate-preview {
|
||||
padding-left: 0;
|
||||
}
|
||||
.laydate-footer-btns {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 10px;
|
||||
}
|
||||
.laydate-footer-btns span {
|
||||
margin: 0 0 0 -1px;
|
||||
}
|
||||
|
||||
/* 年月列表 */
|
||||
.layui-laydate-list {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
box-sizing: border-box;
|
||||
background-color: #fff;
|
||||
}
|
||||
.layui-laydate-list > li {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 33.3%;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
margin: 3px 0;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.laydate-month-list > li {
|
||||
width: 25%;
|
||||
margin: 17px 0;
|
||||
}
|
||||
.laydate-time-list > li {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
line-height: normal;
|
||||
cursor: default;
|
||||
}
|
||||
.laydate-time-list p {
|
||||
position: relative;
|
||||
top: -4px;
|
||||
line-height: 29px;
|
||||
}
|
||||
.laydate-time-list ol {
|
||||
height: 181px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.laydate-time-list > li:hover ol {
|
||||
overflow-y: auto;
|
||||
}
|
||||
.laydate-time-list ol li {
|
||||
width: 130%;
|
||||
padding-left: 4px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* 提示 */
|
||||
.layui-laydate-hint {
|
||||
top: 115px;
|
||||
left: 50%;
|
||||
width: 250px;
|
||||
margin-left: -125px;
|
||||
line-height: 20px;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
color: #ff5722;
|
||||
}
|
||||
|
||||
/* 双日历 */
|
||||
.layui-laydate-range {
|
||||
min-width: 546px;
|
||||
}
|
||||
.layui-laydate-range .layui-laydate-main {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.layui-laydate-range .laydate-main-list-1 .layui-laydate-header,
|
||||
.layui-laydate-range .laydate-main-list-1 .layui-laydate-content {
|
||||
border-left: 1px solid #e2e2e2;
|
||||
}
|
||||
|
||||
/* 默认简约主题 */
|
||||
.layui-laydate,
|
||||
.layui-laydate-hint {
|
||||
background-color: #fff;
|
||||
color: #666;
|
||||
}
|
||||
.layui-laydate-header {
|
||||
border-bottom: 1px solid #e2e2e2;
|
||||
}
|
||||
.layui-laydate-header i:hover,
|
||||
.layui-laydate-header span:hover {
|
||||
color: #5fb878;
|
||||
}
|
||||
.layui-laydate-content {
|
||||
border-top: none 0;
|
||||
border-bottom: none 0;
|
||||
}
|
||||
.layui-laydate-content th {
|
||||
color: #333;
|
||||
}
|
||||
.layui-laydate-content td {
|
||||
color: #666;
|
||||
}
|
||||
.layui-laydate-content td.laydate-selected {
|
||||
background-color: #b5fff8;
|
||||
}
|
||||
.laydate-selected:hover {
|
||||
background-color: #00f7de !important;
|
||||
}
|
||||
.layui-laydate-content td:hover,
|
||||
.layui-laydate-list li:hover {
|
||||
background-color: #eee;
|
||||
color: #333;
|
||||
}
|
||||
.laydate-time-list li ol {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 1px solid #e2e2e2;
|
||||
}
|
||||
.laydate-time-list li:first-child ol {
|
||||
border-left-width: 1px;
|
||||
}
|
||||
.laydate-time-list > li:hover {
|
||||
background: none;
|
||||
}
|
||||
.layui-laydate-content .laydate-day-prev,
|
||||
.layui-laydate-content .laydate-day-next {
|
||||
color: #d2d2d2;
|
||||
}
|
||||
.laydate-selected.laydate-day-prev,
|
||||
.laydate-selected.laydate-day-next {
|
||||
background-color: #f8f8f8 !important;
|
||||
}
|
||||
.layui-laydate-footer {
|
||||
border-top: 1px solid #e2e2e2;
|
||||
}
|
||||
.layui-laydate-hint {
|
||||
color: #ff5722;
|
||||
}
|
||||
.laydate-day-mark::after {
|
||||
background-color: #5fb878;
|
||||
}
|
||||
.layui-laydate-content td.layui-this .laydate-day-mark::after {
|
||||
display: none;
|
||||
}
|
||||
.layui-laydate-footer span[lay-type="date"] {
|
||||
color: #5fb878;
|
||||
}
|
||||
.layui-laydate .layui-this {
|
||||
background-color: #009688 !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
.layui-laydate .laydate-disabled,
|
||||
.layui-laydate .laydate-disabled:hover {
|
||||
background: none !important;
|
||||
color: #d2d2d2 !important;
|
||||
cursor: not-allowed !important;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
|
||||
/* 墨绿/自定义背景色主题 */
|
||||
.laydate-theme-molv {
|
||||
border: none;
|
||||
}
|
||||
.laydate-theme-molv.layui-laydate-range {
|
||||
width: 548px;
|
||||
}
|
||||
.laydate-theme-molv .layui-laydate-main {
|
||||
width: 274px;
|
||||
}
|
||||
.laydate-theme-molv .layui-laydate-header {
|
||||
border: none;
|
||||
background-color: #009688;
|
||||
}
|
||||
.laydate-theme-molv .layui-laydate-header i,
|
||||
.laydate-theme-molv .layui-laydate-header span {
|
||||
color: #f6f6f6;
|
||||
}
|
||||
.laydate-theme-molv .layui-laydate-header i:hover,
|
||||
.laydate-theme-molv .layui-laydate-header span:hover {
|
||||
color: #fff;
|
||||
}
|
||||
.laydate-theme-molv .layui-laydate-content {
|
||||
border: 1px solid #e2e2e2;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
.laydate-theme-molv .laydate-main-list-1 .layui-laydate-content {
|
||||
border-left: none;
|
||||
}
|
||||
.laydate-theme-molv .layui-laydate-footer {
|
||||
border: 1px solid #e2e2e2;
|
||||
}
|
||||
|
||||
/* 格子主题 */
|
||||
.laydate-theme-grid .layui-laydate-content td,
|
||||
.laydate-theme-grid .layui-laydate-content thead,
|
||||
.laydate-theme-grid .laydate-year-list > li,
|
||||
.laydate-theme-grid .laydate-month-list > li {
|
||||
border: 1px solid #e2e2e2;
|
||||
}
|
||||
.laydate-theme-grid .laydate-selected,
|
||||
.laydate-theme-grid .laydate-selected:hover {
|
||||
background-color: #f2f2f2 !important;
|
||||
color: #009688 !important;
|
||||
}
|
||||
.laydate-theme-grid .laydate-selected.laydate-day-prev,
|
||||
.laydate-theme-grid .laydate-selected.laydate-day-next {
|
||||
color: #d2d2d2 !important;
|
||||
}
|
||||
.laydate-theme-grid .laydate-year-list,
|
||||
.laydate-theme-grid .laydate-month-list {
|
||||
margin: 1px 0 0 1px;
|
||||
}
|
||||
.laydate-theme-grid .laydate-year-list > li,
|
||||
.laydate-theme-grid .laydate-month-list > li {
|
||||
margin: 0 -1px -1px 0;
|
||||
}
|
||||
.laydate-theme-grid .laydate-year-list > li {
|
||||
height: 43px;
|
||||
line-height: 43px;
|
||||
}
|
||||
.laydate-theme-grid .laydate-month-list > li {
|
||||
height: 71px;
|
||||
line-height: 71px;
|
||||
}
|
||||
.laydate-range-hover{
|
||||
background-color: var(--global-neutral-color-2) !important;
|
||||
}
|
||||
.layui-laydate-content .layui-disabled:hover{
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.laydate-range-inputs{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
display: inline-flex;
|
||||
border-color: var(--input-border-color);
|
||||
border-radius: var(--input-border-radius);
|
||||
.range-separator{
|
||||
margin: 0 5px;
|
||||
color: var(--global-neutral-color-8);
|
||||
background-color: transparent;
|
||||
}
|
||||
.layui-input-wrapper{
|
||||
border: none;
|
||||
box-sizing: border-box;
|
||||
input{
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
.layui-input {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
.layui-laydate-range{
|
||||
.laydate-set-ym{
|
||||
overflow: visible;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.laydate-set-ym .layui-dropdown{
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
.time-panel{
|
||||
.layui-laydate-main{
|
||||
width: 272px;
|
||||
display: unset !important;
|
||||
}
|
||||
.layui-laydate-preview{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.layui-laydate-content{
|
||||
.laydate-year-list{
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
}
|
||||
.layui-laydate-list{
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
}
|
||||
.layui-laydate-range-datetime{
|
||||
.layui-laydate-main{
|
||||
width: 340px;
|
||||
}
|
||||
}
|
||||
.layui-laydate-current{
|
||||
background-color: var(--global-neutral-color-3);
|
||||
}
|
||||
Reference in New Issue
Block a user