| 1 |
.select2-container { |
| 2 |
box-sizing: border-box; |
| 3 |
display: inline-block; |
| 4 |
margin: 0; |
| 5 |
position: relative; |
| 6 |
vertical-align: middle; |
| 7 |
} |
| 8 |
.select2-container .select2-selection--single { |
| 9 |
box-sizing: border-box; |
| 10 |
cursor: pointer; |
| 11 |
display: block; |
| 12 |
height: 28px; |
| 13 |
user-select: none; |
| 14 |
-webkit-user-select: none; |
| 15 |
} |
| 16 |
.select2-container .select2-selection--single .select2-selection__rendered { |
| 17 |
display: block; |
| 18 |
padding-left: 8px; |
| 19 |
padding-right: 20px; |
| 20 |
overflow: hidden; |
| 21 |
text-overflow: ellipsis; |
| 22 |
white-space: nowrap; |
| 23 |
} |
| 24 |
.select2-container .select2-selection--single .select2-selection__clear { |
| 25 |
background-color: transparent; |
| 26 |
border: none; |
| 27 |
font-size: 1em; |
| 28 |
} |
| 29 |
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered { |
| 30 |
padding-right: 8px; |
| 31 |
padding-left: 20px; |
| 32 |
} |
| 33 |
.select2-container .select2-selection--multiple { |
| 34 |
box-sizing: border-box; |
| 35 |
cursor: pointer; |
| 36 |
display: block; |
| 37 |
min-height: 32px; |
| 38 |
user-select: none; |
| 39 |
-webkit-user-select: none; |
| 40 |
} |
| 41 |
.select2-container .select2-selection--multiple .select2-selection__rendered { |
| 42 |
display: inline; |
| 43 |
list-style: none; |
| 44 |
padding: 0; |
| 45 |
} |
| 46 |
.select2-container .select2-selection--multiple .select2-selection__clear { |
| 47 |
background-color: transparent; |
| 48 |
border: none; |
| 49 |
font-size: 1em; |
| 50 |
} |
| 51 |
.select2-container .select2-search--inline .select2-search__field { |
| 52 |
box-sizing: border-box; |
| 53 |
border: none; |
| 54 |
font-size: 100%; |
| 55 |
margin-top: 5px; |
| 56 |
margin-left: 5px; |
| 57 |
padding: 0; |
| 58 |
max-width: 100%; |
| 59 |
resize: none; |
| 60 |
height: 20px; |
| 61 |
vertical-align: bottom; |
| 62 |
font-family: sans-serif; |
| 63 |
overflow: hidden; |
| 64 |
word-break: keep-all; |
| 65 |
} |
| 66 |
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { |
| 67 |
-webkit-appearance: none; |
| 68 |
} |
| 69 |
.select2-container .select2-search--inline .select2-search__field::placeholder { |
| 70 |
line-height: normal; |
| 71 |
} |
| 72 |
|
| 73 |
.select2-dropdown { |
| 74 |
background-color: white; |
| 75 |
border: 1px solid #aaa; |
| 76 |
border-radius: 4px; |
| 77 |
box-sizing: border-box; |
| 78 |
display: block; |
| 79 |
position: absolute; |
| 80 |
left: -100000px; |
| 81 |
width: 100%; |
| 82 |
z-index: 1051; |
| 83 |
} |
| 84 |
|
| 85 |
.select2-results { |
| 86 |
display: block; |
| 87 |
} |
| 88 |
|
| 89 |
.select2-results__options { |
| 90 |
list-style: none; |
| 91 |
margin: 0; |
| 92 |
padding: 0; |
| 93 |
} |
| 94 |
|
| 95 |
.select2-results__option { |
| 96 |
padding: 6px; |
| 97 |
user-select: none; |
| 98 |
-webkit-user-select: none; |
| 99 |
} |
| 100 |
|
| 101 |
.select2-results__option--selectable { |
| 102 |
cursor: pointer; |
| 103 |
} |
| 104 |
|
| 105 |
.select2-container--open .select2-dropdown { |
| 106 |
left: 0; |
| 107 |
} |
| 108 |
|
| 109 |
.select2-container--open .select2-dropdown--above { |
| 110 |
border-bottom: none; |
| 111 |
border-bottom-left-radius: 0; |
| 112 |
border-bottom-right-radius: 0; |
| 113 |
} |
| 114 |
|
| 115 |
.select2-container--open .select2-dropdown--below { |
| 116 |
border-top: none; |
| 117 |
border-top-left-radius: 0; |
| 118 |
border-top-right-radius: 0; |
| 119 |
} |
| 120 |
|
| 121 |
.select2-search--dropdown { |
| 122 |
display: block; |
| 123 |
padding: 4px; |
| 124 |
} |
| 125 |
|
| 126 |
.select2-search--dropdown .select2-search__field { |
| 127 |
padding: 4px; |
| 128 |
width: 100%; |
| 129 |
box-sizing: border-box; |
| 130 |
} |
| 131 |
|
| 132 |
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { |
| 133 |
-webkit-appearance: none; |
| 134 |
} |
| 135 |
|
| 136 |
.select2-search--dropdown.select2-search--hide { |
| 137 |
display: none; |
| 138 |
} |
| 139 |
|
| 140 |
.select2-close-mask { |
| 141 |
border: 0; |
| 142 |
margin: 0; |
| 143 |
padding: 0; |
| 144 |
display: block; |
| 145 |
position: fixed; |
| 146 |
left: 0; |
| 147 |
top: 0; |
| 148 |
min-height: 100%; |
| 149 |
min-width: 100%; |
| 150 |
height: auto; |
| 151 |
width: auto; |
| 152 |
opacity: 0; |
| 153 |
z-index: 99; |
| 154 |
background-color: #fff; |
| 155 |
filter: alpha(opacity=0); |
| 156 |
} |
| 157 |
|
| 158 |
.select2-hidden-accessible { |
| 159 |
border: 0 !important; |
| 160 |
clip: rect(0 0 0 0) !important; |
| 161 |
-webkit-clip-path: inset(50%) !important; |
| 162 |
clip-path: inset(50%) !important; |
| 163 |
height: 1px !important; |
| 164 |
overflow: hidden !important; |
| 165 |
padding: 0 !important; |
| 166 |
position: absolute !important; |
| 167 |
width: 1px !important; |
| 168 |
white-space: nowrap !important; |
| 169 |
} |
| 170 |
|
| 171 |
.select2-container--default .select2-selection--single { |
| 172 |
background-color: #fff; |
| 173 |
border: 1px solid #aaa; |
| 174 |
border-radius: 4px; |
| 175 |
} |
| 176 |
|
| 177 |
.select2-container--default .select2-selection--single .select2-selection__rendered { |
| 178 |
color: #444; |
| 179 |
line-height: 28px; |
| 180 |
} |
| 181 |
|
| 182 |
.select2-container--default .select2-selection--single .select2-selection__clear { |
| 183 |
cursor: pointer; |
| 184 |
float: right; |
| 185 |
font-weight: bold; |
| 186 |
height: 26px; |
| 187 |
margin-right: 20px; |
| 188 |
padding-right: 0px; |
| 189 |
} |
| 190 |
|
| 191 |
.select2-container--default .select2-selection--single .select2-selection__placeholder { |
| 192 |
color: #999; |
| 193 |
} |
| 194 |
|
| 195 |
.select2-container--default .select2-selection--single .select2-selection__arrow { |
| 196 |
height: 26px; |
| 197 |
position: absolute; |
| 198 |
top: 1px; |
| 199 |
right: 1px; |
| 200 |
width: 20px; |
| 201 |
} |
| 202 |
|
| 203 |
.select2-container--default .select2-selection--single .select2-selection__arrow b { |
| 204 |
border-color: #888 transparent transparent transparent; |
| 205 |
border-style: solid; |
| 206 |
border-width: 5px 4px 0 4px; |
| 207 |
height: 0; |
| 208 |
left: 50%; |
| 209 |
margin-left: -4px; |
| 210 |
margin-top: -2px; |
| 211 |
position: absolute; |
| 212 |
top: 50%; |
| 213 |
width: 0; |
| 214 |
} |
| 215 |
|
| 216 |
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear { |
| 217 |
float: left; |
| 218 |
} |
| 219 |
|
| 220 |
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow { |
| 221 |
left: 1px; |
| 222 |
right: auto; |
| 223 |
} |
| 224 |
|
| 225 |
.select2-container--default.select2-container--disabled .select2-selection--single { |
| 226 |
background-color: #eee; |
| 227 |
cursor: default; |
| 228 |
} |
| 229 |
|
| 230 |
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { |
| 231 |
display: none; |
| 232 |
} |
| 233 |
|
| 234 |
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { |
| 235 |
border-color: transparent transparent #888 transparent; |
| 236 |
border-width: 0 4px 5px 4px; |
| 237 |
} |
| 238 |
|
| 239 |
.select2-container--default .select2-selection--multiple { |
| 240 |
background-color: white; |
| 241 |
border: 1px solid #aaa; |
| 242 |
border-radius: 4px; |
| 243 |
cursor: text; |
| 244 |
padding-bottom: 5px; |
| 245 |
padding-right: 5px; |
| 246 |
position: relative; |
| 247 |
} |
| 248 |
|
| 249 |
.select2-container--default .select2-selection--multiple.select2-selection--clearable { |
| 250 |
padding-right: 25px; |
| 251 |
} |
| 252 |
|
| 253 |
.select2-container--default .select2-selection--multiple .select2-selection__clear { |
| 254 |
cursor: pointer; |
| 255 |
font-weight: bold; |
| 256 |
height: 20px; |
| 257 |
margin-right: 10px; |
| 258 |
margin-top: 5px; |
| 259 |
position: absolute; |
| 260 |
right: 0; |
| 261 |
padding: 1px; |
| 262 |
} |
| 263 |
|
| 264 |
.select2-container--default .select2-selection--multiple .select2-selection__choice { |
| 265 |
background-color: #e4e4e4; |
| 266 |
border: 1px solid #aaa; |
| 267 |
border-radius: 4px; |
| 268 |
box-sizing: border-box; |
| 269 |
display: inline-block; |
| 270 |
margin-left: 5px; |
| 271 |
margin-top: 5px; |
| 272 |
padding: 0; |
| 273 |
padding-left: 20px; |
| 274 |
position: relative; |
| 275 |
max-width: 100%; |
| 276 |
overflow: hidden; |
| 277 |
text-overflow: ellipsis; |
| 278 |
vertical-align: bottom; |
| 279 |
white-space: nowrap; |
| 280 |
} |
| 281 |
|
| 282 |
.select2-container--default .select2-selection--multiple .select2-selection__choice__display { |
| 283 |
cursor: default; |
| 284 |
padding-left: 2px; |
| 285 |
padding-right: 5px; |
| 286 |
} |
| 287 |
|
| 288 |
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove { |
| 289 |
background-color: transparent; |
| 290 |
border: none; |
| 291 |
border-right: 1px solid #aaa; |
| 292 |
border-top-left-radius: 4px; |
| 293 |
border-bottom-left-radius: 4px; |
| 294 |
color: #999; |
| 295 |
cursor: pointer; |
| 296 |
font-size: 1em; |
| 297 |
font-weight: bold; |
| 298 |
padding: 0 4px; |
| 299 |
position: absolute; |
| 300 |
left: 0; |
| 301 |
top: 0; |
| 302 |
} |
| 303 |
|
| 304 |
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus { |
| 305 |
background-color: #f1f1f1; |
| 306 |
color: #333; |
| 307 |
outline: none; |
| 308 |
} |
| 309 |
|
| 310 |
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice { |
| 311 |
padding: 0 20px 0 0; |
| 312 |
margin-left: 5px; |
| 313 |
margin-right: auto; |
| 314 |
} |
| 315 |
|
| 316 |
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display { |
| 317 |
padding-left: 5px; |
| 318 |
padding-right: 2px; |
| 319 |
} |
| 320 |
|
| 321 |
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove { |
| 322 |
left: auto; |
| 323 |
right: 0; |
| 324 |
border-left: 1px solid #aaa; |
| 325 |
border-right: none; |
| 326 |
border-top-left-radius: 0; |
| 327 |
border-bottom-left-radius: 0; |
| 328 |
border-top-right-radius: 4px; |
| 329 |
border-bottom-right-radius: 4px; |
| 330 |
} |
| 331 |
|
| 332 |
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear { |
| 333 |
float: left; |
| 334 |
margin-left: 10px; |
| 335 |
margin-right: auto; |
| 336 |
} |
| 337 |
|
| 338 |
.select2-container--default.select2-container--focus .select2-selection--multiple { |
| 339 |
border: solid black 1px; |
| 340 |
outline: 0; |
| 341 |
} |
| 342 |
|
| 343 |
.select2-container--default.select2-container--disabled .select2-selection--multiple { |
| 344 |
background-color: #eee; |
| 345 |
cursor: default; |
| 346 |
} |
| 347 |
|
| 348 |
.select2-container--default.select2-container--disabled .select2-selection__choice__remove { |
| 349 |
display: none; |
| 350 |
} |
| 351 |
|
| 352 |
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { |
| 353 |
border-top-left-radius: 0; |
| 354 |
border-top-right-radius: 0; |
| 355 |
} |
| 356 |
|
| 357 |
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { |
| 358 |
border-bottom-left-radius: 0; |
| 359 |
border-bottom-right-radius: 0; |
| 360 |
} |
| 361 |
|
| 362 |
.select2-container--default .select2-search--dropdown .select2-search__field { |
| 363 |
border: 1px solid #aaa; |
| 364 |
} |
| 365 |
|
| 366 |
.select2-container--default .select2-search--inline .select2-search__field { |
| 367 |
background: transparent; |
| 368 |
border: none; |
| 369 |
outline: 0; |
| 370 |
box-shadow: none; |
| 371 |
-webkit-appearance: textfield; |
| 372 |
} |
| 373 |
|
| 374 |
.select2-container--default .select2-results > .select2-results__options { |
| 375 |
max-height: 200px; |
| 376 |
overflow-y: auto; |
| 377 |
} |
| 378 |
|
| 379 |
.select2-container--default .select2-results__option .select2-results__option { |
| 380 |
padding-left: 1em; |
| 381 |
} |
| 382 |
|
| 383 |
.select2-container--default .select2-results__option .select2-results__option .select2-results__group { |
| 384 |
padding-left: 0; |
| 385 |
} |
| 386 |
|
| 387 |
.select2-container--default .select2-results__option .select2-results__option .select2-results__option { |
| 388 |
margin-left: -1em; |
| 389 |
padding-left: 2em; |
| 390 |
} |
| 391 |
|
| 392 |
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { |
| 393 |
margin-left: -2em; |
| 394 |
padding-left: 3em; |
| 395 |
} |
| 396 |
|
| 397 |
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { |
| 398 |
margin-left: -3em; |
| 399 |
padding-left: 4em; |
| 400 |
} |
| 401 |
|
| 402 |
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { |
| 403 |
margin-left: -4em; |
| 404 |
padding-left: 5em; |
| 405 |
} |
| 406 |
|
| 407 |
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { |
| 408 |
margin-left: -5em; |
| 409 |
padding-left: 6em; |
| 410 |
} |
| 411 |
|
| 412 |
.select2-container--default .select2-results__option--group { |
| 413 |
padding: 0; |
| 414 |
} |
| 415 |
|
| 416 |
.select2-container--default .select2-results__option--disabled { |
| 417 |
color: #999; |
| 418 |
} |
| 419 |
|
| 420 |
.select2-container--default .select2-results__option--selected { |
| 421 |
background-color: #ddd; |
| 422 |
} |
| 423 |
|
| 424 |
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable { |
| 425 |
background-color: #5897fb; |
| 426 |
color: white; |
| 427 |
} |
| 428 |
|
| 429 |
.select2-container--default .select2-results__group { |
| 430 |
cursor: default; |
| 431 |
display: block; |
| 432 |
padding: 6px; |
| 433 |
} |
| 434 |
|
| 435 |
.select2-container--classic .select2-selection--single { |
| 436 |
background-color: rgb(246.5, 246.5, 246.5); |
| 437 |
border: 1px solid #aaa; |
| 438 |
border-radius: 4px; |
| 439 |
outline: 0; |
| 440 |
background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%); |
| 441 |
background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%); |
| 442 |
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%); |
| 443 |
background-repeat: repeat-x; |
| 444 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); |
| 445 |
} |
| 446 |
|
| 447 |
.select2-container--classic .select2-selection--single:focus { |
| 448 |
border: 1px solid #5897fb; |
| 449 |
} |
| 450 |
|
| 451 |
.select2-container--classic .select2-selection--single .select2-selection__rendered { |
| 452 |
color: #444; |
| 453 |
line-height: 28px; |
| 454 |
} |
| 455 |
|
| 456 |
.select2-container--classic .select2-selection--single .select2-selection__clear { |
| 457 |
cursor: pointer; |
| 458 |
float: right; |
| 459 |
font-weight: bold; |
| 460 |
height: 26px; |
| 461 |
margin-right: 20px; |
| 462 |
} |
| 463 |
|
| 464 |
.select2-container--classic .select2-selection--single .select2-selection__placeholder { |
| 465 |
color: #999; |
| 466 |
} |
| 467 |
|
| 468 |
.select2-container--classic .select2-selection--single .select2-selection__arrow { |
| 469 |
background-color: #ddd; |
| 470 |
border: none; |
| 471 |
border-left: 1px solid #aaa; |
| 472 |
border-top-right-radius: 4px; |
| 473 |
border-bottom-right-radius: 4px; |
| 474 |
height: 26px; |
| 475 |
position: absolute; |
| 476 |
top: 1px; |
| 477 |
right: 1px; |
| 478 |
width: 20px; |
| 479 |
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%); |
| 480 |
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%); |
| 481 |
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%); |
| 482 |
background-repeat: repeat-x; |
| 483 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); |
| 484 |
} |
| 485 |
|
| 486 |
.select2-container--classic .select2-selection--single .select2-selection__arrow b { |
| 487 |
border-color: #888 transparent transparent transparent; |
| 488 |
border-style: solid; |
| 489 |
border-width: 5px 4px 0 4px; |
| 490 |
height: 0; |
| 491 |
left: 50%; |
| 492 |
margin-left: -4px; |
| 493 |
margin-top: -2px; |
| 494 |
position: absolute; |
| 495 |
top: 50%; |
| 496 |
width: 0; |
| 497 |
} |
| 498 |
|
| 499 |
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear { |
| 500 |
float: left; |
| 501 |
} |
| 502 |
|
| 503 |
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow { |
| 504 |
border: none; |
| 505 |
border-right: 1px solid #aaa; |
| 506 |
border-radius: 0; |
| 507 |
border-top-left-radius: 4px; |
| 508 |
border-bottom-left-radius: 4px; |
| 509 |
left: 1px; |
| 510 |
right: auto; |
| 511 |
} |
| 512 |
|
| 513 |
.select2-container--classic.select2-container--open .select2-selection--single { |
| 514 |
border: 1px solid #5897fb; |
| 515 |
} |
| 516 |
|
| 517 |
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow { |
| 518 |
background: transparent; |
| 519 |
border: none; |
| 520 |
} |
| 521 |
|
| 522 |
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b { |
| 523 |
border-color: transparent transparent #888 transparent; |
| 524 |
border-width: 0 4px 5px 4px; |
| 525 |
} |
| 526 |
|
| 527 |
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { |
| 528 |
border-top: none; |
| 529 |
border-top-left-radius: 0; |
| 530 |
border-top-right-radius: 0; |
| 531 |
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%); |
| 532 |
background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%); |
| 533 |
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%); |
| 534 |
background-repeat: repeat-x; |
| 535 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); |
| 536 |
} |
| 537 |
|
| 538 |
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { |
| 539 |
border-bottom: none; |
| 540 |
border-bottom-left-radius: 0; |
| 541 |
border-bottom-right-radius: 0; |
| 542 |
background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%); |
| 543 |
background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%); |
| 544 |
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%); |
| 545 |
background-repeat: repeat-x; |
| 546 |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); |
| 547 |
} |
| 548 |
|
| 549 |
.select2-container--classic .select2-selection--multiple { |
| 550 |
background-color: white; |
| 551 |
border: 1px solid #aaa; |
| 552 |
border-radius: 4px; |
| 553 |
cursor: text; |
| 554 |
outline: 0; |
| 555 |
padding-bottom: 5px; |
| 556 |
padding-right: 5px; |
| 557 |
} |
| 558 |
|
| 559 |
.select2-container--classic .select2-selection--multiple:focus { |
| 560 |
border: 1px solid #5897fb; |
| 561 |
} |
| 562 |
|
| 563 |
.select2-container--classic .select2-selection--multiple .select2-selection__clear { |
| 564 |
display: none; |
| 565 |
} |
| 566 |
|
| 567 |
.select2-container--classic .select2-selection--multiple .select2-selection__choice { |
| 568 |
background-color: #e4e4e4; |
| 569 |
border: 1px solid #aaa; |
| 570 |
border-radius: 4px; |
| 571 |
display: inline-block; |
| 572 |
margin-left: 5px; |
| 573 |
margin-top: 5px; |
| 574 |
padding: 0; |
| 575 |
} |
| 576 |
|
| 577 |
.select2-container--classic .select2-selection--multiple .select2-selection__choice__display { |
| 578 |
cursor: default; |
| 579 |
padding-left: 2px; |
| 580 |
padding-right: 5px; |
| 581 |
} |
| 582 |
|
| 583 |
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove { |
| 584 |
background-color: transparent; |
| 585 |
border: none; |
| 586 |
border-top-left-radius: 4px; |
| 587 |
border-bottom-left-radius: 4px; |
| 588 |
color: #888; |
| 589 |
cursor: pointer; |
| 590 |
font-size: 1em; |
| 591 |
font-weight: bold; |
| 592 |
padding: 0 4px; |
| 593 |
} |
| 594 |
|
| 595 |
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { |
| 596 |
color: #555; |
| 597 |
outline: none; |
| 598 |
} |
| 599 |
|
| 600 |
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice { |
| 601 |
margin-left: 5px; |
| 602 |
margin-right: auto; |
| 603 |
} |
| 604 |
|
| 605 |
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display { |
| 606 |
padding-left: 5px; |
| 607 |
padding-right: 2px; |
| 608 |
} |
| 609 |
|
| 610 |
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove { |
| 611 |
border-top-left-radius: 0; |
| 612 |
border-bottom-left-radius: 0; |
| 613 |
border-top-right-radius: 4px; |
| 614 |
border-bottom-right-radius: 4px; |
| 615 |
} |
| 616 |
|
| 617 |
.select2-container--classic.select2-container--open .select2-selection--multiple { |
| 618 |
border: 1px solid #5897fb; |
| 619 |
} |
| 620 |
|
| 621 |
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple { |
| 622 |
border-top: none; |
| 623 |
border-top-left-radius: 0; |
| 624 |
border-top-right-radius: 0; |
| 625 |
} |
| 626 |
|
| 627 |
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple { |
| 628 |
border-bottom: none; |
| 629 |
border-bottom-left-radius: 0; |
| 630 |
border-bottom-right-radius: 0; |
| 631 |
} |
| 632 |
|
| 633 |
.select2-container--classic .select2-search--dropdown .select2-search__field { |
| 634 |
border: 1px solid #aaa; |
| 635 |
outline: 0; |
| 636 |
} |
| 637 |
|
| 638 |
.select2-container--classic .select2-search--inline .select2-search__field { |
| 639 |
outline: 0; |
| 640 |
box-shadow: none; |
| 641 |
} |
| 642 |
|
| 643 |
.select2-container--classic .select2-dropdown { |
| 644 |
background-color: white; |
| 645 |
border: 1px solid transparent; |
| 646 |
} |
| 647 |
|
| 648 |
.select2-container--classic .select2-dropdown--above { |
| 649 |
border-bottom: none; |
| 650 |
} |
| 651 |
|
| 652 |
.select2-container--classic .select2-dropdown--below { |
| 653 |
border-top: none; |
| 654 |
} |
| 655 |
|
| 656 |
.select2-container--classic .select2-results > .select2-results__options { |
| 657 |
max-height: 200px; |
| 658 |
overflow-y: auto; |
| 659 |
} |
| 660 |
|
| 661 |
.select2-container--classic .select2-results__option--group { |
| 662 |
padding: 0; |
| 663 |
} |
| 664 |
|
| 665 |
.select2-container--classic .select2-results__option--disabled { |
| 666 |
color: grey; |
| 667 |
} |
| 668 |
|
| 669 |
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable { |
| 670 |
background-color: #3875d7; |
| 671 |
color: white; |
| 672 |
} |
| 673 |
|
| 674 |
.select2-container--classic .select2-results__group { |
| 675 |
cursor: default; |
| 676 |
display: block; |
| 677 |
padding: 6px; |
| 678 |
} |
| 679 |
|
| 680 |
.select2-container--classic.select2-container--open .select2-dropdown { |
| 681 |
border-color: #5897fb; |
| 682 |
} |