From 780006d9c1a09a0b0a3854d93a6d5cb330a50f2a Mon Sep 17 00:00:00 2001 From: Tevin <tingquanren@163.com> Date: Mon, 15 Nov 2021 17:39:00 +0800 Subject: [PATCH] 混合App模式下,登陆异常跳转首页去取消登陆 --- forms/select/cSelect.scss | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/forms/select/cSelect.scss b/forms/select/cSelect.scss index 9385831..2bfd699 100644 --- a/forms/select/cSelect.scss +++ b/forms/select/cSelect.scss @@ -12,6 +12,7 @@ } } .at-input__children { + padding-right: 20px; &::after { display: none; } @@ -25,7 +26,33 @@ } .at-input__container { input { + text-overflow: ellipsis; pointer-events: none; } } + .c-select-slot-mode { + @include flexbox(flex, left center); + .c-select-input { + width: 100%; + } + .c-select-slot { + position: relative; + height: 90px; + @include flexbox(flex, center center); + &::after { + position: absolute; + top: -50%; + left: -50%; + right: -50%; + bottom: -50%; + border: 0 solid #d6e4ef; + border-bottom-width: 1PX; + box-sizing: border-box; + transform-origin: center; + transform: scale(0.5); + content: ""; + pointer-events: none; + } + } + } } \ No newline at end of file -- Gitblit v1.9.1