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