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