2014-08-27 19:33:33 +04:00
|
|
|
.select2-container {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: middle; }
|
2015-01-07 01:50:44 +03:00
|
|
|
.select2-container .select2-selection--single {
|
|
|
|
box-sizing: border-box;
|
|
|
|
cursor: pointer;
|
2014-08-27 19:33:33 +04:00
|
|
|
display: block;
|
2015-01-07 01:50:44 +03:00
|
|
|
height: 28px;
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none; }
|
|
|
|
.select2-container .select2-selection--single .select2-selection__rendered {
|
|
|
|
display: block;
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 20px;
|
2015-02-09 23:58:16 +03:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap; }
|
2015-11-10 04:23:20 +03:00
|
|
|
.select2-container .select2-selection--single .select2-selection__clear {
|
|
|
|
position: relative; }
|
2015-01-07 01:50:44 +03:00
|
|
|
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
|
|
|
|
padding-right: 8px;
|
|
|
|
padding-left: 20px; }
|
|
|
|
.select2-container .select2-selection--multiple {
|
|
|
|
box-sizing: border-box;
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
min-height: 32px;
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none; }
|
|
|
|
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
|
|
|
display: inline-block;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-left: 8px;
|
2015-02-15 02:36:38 +03:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap; }
|
2015-01-07 01:50:44 +03:00
|
|
|
.select2-container .select2-search--inline {
|
|
|
|
float: left; }
|
|
|
|
.select2-container .select2-search--inline .select2-search__field {
|
2015-02-09 23:29:28 +03:00
|
|
|
box-sizing: border-box;
|
2015-01-07 01:50:44 +03:00
|
|
|
border: none;
|
|
|
|
font-size: 100%;
|
2015-08-20 04:39:21 +03:00
|
|
|
margin-top: 5px;
|
|
|
|
padding: 0; }
|
2015-02-09 23:29:28 +03:00
|
|
|
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
|
|
|
|
-webkit-appearance: none; }
|
2014-08-29 19:31:18 +04:00
|
|
|
|
2014-11-25 02:59:19 +03:00
|
|
|
.select2-dropdown {
|
2014-08-28 04:18:17 +04:00
|
|
|
background-color: white;
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: -100000px;
|
2014-08-29 19:31:18 +04:00
|
|
|
width: 100%;
|
2015-01-27 22:27:18 +03:00
|
|
|
z-index: 1051; }
|
2014-11-25 02:59:19 +03:00
|
|
|
|
|
|
|
.select2-results {
|
|
|
|
display: block; }
|
|
|
|
|
|
|
|
.select2-results__options {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0; }
|
|
|
|
|
|
|
|
.select2-results__option {
|
|
|
|
padding: 6px;
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none; }
|
|
|
|
.select2-results__option[aria-selected] {
|
|
|
|
cursor: pointer; }
|
|
|
|
|
|
|
|
.select2-container--open .select2-dropdown {
|
2014-12-06 04:06:20 +03:00
|
|
|
left: 0; }
|
|
|
|
|
|
|
|
.select2-container--open .select2-dropdown--above {
|
|
|
|
border-bottom: none;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-bottom-right-radius: 0; }
|
|
|
|
|
|
|
|
.select2-container--open .select2-dropdown--below {
|
2014-08-29 19:31:18 +04:00
|
|
|
border-top: none;
|
2014-08-28 04:18:17 +04:00
|
|
|
border-top-left-radius: 0;
|
2014-12-06 04:06:20 +03:00
|
|
|
border-top-right-radius: 0; }
|
2014-08-27 19:33:33 +04:00
|
|
|
|
2014-11-25 02:30:58 +03:00
|
|
|
.select2-search--dropdown {
|
|
|
|
display: block;
|
|
|
|
padding: 4px; }
|
|
|
|
.select2-search--dropdown .select2-search__field {
|
|
|
|
padding: 4px;
|
2015-01-27 22:09:52 +03:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box; }
|
2015-02-09 23:29:28 +03:00
|
|
|
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
|
|
|
|
-webkit-appearance: none; }
|
2014-12-11 02:46:05 +03:00
|
|
|
.select2-search--dropdown.select2-search--hide {
|
2014-11-27 04:39:52 +03:00
|
|
|
display: none; }
|
2014-11-25 02:30:58 +03:00
|
|
|
|
2014-12-06 06:44:41 +03:00
|
|
|
.select2-close-mask {
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
min-height: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
width: auto;
|
|
|
|
opacity: 0;
|
|
|
|
z-index: 99;
|
|
|
|
background-color: #fff;
|
|
|
|
filter: alpha(opacity=0); }
|
|
|
|
|
2015-04-01 03:01:29 +03:00
|
|
|
.select2-hidden-accessible {
|
2015-04-30 20:09:18 +03:00
|
|
|
border: 0 !important;
|
|
|
|
clip: rect(0 0 0 0) !important;
|
2017-10-26 21:19:09 +03:00
|
|
|
-webkit-clip-path: inset(50%) !important;
|
|
|
|
clip-path: inset(50%) !important;
|
2015-04-30 20:09:18 +03:00
|
|
|
height: 1px !important;
|
|
|
|
overflow: hidden !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
position: absolute !important;
|
2017-10-26 21:19:09 +03:00
|
|
|
width: 1px !important;
|
|
|
|
white-space: nowrap !important; }
|
2015-04-01 03:01:29 +03:00
|
|
|
|
2014-11-25 02:11:03 +03:00
|
|
|
.select2-container--default .select2-selection--single {
|
Added support for placeholders
Placeholder support has been implemented as a separate module, so
any selection container should be able to be decorated and get
instant placeholder support. It hooks into the updating method of
selections, and determines when to display the placeholder based
on the options that are being updated.
It works in the same way as the old placeholders. If no options
are selected and being displayed, like in the case of a multiple
select, then the placeholder will always be shown. If one option
is being displayed, and the id of the placeholder matches the id
of the selected element, then the placeholder will be shown. This
is similar to the functionality that was present in Select2 2.x,
where the placeholder could be passed in as an object that would
be compared to the selection.
This still requires that, for single selects, the first element
must match the placeholder id. Because the default placeholder id
is a blank string, this will maintain backwards compatibility with
past versions where the first option should be blank. This can
still be overridden to point at a different id, keeping support
for systems where the placeholder doesn't use a blank value.
**Note:** This does not hide the blank option for single selects,
but that will still be maintained for backwards compatibility
within the results module. It will not depend on a placeholder
being present, but instead will hide any options with blank text.
2014-10-17 03:59:38 +04:00
|
|
|
background-color: #fff;
|
2014-08-29 03:54:01 +04:00
|
|
|
border: 1px solid #aaa;
|
|
|
|
border-radius: 4px; }
|
2014-11-25 02:11:03 +03:00
|
|
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
2014-08-29 03:54:01 +04:00
|
|
|
color: #444;
|
|
|
|
line-height: 28px; }
|
2014-11-25 04:43:15 +03:00
|
|
|
.select2-container--default .select2-selection--single .select2-selection__clear {
|
|
|
|
cursor: pointer;
|
|
|
|
float: right;
|
2014-11-27 06:30:31 +03:00
|
|
|
font-weight: bold; }
|
2014-11-25 02:11:03 +03:00
|
|
|
.select2-container--default .select2-selection--single .select2-selection__placeholder {
|
|
|
|
color: #999; }
|
2014-11-25 05:33:22 +03:00
|
|
|
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
|
|
|
height: 26px;
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
|
|
|
right: 1px;
|
|
|
|
width: 20px; }
|
|
|
|
.select2-container--default .select2-selection--single .select2-selection__arrow b {
|
|
|
|
border-color: #888 transparent transparent transparent;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 5px 4px 0 4px;
|
|
|
|
height: 0;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -4px;
|
|
|
|
margin-top: -2px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
width: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-18 05:22:14 +03:00
|
|
|
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
|
|
|
float: left; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-18 05:22:14 +03:00
|
|
|
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
|
|
|
left: 1px;
|
|
|
|
right: auto; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-17 06:44:11 +03:00
|
|
|
.select2-container--default.select2-container--disabled .select2-selection--single {
|
|
|
|
background-color: #eee;
|
|
|
|
cursor: default; }
|
2015-01-09 18:45:35 +03:00
|
|
|
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
|
|
|
|
display: none; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 05:33:22 +03:00
|
|
|
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
|
|
|
border-color: transparent transparent #888 transparent;
|
|
|
|
border-width: 0 4px 5px 4px; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 02:30:58 +03:00
|
|
|
.select2-container--default .select2-selection--multiple {
|
2014-08-29 19:31:18 +04:00
|
|
|
background-color: white;
|
|
|
|
border: 1px solid #aaa;
|
2014-11-23 04:32:25 +03:00
|
|
|
border-radius: 4px;
|
|
|
|
cursor: text; }
|
2014-11-25 02:30:58 +03:00
|
|
|
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
2015-02-14 07:37:29 +03:00
|
|
|
box-sizing: border-box;
|
2014-08-29 19:31:18 +04:00
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
2015-01-09 19:01:34 +03:00
|
|
|
padding: 0 5px;
|
|
|
|
width: 100%; }
|
2016-04-24 19:21:53 +03:00
|
|
|
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
|
|
|
list-style: none; }
|
2014-11-25 02:30:58 +03:00
|
|
|
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
|
|
|
color: #999;
|
|
|
|
margin-top: 5px;
|
|
|
|
float: left; }
|
2015-01-09 19:01:34 +03:00
|
|
|
.select2-container--default .select2-selection--multiple .select2-selection__clear {
|
|
|
|
cursor: pointer;
|
|
|
|
float: right;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-right: 10px; }
|
2014-11-25 02:30:58 +03:00
|
|
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
|
|
|
background-color: #e4e4e4;
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: default;
|
|
|
|
float: left;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-top: 5px;
|
|
|
|
padding: 0 5px; }
|
2014-11-25 02:59:19 +03:00
|
|
|
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
|
|
|
color: #999;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: 2px; }
|
|
|
|
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
|
|
|
color: #333; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2015-06-22 03:31:09 +03:00
|
|
|
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
|
2014-12-18 05:22:14 +03:00
|
|
|
float: right; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-18 05:22:14 +03:00
|
|
|
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: auto; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-18 05:22:14 +03:00
|
|
|
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: auto; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2015-02-14 08:37:51 +03:00
|
|
|
.select2-container--default.select2-container--focus .select2-selection--multiple {
|
|
|
|
border: solid black 1px;
|
|
|
|
outline: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-17 06:44:11 +03:00
|
|
|
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
|
|
|
background-color: #eee;
|
|
|
|
cursor: default; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2015-01-09 18:45:35 +03:00
|
|
|
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
|
|
|
|
display: none; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-06 04:06:20 +03:00
|
|
|
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-06 04:06:20 +03:00
|
|
|
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
|
2014-08-29 03:54:01 +04:00
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-bottom-right-radius: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 02:30:58 +03:00
|
|
|
.select2-container--default .select2-search--dropdown .select2-search__field {
|
2014-10-16 04:51:29 +04:00
|
|
|
border: 1px solid #aaa; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 02:30:58 +03:00
|
|
|
.select2-container--default .select2-search--inline .select2-search__field {
|
2014-12-17 06:44:11 +03:00
|
|
|
background: transparent;
|
2014-11-23 04:32:25 +03:00
|
|
|
border: none;
|
2015-06-12 18:51:24 +03:00
|
|
|
outline: 0;
|
2015-11-10 04:23:20 +03:00
|
|
|
box-shadow: none;
|
|
|
|
-webkit-appearance: textfield; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 02:59:19 +03:00
|
|
|
.select2-container--default .select2-results > .select2-results__options {
|
2014-08-29 03:54:01 +04:00
|
|
|
max-height: 200px;
|
2014-10-20 01:04:57 +04:00
|
|
|
overflow-y: auto; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 02:59:19 +03:00
|
|
|
.select2-container--default .select2-results__option[role=group] {
|
2014-10-20 01:04:57 +04:00
|
|
|
padding: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 02:59:19 +03:00
|
|
|
.select2-container--default .select2-results__option[aria-disabled=true] {
|
2014-10-20 03:49:06 +04:00
|
|
|
color: #999; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 02:59:19 +03:00
|
|
|
.select2-container--default .select2-results__option[aria-selected=true] {
|
2014-10-20 01:04:57 +04:00
|
|
|
background-color: #ddd; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2015-01-10 04:34:49 +03:00
|
|
|
.select2-container--default .select2-results__option .select2-results__option {
|
|
|
|
padding-left: 1em; }
|
|
|
|
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
|
|
|
|
padding-left: 0; }
|
|
|
|
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
|
|
|
|
margin-left: -1em;
|
|
|
|
padding-left: 2em; }
|
|
|
|
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
|
|
|
margin-left: -2em;
|
|
|
|
padding-left: 3em; }
|
|
|
|
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
|
|
|
margin-left: -3em;
|
|
|
|
padding-left: 4em; }
|
|
|
|
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
|
|
|
margin-left: -4em;
|
|
|
|
padding-left: 5em; }
|
|
|
|
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
|
|
|
margin-left: -5em;
|
|
|
|
padding-left: 6em; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 02:59:19 +03:00
|
|
|
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
2014-10-20 01:04:57 +04:00
|
|
|
background-color: #5897fb;
|
|
|
|
color: white; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 02:59:19 +03:00
|
|
|
.select2-container--default .select2-results__group {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
padding: 6px; }
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-selection--single {
|
2015-06-12 18:51:24 +03:00
|
|
|
background-color: #f7f7f7;
|
2014-11-19 22:26:52 +03:00
|
|
|
border: 1px solid #aaa;
|
|
|
|
border-radius: 4px;
|
|
|
|
outline: 0;
|
2015-06-12 18:51:24 +03:00
|
|
|
background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
|
|
|
|
background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
|
|
|
|
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
|
2014-11-19 22:26:52 +03:00
|
|
|
background-repeat: repeat-x;
|
2015-05-02 23:38:18 +03:00
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-selection--single:focus {
|
2014-11-19 22:26:52 +03:00
|
|
|
border: 1px solid #5897fb; }
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-selection--single .select2-selection__rendered {
|
2014-08-27 02:01:42 +04:00
|
|
|
color: #444;
|
2014-11-19 22:26:52 +03:00
|
|
|
line-height: 28px; }
|
2014-11-25 04:43:15 +03:00
|
|
|
.select2-container--classic .select2-selection--single .select2-selection__clear {
|
|
|
|
cursor: pointer;
|
|
|
|
float: right;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: 10px; }
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
|
|
|
color: #999; }
|
2014-11-25 05:33:22 +03:00
|
|
|
.select2-container--classic .select2-selection--single .select2-selection__arrow {
|
|
|
|
background-color: #ddd;
|
|
|
|
border: none;
|
|
|
|
border-left: 1px solid #aaa;
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
height: 26px;
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
|
|
|
right: 1px;
|
|
|
|
width: 20px;
|
2014-12-18 03:06:13 +03:00
|
|
|
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
|
|
|
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
|
|
|
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
|
2014-11-25 05:33:22 +03:00
|
|
|
background-repeat: repeat-x;
|
2015-05-02 23:38:18 +03:00
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
|
2014-11-25 05:33:22 +03:00
|
|
|
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
|
|
|
|
border-color: #888 transparent transparent transparent;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 5px 4px 0 4px;
|
|
|
|
height: 0;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -4px;
|
|
|
|
margin-top: -2px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
width: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-18 05:22:14 +03:00
|
|
|
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
|
|
|
float: left; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-18 05:22:14 +03:00
|
|
|
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
|
|
|
border: none;
|
|
|
|
border-right: 1px solid #aaa;
|
|
|
|
border-radius: 0;
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
left: 1px;
|
|
|
|
right: auto; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic.select2-container--open .select2-selection--single {
|
2014-12-06 04:06:20 +03:00
|
|
|
border: 1px solid #5897fb; }
|
|
|
|
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
|
|
|
|
background: transparent;
|
|
|
|
border: none; }
|
|
|
|
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
|
|
|
border-color: transparent transparent #888 transparent;
|
|
|
|
border-width: 0 4px 5px 4px; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-06 04:06:20 +03:00
|
|
|
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
|
|
|
|
border-top: none;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
2015-06-12 18:51:24 +03:00
|
|
|
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
|
|
|
|
background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
|
|
|
|
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
|
2014-12-06 04:06:20 +03:00
|
|
|
background-repeat: repeat-x;
|
2015-05-02 23:38:18 +03:00
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-06 04:06:20 +03:00
|
|
|
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
|
2014-11-25 05:33:22 +03:00
|
|
|
border-bottom: none;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
2015-06-12 18:51:24 +03:00
|
|
|
background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
|
|
|
|
background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
|
|
|
|
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
|
2014-11-19 22:26:52 +03:00
|
|
|
background-repeat: repeat-x;
|
2015-05-02 23:38:18 +03:00
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 04:08:24 +03:00
|
|
|
.select2-container--classic .select2-selection--multiple {
|
|
|
|
background-color: white;
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: text;
|
|
|
|
outline: 0; }
|
|
|
|
.select2-container--classic .select2-selection--multiple:focus {
|
|
|
|
border: 1px solid #5897fb; }
|
|
|
|
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 5px; }
|
2015-01-09 19:01:34 +03:00
|
|
|
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
|
|
|
|
display: none; }
|
2014-11-25 04:08:24 +03:00
|
|
|
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
|
|
|
|
background-color: #e4e4e4;
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: default;
|
|
|
|
float: left;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-top: 5px;
|
|
|
|
padding: 0 5px; }
|
|
|
|
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
|
|
|
|
color: #888;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: 2px; }
|
|
|
|
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
|
|
|
|
color: #555; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-18 05:22:14 +03:00
|
|
|
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
2017-11-22 07:16:57 +03:00
|
|
|
float: right;
|
2014-12-18 05:22:14 +03:00
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: auto; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-18 05:22:14 +03:00
|
|
|
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: auto; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 04:08:24 +03:00
|
|
|
.select2-container--classic.select2-container--open .select2-selection--multiple {
|
2014-12-06 04:06:20 +03:00
|
|
|
border: 1px solid #5897fb; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-06 04:06:20 +03:00
|
|
|
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
|
|
|
|
border-top: none;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-06 04:06:20 +03:00
|
|
|
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
|
2014-11-19 22:26:52 +03:00
|
|
|
border-bottom: none;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-bottom-right-radius: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
outline: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 04:08:24 +03:00
|
|
|
.select2-container--classic .select2-search--inline .select2-search__field {
|
2015-06-12 18:51:24 +03:00
|
|
|
outline: 0;
|
|
|
|
box-shadow: none; }
|
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-dropdown {
|
2014-11-19 22:26:52 +03:00
|
|
|
background-color: white;
|
2014-12-06 04:06:20 +03:00
|
|
|
border: 1px solid transparent; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-06 04:06:20 +03:00
|
|
|
.select2-container--classic .select2-dropdown--above {
|
|
|
|
border-bottom: none; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-12-06 04:06:20 +03:00
|
|
|
.select2-container--classic .select2-dropdown--below {
|
2014-11-19 22:26:52 +03:00
|
|
|
border-top: none; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-results > .select2-results__options {
|
|
|
|
max-height: 200px;
|
|
|
|
overflow-y: auto; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-results__option[role=group] {
|
|
|
|
padding: 0; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-results__option[aria-disabled=true] {
|
|
|
|
color: grey; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
|
|
|
|
background-color: #3875d7;
|
|
|
|
color: white; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic .select2-results__group {
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
padding: 6px; }
|
2015-06-12 18:51:24 +03:00
|
|
|
|
2014-11-25 03:11:02 +03:00
|
|
|
.select2-container--classic.select2-container--open .select2-dropdown {
|
2014-12-06 04:06:20 +03:00
|
|
|
border-color: #5897fb; }
|