@import './mixins/mixins.scss'; @mixin base-selection-size-mixin ($size) { $base-selection-tag-margin: 3px; $base-selection-height: map-get($--n-height, $size); @include m($size + '-size') { font-size: map-get($--n-font-size, $size); @include e(placeholder) { height: $base-selection-height; line-height: $base-selection-height; } @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; } } } @include themes-mixin { @include b(base-selection) { @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; box-shadow: none; border-radius: $--n-base-selection-border-radius; width: 100%; max-width: 100%; display: inline-block; vertical-align: bottom; @include b(base-selection-border-mask) { border-radius: $--n-base-selection-border-radius; position: absolute; left: 0; right: 0; top: 0; bottom: 0; border: 1px solid transparent; pointer-events: none; transition: border-color .3s $--n-ease-in-out-cubic-bezier, box-shadow .3s $--n-ease-in-out-cubic-bezier; z-index: 1; } @include e(mark) { cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); right: 10px; } @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'); } @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) { @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: $--n-base-selection-border-radius; } box-shadow: map-get($--base-selection-box-shadow, 'default'); background-color: map-get($--base-selection-background-color, 'default'); } @include b(base-selection-label) { @include once { display: inline-block; width: 100%; vertical-align: bottom; cursor: pointer; outline: none; z-index: auto; 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: $--n-base-selection-border-radius; } box-shadow: map-get($--base-selection-box-shadow, 'default'); background-color: map-get($--base-selection-background-color, 'default'); @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; padding: 0 26px 0 14px; background-color: transparent; height: 100%; } color: map-get($--base-selection-text-color, 'default'); &::placeholder { transition: color .3s $--n-ease-in-out-cubic-bezier; color: map-get($--base-selection-placeholder-color, 'default'); } @include m(placeholder) { color: map-get($--base-selection-placeholder-color, 'default'); } } } @include b(base-selection-tags) { @include once { display: flex; padding: 3px 26px 0 14px; flex-wrap: wrap; align-items: center; width: 100%; vertical-align: bottom; } @include b(tag) { @include once { margin-right: 7px; margin-bottom: 3px; font-size: 14px; max-width: 100%; text-overflow: ellipsis; overflow: hidden; } } } @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'); } @include b(base-selection-tags) { background-color: map-get($--base-selection-background-color, 'active'); } @include once { @include b(base-selection-input-tag) { 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'); } } &: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'); } } } @include b(base-selection-tags) { &:hover ~ { @include b(base-selection-border-mask) { border-color: map-get($--base-selection-border-mask-border-color, 'hover'); } } &: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'); } } } @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'); } } } @include m(disabled) { cursor: not-allowed; @include b(base-selection-label) { cursor: not-allowed; background-color: map-get($--base-selection-background-color, 'disabled'); box-shadow: map-get($--base-selection-box-shadow, 'disabled'); @include e(input) { cursor: not-allowed; color: map-get($--base-selection-text-color, 'disabled'); @include m(placeholder) { color: map-get($--base-selection-placeholder-color, 'disabled'); } &::placeholder { color: map-get($--base-selection-placeholder-color, 'disabled'); } } } @include b(base-selection-tags) { cursor: not-allowed; box-shadow: map-get($--base-selection-box-shadow, 'disabled'); background-color: map-get($--base-selection-background-color, "disabled"); } @include e(placeholder) { cursor: not-allowed; color: map-get($--base-selection-placeholder-color, 'disabled'); } } @include b(base-selection-input-tag) { @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: map-get($--base-selection-text-color, 'default'); } @include once { @include e(mirror) { position: absolute; padding-right: 1em; left: 0; top: 0; white-space: pre; visibility: hidden; user-select: none; opacity: 0; } } } } @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'); } @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'); } @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'); } @include b(base-selection-tags) { background-color: map-get($--base-selection-background-color, 'error-active'); } } @include b(base-selection-label) { &:hover ~ { @include b(base-selection-border-mask) { border-color: map-get($--base-selection-border-mask-border-color, 'error-hover'); } } &: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'); } } } @include b(base-selection-tags) { &:hover ~ { @include b(base-selection-border-mask) { border-color: map-get($--base-selection-border-mask-border-color, 'error-hover'); } } &: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'); } } } @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'); } } } } } } }