naive-ui/styles/BaseSelection.scss

328 lines
11 KiB
SCSS
Raw Normal View History

@import './mixins/mixins.scss';
2020-02-11 14:44:29 +08:00
@mixin base-selection-size-mixin ($size) {
$base-selection-tag-margin: 3px;
$base-selection-height: map-get($--n-height, $size);
2019-09-27 16:02:20 +08:00
@include m($size + '-size') {
font-size: map-get($--n-font-size, $size);
2019-09-27 16:02:20 +08:00
@include e(placeholder) {
height: $base-selection-height;
line-height: $base-selection-height;
2019-09-27 16:02:20 +08:00
}
@include b(base-selection-tags) {
min-height: $base-selection-height;
@include b(base-selection-input-tag) {
height: $base-selection-height - 2 * $base-selection-tag-margin;
line-height: $base-selection-height - 2 * $base-selection-tag-margin;
}
}
@include b(base-selection-label) {
height: $base-selection-height;
line-height: $base-selection-height;
2019-09-27 16:02:20 +08:00
}
}
2019-09-27 16:02:20 +08:00
}
@include themes-mixin {
@include b(base-selection) {
2019-09-27 16:02:20 +08:00
@include once {
@include base-selection-size-mixin('small');
@include base-selection-size-mixin('medium');
@include base-selection-size-mixin('large');
position: relative;
z-index: auto;
2019-09-27 16:02:20 +08:00
box-shadow: none;
border-radius: $--base-selection-border-radius;
2019-09-27 16:02:20 +08:00
width: 100%;
max-width: 100%;
2019-09-27 16:02:20 +08:00
display: inline-block;
vertical-align: bottom;
@include b(base-selection-border-mask) {
border-radius: $--base-selection-border-radius;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
border: 1px solid transparent;
pointer-events: none;
transition: .3s border-color $--n-ease-in-out-cubic-bezier, .3s box-shadow $--n-ease-in-out-cubic-bezier;
z-index: 1;
}
2019-09-27 16:02:20 +08:00
@include e(mark) {
cursor: pointer;
position: absolute;
top: 50%;
transform: translateY(-50%);
2020-02-20 13:22:48 +08:00
right: 10px;
2019-09-27 16:02:20 +08:00
}
@include m(selected) {
@include e(placeholder) {
opacity: 0;
}
}
}
@include b(base-selection-border-mask) {
border: 1px solid map-get($--base-selection-border-mask-border-color, 'default');
}
2019-09-27 16:02:20 +08:00
@include e(placeholder) {
@include once {
pointer-events: none;
position: absolute;
left: 14px;
top: 0;
opacity: 1;
transition: color .3s $--n-ease-in-out-cubic-bezier;
}
color: map-get($--base-selection-placeholder-color, 'default');
}
@include b(base-selection-tags) {
2019-09-27 16:02:20 +08:00
@include once {
cursor: pointer;
outline: none;
box-sizing: border-box;
position: relative;
z-index: auto;
transition: color .3s $--n-ease-in-out-cubic-bezier, box-shadow .3s $--n-ease-in-out-cubic-bezier, background-color .3s $--n-ease-in-out-cubic-bezier;
border-radius: $--base-selection-border-radius;
2019-09-27 16:02:20 +08:00
}
box-shadow: map-get($--base-selection-box-shadow, 'default');
background-color: map-get($--base-selection-background-color, 'default');
}
@include b(base-selection-label) {
2019-09-27 16:02:20 +08:00
@include once {
display: inline-block;
width: 100%;
vertical-align: bottom;
cursor: pointer;
outline: none;
z-index: auto;
2019-09-27 16:02:20 +08:00
box-sizing: border-box;
position: relative;
transition: color .3s $--n-ease-in-out-cubic-bezier, box-shadow .3s $--n-ease-in-out-cubic-bezier, background-color .3s $--n-ease-in-out-cubic-bezier;
border-radius: $--base-selection-border-radius;
}
box-shadow: map-get($--base-selection-box-shadow, 'default');
background-color: map-get($--base-selection-background-color, 'default');
2019-09-27 16:02:20 +08:00
@include e(input) {
@include once {
outline: none;
cursor: pointer;
box-sizing: border-box;
text-overflow: ellipsis;
overflow: hidden;
border:none;
width: 100%;
white-space: nowrap;
transition: color .3s $--n-ease-in-out-cubic-bezier;
2020-02-20 13:22:48 +08:00
padding: 0 26px 0 14px;
2019-09-27 16:02:20 +08:00
background-color: transparent;
height: 100%;
}
color: $--base-selection-color;
2019-09-27 16:02:20 +08:00
&::placeholder {
transition: color .3s $--n-ease-in-out-cubic-bezier;
color: map-get($--base-selection-placeholder-color, 'default');
2019-09-27 16:02:20 +08:00
}
@include m(placeholder) {
color: map-get($--base-selection-placeholder-color, 'default');
2019-09-27 16:02:20 +08:00
}
}
}
@include b(base-selection-tags) {
2019-09-27 16:02:20 +08:00
@include once {
display: flex;
2020-02-20 13:22:48 +08:00
padding: 3px 26px 0 14px;
2019-09-27 16:02:20 +08:00
flex-wrap: wrap;
align-items: center;
width: 100%;
vertical-align: bottom;
}
2019-09-27 16:02:20 +08:00
@include b(tag) {
@include once {
margin-right: 7px;
margin-bottom: 3px;
font-size: 14px;
max-width: 100%;
text-overflow: ellipsis;
overflow: hidden;
}
}
}
2019-09-27 16:02:20 +08:00
@include not-m(disabled) {
@include m(active) {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'active');
}
@include b(base-selection-label) {
background-color: map-get($--base-selection-background-color, 'active');
2019-09-27 16:02:20 +08:00
}
@include b(base-selection-tags) {
background-color: map-get($--base-selection-background-color, 'active');
2019-09-27 16:02:20 +08:00
}
@include once {
@include b(base-selection-input-tag) {
2019-09-27 16:02:20 +08:00
display: inline-block;
}
}
}
@include b(base-selection-label) {
&:hover ~ {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'hover');
}
2019-09-27 16:02:20 +08:00
}
&:focus ~ {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'focus');
box-shadow: map-get($--base-selection-border-mask-box-shadow, 'focus');
}
2019-09-27 16:02:20 +08:00
}
}
@include b(base-selection-tags) {
&:hover ~ {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'hover');
}
2019-09-27 16:02:20 +08:00
}
&:focus ~ {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'focus');
box-shadow: map-get($--base-selection-border-mask-box-shadow, 'focus');
}
2019-09-27 16:02:20 +08:00
}
}
@include m(focus) {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'focus');
box-shadow: map-get($--base-selection-border-mask-box-shadow, 'focus');
2019-09-27 16:02:20 +08:00
}
}
}
2019-09-27 16:02:20 +08:00
@include m(disabled) {
cursor: not-allowed;
@include b(base-selection-label) {
2019-09-27 16:02:20 +08:00
cursor: not-allowed;
background-color: map-get($--base-selection-background-color, 'disabled');
box-shadow: map-get($--base-selection-box-shadow, 'disabled');
2019-09-27 16:02:20 +08:00
@include e(input) {
cursor: not-allowed;
color: map-get($--base-selection-placeholder-color, 'disabled');
2019-09-27 16:02:20 +08:00
@include m(placeholder) {
color: map-get($--base-selection-placeholder-color, 'disabled');
2019-09-27 16:02:20 +08:00
}
&::placeholder {
color: map-get($--base-selection-placeholder-color, 'disabled');
2019-09-27 16:02:20 +08:00
}
}
}
@include b(base-selection-tags) {
2019-09-27 16:02:20 +08:00
cursor: not-allowed;
box-shadow: map-get($--base-selection-box-shadow, 'disabled');
background-color: map-get($--base-selection-background-color, "disabled");
}
2019-09-27 16:02:20 +08:00
@include e(placeholder) {
cursor: not-allowed;
color: map-get($--base-selection-placeholder-color, 'disabled');
2019-09-27 16:02:20 +08:00
}
}
2019-09-27 16:02:20 +08:00
@include b(base-selection-input-tag) {
2019-09-27 16:02:20 +08:00
@include once {
outline: none;
display: none;
position: relative;
margin-bottom: 3px;
max-width: 100%;
vertical-align: bottom;
}
@include e(input) {
@include once {
padding: 0;
background-color: transparent;
outline: none;
border: none;
max-width: 100%;
height: 100%;
width: 1em;
line-height: inherit;
cursor: pointer;
}
caret-color: map-get($--base-selection-caret-color, 'default');
color: $--base-selection-color;
2019-09-27 16:02:20 +08:00
}
@include once {
@include e(mirror) {
position: absolute;
padding-right: 1em;
left: 0;
top: 0;
white-space: pre;
visibility: hidden;
user-select: none;
opacity: 0;
}
}
}
}
2019-11-06 15:57:03 +08:00
@include as-form-item {
@include with-status (error) {
@include b(base-selection) {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'error-default');
2019-11-06 15:57:03 +08:00
}
@include b(base-selection-label) {
box-shadow: map-get($--base-selection-box-shadow, 'error-default');
}
@include b(base-selection-tags) {
box-shadow: map-get($--base-selection-box-shadow, 'error-default');
2019-11-06 15:57:03 +08:00
}
@include not-m(disabled) {
@include m(active) {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'error-active');
}
@include b(base-selection-label) {
background-color: map-get($--base-selection-background-color, 'error-active');
2019-11-06 15:57:03 +08:00
}
@include b(base-selection-tags) {
background-color: map-get($--base-selection-background-color, 'error-active');
2019-11-06 15:57:03 +08:00
}
}
@include b(base-selection-label) {
&:hover ~ {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'error-hover');
}
2019-11-06 15:57:03 +08:00
}
&:focus ~ {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'error-focus');
box-shadow: map-get($--base-selection-border-mask-box-shadow, 'error-focus');
}
2019-11-06 15:57:03 +08:00
}
}
@include b(base-selection-tags) {
&:hover ~ {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'error-hover');
}
2019-11-06 15:57:03 +08:00
}
&:focus ~ {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'error-focus');
box-shadow: map-get($--base-selection-border-mask-box-shadow, 'error-focus');
}
2019-11-06 15:57:03 +08:00
}
}
@include m(focus) {
@include b(base-selection-border-mask) {
border-color: map-get($--base-selection-border-mask-border-color, 'error-focus');
box-shadow: map-get($--base-selection-border-mask-box-shadow, 'error-focus');
2019-11-06 15:57:03 +08:00
}
}
}
}
}
}
2019-12-17 18:09:46 +08:00
}