From 924e0bdee0e5ba55fab291b9fb98a3c50c7ede5e Mon Sep 17 00:00:00 2001 From: chensiAb <chenchenco03@163.com> Date: Thu, 28 Nov 2024 14:56:22 +0800 Subject: [PATCH] fix:tools千分位-小数位处理 --- forms/input/cInput.scss | 28 +++++++++++++++++++++++++++- 1 files changed, 27 insertions(+), 1 deletions(-) diff --git a/forms/input/cInput.scss b/forms/input/cInput.scss index d8d2d39..f779499 100644 --- a/forms/input/cInput.scss +++ b/forms/input/cInput.scss @@ -8,7 +8,33 @@ .c-input { &.read-only { pointer-events: none; - background-color: #fafafa; + background-color: #f6f6f6; + .at-input__title { + &::before { + display: block; + position: absolute; + top: 50%; + left: -23px; + width: 12px; + height: 12px; + content: " "; + border: #777 1PX solid; + border-radius: 50%; + transform: translateY(-50%); + } + &::after { + display: block; + position: absolute; + top: 50%; + left: -23px; + width: 14px; + height: 0px; + margin-top: 0px; + content: " "; + border-bottom: #777 1PX solid; + transform: rotate(-45deg); + } + } } .at-input__icon { display: none; -- Gitblit v1.9.1