mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 20:34:01 +00:00
463 lines
8.4 KiB
SCSS
Vendored
463 lines
8.4 KiB
SCSS
Vendored
// Input Select
|
|
|
|
.v-select {
|
|
input {
|
|
height: 24px;
|
|
}
|
|
|
|
.dropdown-toggle {
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Multiselect
|
|
|
|
fieldset[disabled] .multiselect {
|
|
pointer-events: none
|
|
}
|
|
|
|
.multiselect__spinner {
|
|
position: absolute;
|
|
right: 1px;
|
|
top: 1px;
|
|
width: 48px;
|
|
height: 35px;
|
|
background: $white;
|
|
display: block;
|
|
|
|
&:after,
|
|
&:before {
|
|
position: absolute;
|
|
content: "";
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: -8px 0 0 -8px;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 100%;
|
|
border-color: $primary transparent transparent;
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
box-shadow: 0 0 0 1px transparent
|
|
}
|
|
|
|
&:before {
|
|
animation: a 2.4s cubic-bezier(.41, .26, .2, .62);
|
|
animation-iteration-count: infinite
|
|
}
|
|
|
|
&:after {
|
|
animation: a 2.4s cubic-bezier(.51, .09, .21, .8);
|
|
animation-iteration-count: infinite
|
|
}
|
|
}
|
|
|
|
.multiselect__loading-enter-active, .multiselect__loading-leave-active {
|
|
transition: opacity .4s ease-in-out;
|
|
opacity: 1
|
|
}
|
|
|
|
.multiselect__loading-enter, .multiselect__loading-leave-active {
|
|
opacity: 0
|
|
}
|
|
|
|
.multiselect, .multiselect__input, .multiselect__single {
|
|
font-family: inherit;
|
|
-ms-touch-action: manipulation;
|
|
touch-action: manipulation
|
|
}
|
|
|
|
.multiselect {
|
|
box-sizing: content-box;
|
|
display: block;
|
|
position: relative;
|
|
width: 100%;
|
|
min-height: 40px;
|
|
text-align: left;
|
|
color: $gray-600
|
|
}
|
|
|
|
.multiselect:focus {
|
|
outline: none
|
|
}
|
|
|
|
.multiselect--disabled {
|
|
opacity: .6
|
|
}
|
|
|
|
.multiselect--active {
|
|
z-index: 1
|
|
}
|
|
|
|
.multiselect--active:not(.multiselect--above) .multiselect__current,
|
|
.multiselect--active:not(.multiselect--above) .multiselect__input,
|
|
.multiselect--active:not(.multiselect--above) .multiselect__tags {
|
|
@include border-bottom-radius(0);
|
|
}
|
|
|
|
.multiselect--active .multiselect__select {
|
|
transform: rotate(180deg)
|
|
}
|
|
|
|
.multiselect--above.multiselect--active .multiselect__current,
|
|
.multiselect--above.multiselect--active .multiselect__input,
|
|
.multiselect--above.multiselect--active .multiselect__tags {
|
|
@include border-top-radius(0);
|
|
|
|
}
|
|
|
|
.multiselect__input,
|
|
.multiselect__single {
|
|
position: relative;
|
|
display: inline-block;
|
|
min-height: 24px;
|
|
line-height: 24px;
|
|
border: none;
|
|
@include border-radius($border-radius);
|
|
background: $white;
|
|
padding-left: 5px;
|
|
margin-bottom: 5px;
|
|
padding-top: 5px;
|
|
width: 100%;
|
|
transition: border .1s ease;
|
|
box-sizing: border-box;
|
|
vertical-align: top
|
|
}
|
|
|
|
.multiselect__input:-ms-input-placeholder {
|
|
color: $gray-600
|
|
}
|
|
|
|
.multiselect__input::placeholder {
|
|
color: $gray-600
|
|
}
|
|
|
|
.multiselect__tag ~ .multiselect__input, .multiselect__tag ~ .multiselect__single {
|
|
width: auto
|
|
}
|
|
|
|
.multiselect__input:hover, .multiselect__single:hover {
|
|
border-color: $gray-200
|
|
}
|
|
|
|
.multiselect__input:focus, .multiselect__single:focus {
|
|
border-color: $input-focus-border-color;
|
|
outline: none
|
|
}
|
|
|
|
.multiselect__single {
|
|
padding-left: 5px;
|
|
margin-bottom: 5px;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.multiselect__tags-wrap {
|
|
display: inline
|
|
}
|
|
|
|
.multiselect__tags {
|
|
min-height: 24px;
|
|
display: block;
|
|
padding: 0 40px 0 8px;
|
|
@include border-radius($border-radius);
|
|
border: 1px solid darken($input-border-color, 10%);
|
|
background: $input-bg;
|
|
}
|
|
|
|
.multiselect__tag {
|
|
position: relative;
|
|
display: inline-block;
|
|
padding: 4px 26px 4px 10px;
|
|
@include border-radius($border-radius);
|
|
color: $white;
|
|
line-height: 1;
|
|
background: $primary;
|
|
margin: 8px 8px 3px 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
max-width: 100%;
|
|
text-overflow: ellipsis
|
|
}
|
|
|
|
.multiselect__tag-icon {
|
|
cursor: pointer;
|
|
margin-left: 7px;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
font-weight: 700;
|
|
font-style: normal;
|
|
width: 22px;
|
|
text-align: center;
|
|
line-height: 22px;
|
|
transition: all .2s ease;
|
|
@include border-radius($border-radius);
|
|
}
|
|
|
|
.multiselect__tag-icon:after {
|
|
content: "\D7";
|
|
color: $primary;
|
|
}
|
|
|
|
.multiselect__tag-icon:focus, .multiselect__tag-icon:hover {
|
|
background: $primary
|
|
}
|
|
|
|
.multiselect__tag-icon:focus:after, .multiselect__tag-icon:hover:after {
|
|
color: $white
|
|
}
|
|
|
|
.multiselect__current {
|
|
min-height: 40px;
|
|
overflow: hidden;
|
|
padding: 8px 12px 0;
|
|
padding-right: 30px;
|
|
white-space: nowrap;
|
|
@include border-radius($border-radius);
|
|
border: 1px solid $gray-300
|
|
}
|
|
|
|
.multiselect__current, .multiselect__select {
|
|
line-height: 16px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
margin: 0;
|
|
text-decoration: none;
|
|
cursor: pointer
|
|
}
|
|
|
|
.multiselect__select {
|
|
position: absolute;
|
|
width: 40px;
|
|
height: 38px;
|
|
right: 1px;
|
|
top: 1px;
|
|
padding: 4px 8px;
|
|
text-align: center;
|
|
transition: transform .2s ease
|
|
}
|
|
|
|
.multiselect__select:before {
|
|
position: relative;
|
|
right: 0;
|
|
top: 55%;
|
|
color: #999;
|
|
margin-top: 4px;
|
|
border-style: solid;
|
|
border-width: 5px 5px 0;
|
|
border-color: #999 transparent transparent;
|
|
content: ""
|
|
}
|
|
|
|
.multiselect__placeholder {
|
|
color: #adadad;
|
|
display: inline-block;
|
|
margin-bottom: 5px;
|
|
padding-top: 5px
|
|
}
|
|
|
|
.multiselect--active .multiselect__placeholder {
|
|
display: none
|
|
}
|
|
|
|
.multiselect__content-wrapper {
|
|
position: absolute;
|
|
display: block;
|
|
background: $white;
|
|
width: 100%;
|
|
max-height: 240px;
|
|
overflow: auto;
|
|
border: 1px solid $dropdown-border-color;
|
|
border-top: none;
|
|
@include border-bottom-radius($dropdown-border-radius);
|
|
z-index: 1;
|
|
-webkit-overflow-scrolling: touch;
|
|
box-shadow: $box-shadow-default;
|
|
}
|
|
|
|
.multiselect__content {
|
|
list-style: none;
|
|
display: inline-block;
|
|
padding: 0;
|
|
margin: 0;
|
|
min-width: 100%;
|
|
vertical-align: top
|
|
}
|
|
|
|
.multiselect--above .multiselect__content-wrapper {
|
|
bottom: 100%;
|
|
@include border-bottom-radius(0);
|
|
@include border-top-radius($dropdown-border-radius);
|
|
border-bottom: none;
|
|
border-top: 1px solid $gray-300
|
|
}
|
|
|
|
.multiselect__content::webkit-scrollbar {
|
|
display: none
|
|
}
|
|
|
|
.multiselect__element {
|
|
display: block
|
|
}
|
|
|
|
.multiselect__option {
|
|
display: block;
|
|
padding: 12px;
|
|
min-height: 40px;
|
|
line-height: 16px;
|
|
text-decoration: none;
|
|
text-transform: none;
|
|
vertical-align: middle;
|
|
position: relative;
|
|
cursor: pointer;
|
|
white-space: nowrap
|
|
}
|
|
|
|
.multiselect__option:after {
|
|
top: 0;
|
|
right: 0;
|
|
position: absolute;
|
|
line-height: 40px;
|
|
padding-right: 12px;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.multiselect__option--highlight {
|
|
background: $primary;
|
|
outline: none;
|
|
color: $white
|
|
}
|
|
|
|
.multiselect__option--highlight:after {
|
|
content: attr(data-select);
|
|
background: $primary;
|
|
color: $white
|
|
}
|
|
|
|
.multiselect__option--selected {
|
|
background: #f3f3f3;
|
|
color: $gray-600;
|
|
font-weight: 700
|
|
}
|
|
|
|
.multiselect__option--selected:after {
|
|
content: attr(data-selected);
|
|
color: silver
|
|
}
|
|
|
|
.multiselect__option--selected.multiselect__option--highlight {
|
|
background: $danger;
|
|
color: $white
|
|
}
|
|
|
|
.multiselect__option--selected.multiselect__option--highlight:after {
|
|
background: $danger;
|
|
content: attr(data-deselect);
|
|
color: $white
|
|
}
|
|
|
|
.multiselect--disabled {
|
|
background: #ededed;
|
|
pointer-events: none
|
|
}
|
|
|
|
.multiselect--disabled .multiselect__current, .multiselect--disabled .multiselect__select {
|
|
background: #ededed;
|
|
color: #a6a6a6
|
|
}
|
|
|
|
.multiselect__option--disabled {
|
|
background: #ededed !important;
|
|
color: #a6a6a6 !important;
|
|
cursor: text;
|
|
pointer-events: none
|
|
}
|
|
|
|
.multiselect__option--group {
|
|
background: #ededed;
|
|
color: $gray-600
|
|
}
|
|
|
|
.multiselect__option--group.multiselect__option--highlight {
|
|
background: $gray-600;
|
|
color: $white
|
|
}
|
|
|
|
.multiselect__option--group.multiselect__option--highlight:after {
|
|
background: $gray-600
|
|
}
|
|
|
|
.multiselect__option--disabled.multiselect__option--highlight {
|
|
background: #dedede
|
|
}
|
|
|
|
.multiselect__option--group-selected.multiselect__option--highlight {
|
|
background: $danger;
|
|
color: $white
|
|
}
|
|
|
|
.multiselect__option--group-selected.multiselect__option--highlight:after {
|
|
background: $danger;
|
|
content: attr(data-deselect);
|
|
color: $white
|
|
}
|
|
|
|
.multiselect-enter-active, .multiselect-leave-active {
|
|
transition: all .15s ease
|
|
}
|
|
|
|
.multiselect-enter, .multiselect-leave-active {
|
|
opacity: 0
|
|
}
|
|
|
|
.multiselect__strong {
|
|
margin-bottom: 8px;
|
|
line-height: 20px;
|
|
display: inline-block;
|
|
vertical-align: top
|
|
}
|
|
|
|
[dir=rtl] .multiselect {
|
|
text-align: right
|
|
}
|
|
|
|
[dir=rtl] .multiselect__select {
|
|
right: auto;
|
|
left: 1px
|
|
}
|
|
|
|
[dir=rtl] .multiselect__tags {
|
|
padding: 8px 8px 0 40px
|
|
}
|
|
|
|
[dir=rtl] .multiselect__content {
|
|
text-align: right
|
|
}
|
|
|
|
[dir=rtl] .multiselect__option:after {
|
|
right: auto;
|
|
left: 0
|
|
}
|
|
|
|
[dir=rtl] .multiselect__clear {
|
|
right: auto;
|
|
left: 12px
|
|
}
|
|
|
|
[dir=rtl] .multiselect__spinner {
|
|
right: auto;
|
|
left: 1px
|
|
}
|
|
|
|
@keyframes a {
|
|
0% {
|
|
transform: rotate(0)
|
|
}
|
|
to {
|
|
transform: rotate(2turn)
|
|
}
|
|
}
|