From 356ba741002e24fbac8e93916a8486e65957a949 Mon Sep 17 00:00:00 2001 From: "wu.jian2" Date: Thu, 28 Sep 2023 11:23:43 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E6=97=A5=E6=9C=9F=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E5=99=A8=E5=AF=B9=E4=B8=8A=E6=9C=88=E3=80=81?= =?UTF-8?q?=E4=B8=8B=E6=9C=88=E6=97=A5=E6=9C=9F=E5=AD=97=E4=BD=93=E9=A2=9C?= =?UTF-8?q?=E8=89=B2=E4=BC=98=E5=8C=96=EF=BC=8C=E6=94=B9=E4=B8=BA=E7=81=B0?= =?UTF-8?q?=E8=89=B2=EF=BC=8C=E4=B8=8E=E5=BD=93=E6=9C=88=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E5=AD=97=E4=BD=93=E9=A2=9C=E8=89=B2=E6=9C=89=E6=89=80=E5=8C=BA?= =?UTF-8?q?=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BasicComponents/DateTimePicker/index.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/data-room-ui/packages/BasicComponents/DateTimePicker/index.vue b/data-room-ui/packages/BasicComponents/DateTimePicker/index.vue index bbcfabea..2b024524 100644 --- a/data-room-ui/packages/BasicComponents/DateTimePicker/index.vue +++ b/data-room-ui/packages/BasicComponents/DateTimePicker/index.vue @@ -395,10 +395,12 @@ export default { .popper__arrow { bottom: -6px ; border-bottom-color: var(--bgColor) !important; + border-top-color: var(--bgColor) !important; &::after { bottom: 0px ; border-bottom-color: var(--bgColor) !important; + border-top-color: var(--bgColor) !important; } } @@ -443,6 +445,17 @@ export default { } } } + // 上月 下月 字体颜色置灰 + .prev-month{ + span{ + color: #999 !important; + } + } + .next-month{ + span{ + color: #999 !important; + } + } }