|
@@ -3,6 +3,9 @@ $color-select-bg-default: var(--semi-color-fill-0); // 选择器输入框背景
|
|
|
$color-select-bg-hover: var(--semi-color-fill-1); // 选择器输入框背景色 - 悬停态
|
|
|
$color-select-bg-active: var(--semi-color-fill-2); // 选择器输入框背景色 - 按下态
|
|
|
$color-select-border-default: transparent; // 选择器输入框描边颜色
|
|
|
+$color-select-border-hover: $color-select-border-default; // 选择器输入框描边颜色 - 悬浮
|
|
|
+$color-select-border-active: var(--semi-color-focus-border); // 选择器输入框描边颜色 - 按下态
|
|
|
+$color-select-border-focus: $color-select-border-active;// 选择器输入框描边颜色 - 悬停态
|
|
|
$color-select_warning-bg-default: var(--semi-color-warning-light-default); // 警示选择器输入框背景色 - 默认态
|
|
|
$color-select_warning-border-default: var(--semi-color-warning-light-default); // 警示选择器输入框描边颜色 - 默认态
|
|
|
$color-select_warning-bg-hover: var(--semi-color-warning-light-hover); // 警示选择器输入框背景色 - 悬停态
|
|
@@ -56,7 +59,9 @@ $width-select_arrow_empty: 12px; // 选择器输入框下拉箭头为空时(
|
|
|
$width-select_clear-icon: 32px; // 选择器输入框清空按钮宽度
|
|
|
$width-select_group_top-border: $border-thickness-control; // 选择器菜单分组标题描边宽度
|
|
|
$height-select_multiple_content_wrapper-minHeight: $height-select_default - 2; // 多项选择器标签组最小宽度
|
|
|
-
|
|
|
+$width-select-border-hover: $width-select-border; // 选择器输入框描边宽度 - 悬浮
|
|
|
+$width-select-border-focus: $width-select-border-hover; // 选择器输入框描边宽度 - 按下
|
|
|
+$width-select-border-active: $width-select-border-focus; // 选择器输入框描边宽度 - 选中
|
|
|
// Spacing
|
|
|
$spacing-select_option_tick-marginRight: $spacing-tight; // 选择器菜单选中对勾右侧外边距
|
|
|
$spacing-select_prefix_suffix_text-marginX: $spacing-base-tight; // 选择器输入框前后缀文本水平内边距
|
|
@@ -86,9 +91,14 @@ $spacing-select_tag-marginRight: $spacing-extra-tight; // 多项选择器标签
|
|
|
$spacing-select_tag-marginBottom: $spacing-super-tight - 1; // 多项选择器标签底部外边距
|
|
|
$spacing-select_selection-marginLeft: $spacing-base-tight; // 选择器内容区左侧外边距
|
|
|
$spacing-select_insetLabel-marginRight: $spacing-base-tight; // 选择器内嵌标签右侧外边距
|
|
|
+$spacing-select_option_list-paddingTop: 0; // 选择器内容区顶部内边距
|
|
|
+$spacing-select_option_list-paddingRight: 0; // 选择器内容区右侧内边距
|
|
|
+$spacing-select_option_list-paddingBottom: 0; // 选择器内容区底部内边距
|
|
|
+$spacing-select_option_list-paddingLeft: 0; // 选择器内容区左侧内边距
|
|
|
|
|
|
// Radius
|
|
|
$radius-select: var(--semi-border-radius-small); // 选择器输入框圆角
|
|
|
+$radius-select_option: 0; // 选择器待选项圆角
|
|
|
|
|
|
// Font
|
|
|
$font-select-fontWeight: $font-weight-regular; // 选择器文本字重
|