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