mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
230 lines
5.5 KiB
SCSS
230 lines
5.5 KiB
SCSS
@import './mixins/mixins.scss';
|
|
@import './theme/default.scss';
|
|
|
|
@include b(base-picker) {
|
|
outline: none;
|
|
position: relative;
|
|
box-shadow: none;
|
|
cursor: pointer;
|
|
border-radius: $select-border-radius;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
.n-base-picker__mark {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
right: 14px;
|
|
}
|
|
.n-base-picker__placeholder {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
left: 14px;
|
|
top: 0;
|
|
color: $select-placeholder-color;
|
|
opacity: 1;
|
|
}
|
|
.n-base-picker-label, .n-base-picker-tags {
|
|
outline: none;
|
|
position: relative;
|
|
transition: box-shadow .3s $default-cubic-bezier, background-color .3s $default-cubic-bezier;
|
|
box-sizing: border-box;
|
|
border-radius: $select-border-radius;
|
|
background-color: $select-background-color;
|
|
}
|
|
.n-base-picker-label {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
vertical-align: baseline;
|
|
display: inline-block;
|
|
border:none;
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
cursor: inherit;
|
|
color: $select-text-color;
|
|
padding: 0 32px 0 14px;
|
|
&::placeholder {
|
|
color: $select-placeholder-color;
|
|
}
|
|
&.n-base-picker-label--placeholder {
|
|
color: $select-placeholder-color;
|
|
}
|
|
}
|
|
.n-base-picker-tags {
|
|
padding: 4px 32px 0 14px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
.n-base-picker-tag {
|
|
vertical-align: bottom;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: inline-block;
|
|
border: 1px solid #63E2B7FF;
|
|
color: #63E2B7FF;
|
|
border-radius: 4px;
|
|
margin-right: 7px;
|
|
margin-bottom: 4px;
|
|
font-size: 14px;
|
|
max-width: 100%;
|
|
.n-base-picker-tag__content {
|
|
transform: translateY(-1px);
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
.n-base-picker-tag__icon {
|
|
position: absolute;
|
|
right: 4px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
i::before {
|
|
color: #63E2B7FF;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&.n-base-picker--selected {
|
|
.n-base-picker__placeholder {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
&.n-base-picker--active {
|
|
.n-base-picker-label, .n-base-picker-tags {
|
|
box-shadow: inset 0 0 0 1px $select-border-color--active, 0px 0px 10px 1px #366555;
|
|
background-color: $select-background-color--active;
|
|
}
|
|
}
|
|
&.n-base-picker--small-size {
|
|
font-size: 14px;
|
|
.n-base-picker__placeholder {
|
|
height: $small-height;
|
|
line-height: $small-height;
|
|
}
|
|
.n-base-picker-tags {
|
|
min-height: $small-height;
|
|
.n-base-picker-tag {
|
|
font-size: 13px;
|
|
padding: 0px 20px 0 7px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
}
|
|
.n-base-picker-input-tag {
|
|
height: 20px;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
.n-base-picker-label {
|
|
height: $small-height;
|
|
line-height: $small-height;
|
|
}
|
|
}
|
|
&.n-base-picker--default-size, &.n-base-picker--medium-size {
|
|
font-size: 14px;
|
|
.n-base-picker__placeholder {
|
|
height: $medium-height;
|
|
line-height: $medium-height;
|
|
}
|
|
.n-base-picker-tags {
|
|
min-height: $medium-height;
|
|
.n-base-picker-tag {
|
|
padding: 0px 20px 0 7px;
|
|
height: 26px;
|
|
line-height: 26px;
|
|
}
|
|
.n-base-picker-input-tag {
|
|
height: 26px;
|
|
line-height: 26px;
|
|
}
|
|
}
|
|
.n-base-picker-label {
|
|
height: $medium-height;
|
|
line-height: $medium-height;
|
|
}
|
|
}
|
|
&.n-base-picker--large-size {
|
|
font-size: 14px;
|
|
.n-base-picker__placeholder {
|
|
height: $large-height;
|
|
line-height: $large-height;
|
|
}
|
|
.n-base-picker-tags {
|
|
min-height: $large-height;
|
|
.n-base-picker-tag {
|
|
padding: 0px 20px 0 7px;
|
|
height: 32px;
|
|
line-height: 32px;
|
|
}
|
|
.n-base-picker-input-tag {
|
|
height: 32px;
|
|
line-height: 32px;
|
|
}
|
|
}
|
|
.n-base-picker-label {
|
|
height: $large-height;
|
|
line-height: $large-height;
|
|
}
|
|
}
|
|
&.n-base-picker--disabled {
|
|
cursor: not-allowed;
|
|
.n-base-picker-label, .n-base-picker-tags {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
.n-base-picker-tag {
|
|
border-color: rgba(255, 255, 255, 0.20);
|
|
color: rgba(255, 255, 255, 0.20);
|
|
}
|
|
.n-base-picker__placeholder {
|
|
color: rgba(255, 255, 255, 0.20);
|
|
}
|
|
.n-base-picker-label {
|
|
color: rgba(255, 255, 255, 0.20);
|
|
&::placeholder {
|
|
color: rgba(255, 255, 255, 0.20);
|
|
}
|
|
}
|
|
}
|
|
&:not(.n-base-picker--disabled) {
|
|
.n-base-picker-label:hover, .n-base-picker-tags:hover {
|
|
box-shadow: inset 0 0 0 1px $select-border-color--active;
|
|
}
|
|
.n-base-picker-label[readonly="readonly"] {
|
|
user-select: none;
|
|
}
|
|
}
|
|
&:not(.n-base-picker--disabled) {
|
|
.n-base-picker-label:focus, .n-base-picker-tags:focus {
|
|
box-shadow: inset 0 0 0 1px $select-border-color--active;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include b(base-picker-input-tag) {
|
|
position: relative;
|
|
margin-bottom: 4px;
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
vertical-align: bottom;
|
|
.n-base-picker-input-tag__input {
|
|
padding: 0;
|
|
background-color: transparent;
|
|
outline: none;
|
|
border: none;
|
|
max-width: 100%;
|
|
caret-color: $input-caret-color;
|
|
color: $select-text-color;
|
|
height: 100%;
|
|
width: 1em;
|
|
line-height: inherit;
|
|
cursor: pointer;
|
|
}
|
|
.n-base-picker-input-tag__mirror {
|
|
position: absolute;
|
|
padding-right: .5em;
|
|
left: 0;
|
|
top: 0;
|
|
white-space: pre;
|
|
visibility: hidden;
|
|
user-select: none;
|
|
opacity: 0;
|
|
}
|
|
} |