155 lines
3.8 KiB
CSS
155 lines
3.8 KiB
CSS
.select2-dropdown {
|
|
border: 1px solid #DADADA;
|
|
border-radius: 0 0 7px 7px !important;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.select2.select2-container {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.select2-container .select2-selection--single {
|
|
height: 32px;
|
|
}
|
|
.select2.select2-container .select2-selection {
|
|
border-radius: 7px;
|
|
border: 1px solid #DADADA;
|
|
background-color: #ffffff;
|
|
padding: 6px;
|
|
color: #393939;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
display: flex;
|
|
align-items: center;
|
|
transition: ease .4s;
|
|
}
|
|
|
|
.select2-results__option--selectable {
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.select2.select2-container .select2-selection .select2-selection__rendered {
|
|
color: #575a5d;
|
|
line-height: inherit;
|
|
}
|
|
|
|
.select2.select2-container .select2-selection .select2-selection__arrow {
|
|
background: transparent;
|
|
border-radius: 0 3px 3px 0;
|
|
height: inherit;
|
|
width: 33px;
|
|
}
|
|
|
|
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
|
|
background: #F6F6F6;
|
|
}
|
|
|
|
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
|
|
-webkit-border-radius: 0 3px 0 0;
|
|
-moz-border-radius: 0 3px 0 0;
|
|
border-radius: 0 3px 0 0;
|
|
}
|
|
|
|
.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
|
|
border: 1px solid #34495e;
|
|
}
|
|
|
|
.select2.select2-container .select2-selection--multiple {
|
|
height: auto;
|
|
min-height: 34px;
|
|
}
|
|
|
|
.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
|
|
margin-top: 0;
|
|
height: 32px;
|
|
}
|
|
|
|
.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
|
|
display: block;
|
|
padding: 0 4px;
|
|
line-height: 29px;
|
|
}
|
|
|
|
.select2.select2-container .select2-selection--multiple .select2-selection__choice {
|
|
background-color: #f8f8f8;
|
|
border: 1px solid #ccc;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
border-radius: 3px;
|
|
margin: 4px 4px 0 0;
|
|
padding: 0 6px 0 22px;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
font-size: 12px;
|
|
position: relative;
|
|
}
|
|
|
|
.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 22px;
|
|
width: 22px;
|
|
margin: 0;
|
|
text-align: center;
|
|
color: #e74c3c;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.select2-container .select2-dropdown {
|
|
background: #fff;
|
|
}
|
|
|
|
.select2-container .select2-dropdown .select2-search {
|
|
padding: 5px;
|
|
}
|
|
|
|
.select2-container .select2-dropdown .select2-search input {
|
|
outline: none !important;
|
|
background-color: #fdfdfd;
|
|
padding: 4px 6px !important;
|
|
border-radius: 7px;
|
|
border: 1px solid #DADADA;
|
|
font-size: 12px;
|
|
--bs-modal-zindex: 1050;
|
|
z-index: 1050;
|
|
}
|
|
|
|
.select2-container .select2-dropdown .select2-search input:focus {
|
|
outline: none;
|
|
border: 1px solid #8a8a8a;
|
|
color: rgb(65, 65, 65);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.select2-container .select2-dropdown .select2-results {
|
|
padding: 0;
|
|
}
|
|
|
|
.select2-container .select2-dropdown .select2-results ul {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #31d0d0 #fff;
|
|
padding: 5px;
|
|
}
|
|
|
|
.select2-container--default .select2-results__option--selected {
|
|
background-color: #31d0d0;
|
|
color: #fff;
|
|
}
|
|
|
|
.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
|
|
background-color: #31cdcd;
|
|
}
|
|
|
|
.select2-container .select2-dropdown .select2-results ul .select2-results__option {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
border-radius: 5px;
|
|
margin: 2px 0;
|
|
}
|
|
|
|
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
|
|
padding-right: 2px;
|
|
} |