adminbar-style.css
10 years ago
chosen-sprite.png
11 years ago
chosen-sprite@2x.png
10 years ago
chosen.css
8 years ago
chosen.min.css
8 years ago
give-admin-rtl.css
8 years ago
give-admin-rtl.min.css
8 years ago
give-admin.css
8 years ago
give-admin.css.map
10 years ago
give-admin.min.css
8 years ago
give-dashicon.css
10 years ago
jquery-ui-fresh.css
8 years ago
jquery-ui-fresh.min.css
8 years ago
chosen.css
389 lines
| 1 | /* @group Base */ |
| 2 | .chosen-container { |
| 3 | position: relative; |
| 4 | display: inline-block; |
| 5 | vertical-align: middle; |
| 6 | font-size: 14px; |
| 7 | zoom: 1; |
| 8 | *display: inline; |
| 9 | -webkit-user-select: none; |
| 10 | -moz-user-select: none; |
| 11 | user-select: none; |
| 12 | } |
| 13 | .chosen-container .chosen-drop { |
| 14 | position: absolute; |
| 15 | top: 100%; |
| 16 | left: -9999px; |
| 17 | z-index: 1010; |
| 18 | -webkit-box-sizing: border-box; |
| 19 | -moz-box-sizing: border-box; |
| 20 | box-sizing: border-box; |
| 21 | width: 100%; |
| 22 | border: 1px solid #aaa; |
| 23 | border-top: 0; |
| 24 | background: #fff; |
| 25 | box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); |
| 26 | } |
| 27 | .chosen-container.chosen-with-drop .chosen-drop { |
| 28 | left: 0; |
| 29 | } |
| 30 | .chosen-container a { |
| 31 | cursor: pointer; |
| 32 | } |
| 33 | |
| 34 | /* @end */ |
| 35 | /* @group Single Chosen */ |
| 36 | .chosen-container-single .chosen-single { |
| 37 | position: relative; |
| 38 | display: block; |
| 39 | overflow: hidden; |
| 40 | padding: 0 0 0 8px; |
| 41 | height: 23px; |
| 42 | border: 1px solid #dedede; |
| 43 | border-radius: 5px; |
| 44 | background-color: #fff; |
| 45 | box-shadow: none; |
| 46 | color: #444; |
| 47 | text-decoration: none; |
| 48 | white-space: nowrap; |
| 49 | line-height: 24px; |
| 50 | } |
| 51 | .chosen-container-single .chosen-default { |
| 52 | color: #999; |
| 53 | } |
| 54 | .chosen-container-single .chosen-single span { |
| 55 | display: block; |
| 56 | overflow: hidden; |
| 57 | margin-right: 26px; |
| 58 | text-overflow: ellipsis; |
| 59 | white-space: nowrap; |
| 60 | } |
| 61 | .chosen-container-single .chosen-single-with-deselect span { |
| 62 | margin-right: 38px; |
| 63 | } |
| 64 | .chosen-container-single .chosen-single abbr { |
| 65 | position: absolute; |
| 66 | top: 6px; |
| 67 | right: 26px; |
| 68 | display: block; |
| 69 | width: 12px; |
| 70 | height: 12px; |
| 71 | background: url('chosen-sprite.png') -42px 1px no-repeat; |
| 72 | font-size: 1px; |
| 73 | } |
| 74 | .chosen-container-single .chosen-single abbr:hover { |
| 75 | background-position: -42px -10px; |
| 76 | } |
| 77 | .chosen-container-single.chosen-disabled .chosen-single abbr:hover { |
| 78 | background-position: -42px -10px; |
| 79 | } |
| 80 | .chosen-container-single .chosen-single div { |
| 81 | position: absolute; |
| 82 | top: 0; |
| 83 | right: 0; |
| 84 | display: block; |
| 85 | width: 18px; |
| 86 | height: 100%; |
| 87 | } |
| 88 | .chosen-container-single .chosen-single div b { |
| 89 | display: block; |
| 90 | width: 100%; |
| 91 | height: 100%; |
| 92 | background: url('chosen-sprite.png') no-repeat 0px 2px; |
| 93 | } |
| 94 | .chosen-container-single .chosen-search { |
| 95 | position: relative; |
| 96 | z-index: 1010; |
| 97 | margin: 0; |
| 98 | padding: 3px 4px; |
| 99 | white-space: nowrap; |
| 100 | } |
| 101 | .chosen-container-single .chosen-search input[type="text"] { |
| 102 | -webkit-box-sizing: border-box; |
| 103 | -moz-box-sizing: border-box; |
| 104 | box-sizing: border-box; |
| 105 | margin: 1px 0; |
| 106 | padding: 4px 20px 4px 5px; |
| 107 | width: 100%; |
| 108 | height: auto; |
| 109 | outline: 0; |
| 110 | border: 1px solid #aaa; |
| 111 | background: white url('chosen-sprite.png') no-repeat 100% -20px; |
| 112 | font-size: 1em; |
| 113 | font-family: sans-serif; |
| 114 | line-height: normal; |
| 115 | border-radius: 0; |
| 116 | } |
| 117 | .chosen-container-single .chosen-drop { |
| 118 | margin-top: -1px; |
| 119 | border-radius: 0 0 4px 4px; |
| 120 | background-clip: padding-box; |
| 121 | } |
| 122 | .chosen-container-single.chosen-container-single-nosearch .chosen-search { |
| 123 | position: absolute; |
| 124 | left: -9999px; |
| 125 | } |
| 126 | |
| 127 | /* @end */ |
| 128 | /* @group Results */ |
| 129 | .chosen-container .chosen-results { |
| 130 | position: relative; |
| 131 | overflow-x: hidden; |
| 132 | overflow-y: auto; |
| 133 | margin: 0 4px 4px 0; |
| 134 | padding: 0 0 0 4px; |
| 135 | max-height: 240px; |
| 136 | -webkit-overflow-scrolling: touch; |
| 137 | } |
| 138 | .chosen-container .chosen-results li { |
| 139 | display: none; |
| 140 | margin: 0; |
| 141 | padding: 5px 6px; |
| 142 | list-style: none; |
| 143 | line-height: 15px; |
| 144 | } |
| 145 | .chosen-container .chosen-results li.active-result { |
| 146 | display: list-item; |
| 147 | cursor: pointer; |
| 148 | } |
| 149 | .chosen-container .chosen-results li.disabled-result { |
| 150 | display: list-item; |
| 151 | color: #ccc; |
| 152 | cursor: default; |
| 153 | } |
| 154 | .chosen-container .chosen-results li.highlighted { |
| 155 | background-color: #3875d7; |
| 156 | color: #fff; |
| 157 | } |
| 158 | .chosen-container .chosen-results li.no-results { |
| 159 | display: list-item; |
| 160 | background: #f4f4f4; |
| 161 | } |
| 162 | .chosen-container .chosen-results li.group-result { |
| 163 | display: list-item; |
| 164 | font-weight: bold; |
| 165 | cursor: default; |
| 166 | } |
| 167 | .chosen-container .chosen-results li.group-option { |
| 168 | padding-left: 15px; |
| 169 | } |
| 170 | .chosen-container .chosen-results li em { |
| 171 | font-style: normal; |
| 172 | text-decoration: underline; |
| 173 | } |
| 174 | |
| 175 | /* @end */ |
| 176 | /* @group Multi Chosen */ |
| 177 | .chosen-container-multi .chosen-choices { |
| 178 | position: relative; |
| 179 | overflow: hidden; |
| 180 | -webkit-box-sizing: border-box; |
| 181 | -moz-box-sizing: border-box; |
| 182 | box-sizing: border-box; |
| 183 | margin: 0; |
| 184 | padding: 0; |
| 185 | width: 100%; |
| 186 | height: auto !important; |
| 187 | height: 1%; |
| 188 | border: 1px solid #aaa; |
| 189 | background-color: #fff; |
| 190 | cursor: text; |
| 191 | } |
| 192 | .chosen-container-multi .chosen-choices li { |
| 193 | float: left; |
| 194 | list-style: none; |
| 195 | } |
| 196 | .chosen-container-multi .chosen-choices li.search-field { |
| 197 | margin: 0; |
| 198 | padding: 0; |
| 199 | white-space: nowrap; |
| 200 | } |
| 201 | .chosen-container-multi .chosen-choices li.search-field input[type="text"] { |
| 202 | margin: 1px 0; |
| 203 | padding: 5px; |
| 204 | height: 15px; |
| 205 | outline: 0; |
| 206 | border: 0 !important; |
| 207 | background: transparent !important; |
| 208 | box-shadow: none; |
| 209 | color: #666; |
| 210 | font-size: 100%; |
| 211 | font-family: sans-serif; |
| 212 | line-height: normal; |
| 213 | border-radius: 0; |
| 214 | } |
| 215 | .chosen-container-multi .chosen-choices li.search-field .default { |
| 216 | color: #999; |
| 217 | } |
| 218 | .chosen-container-multi .chosen-choices li.search-choice { |
| 219 | position: relative; |
| 220 | margin: 3px 0 3px 5px; |
| 221 | padding: 3px 20px 3px 5px; |
| 222 | border: 1px solid #aaa; |
| 223 | border-radius: 3px; |
| 224 | background-color: #e4e4e4; |
| 225 | box-shadow: none; |
| 226 | color: #333; |
| 227 | line-height: 13px; |
| 228 | cursor: default; |
| 229 | } |
| 230 | .chosen-container-multi .chosen-choices li.search-choice .search-choice-close { |
| 231 | position: absolute; |
| 232 | top: 4px; |
| 233 | right: 3px; |
| 234 | display: block; |
| 235 | width: 12px; |
| 236 | height: 12px; |
| 237 | background: url('chosen-sprite.png') -42px 1px no-repeat; |
| 238 | font-size: 1px; |
| 239 | } |
| 240 | .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover { |
| 241 | background-position: -42px -10px; |
| 242 | } |
| 243 | .chosen-container-multi .chosen-choices li.search-choice-disabled { |
| 244 | padding-right: 5px; |
| 245 | border: 1px solid #ccc; |
| 246 | background-color: #e4e4e4; |
| 247 | color: #666; |
| 248 | } |
| 249 | .chosen-container-multi .chosen-choices li.search-choice-focus { |
| 250 | background: #d4d4d4; |
| 251 | } |
| 252 | .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close { |
| 253 | background-position: -42px -10px; |
| 254 | } |
| 255 | .chosen-container-multi .chosen-results { |
| 256 | margin: 0; |
| 257 | padding: 0; |
| 258 | } |
| 259 | .chosen-container-multi .chosen-drop .result-selected { |
| 260 | display: list-item; |
| 261 | color: #ccc; |
| 262 | cursor: default; |
| 263 | } |
| 264 | |
| 265 | /* @end */ |
| 266 | /* @group Active */ |
| 267 | .chosen-container-active .chosen-single { |
| 268 | border: 1px solid #5897fb; |
| 269 | box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); |
| 270 | } |
| 271 | .chosen-container-active.chosen-with-drop .chosen-single { |
| 272 | border: 1px solid #aaa; |
| 273 | -moz-border-radius-bottomright: 0; |
| 274 | border-bottom-right-radius: 0; |
| 275 | -moz-border-radius-bottomleft: 0; |
| 276 | border-bottom-left-radius: 0; |
| 277 | box-shadow: 0 1px 0 #fff inset; |
| 278 | } |
| 279 | .chosen-container-active.chosen-with-drop .chosen-single div { |
| 280 | border-left: none; |
| 281 | background: transparent; |
| 282 | } |
| 283 | .chosen-container-active.chosen-with-drop .chosen-single div b { |
| 284 | background-position: -18px 2px; |
| 285 | } |
| 286 | .chosen-container-active .chosen-choices { |
| 287 | border: 1px solid #5897fb; |
| 288 | box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); |
| 289 | } |
| 290 | .chosen-container-active .chosen-choices li.search-field input[type="text"] { |
| 291 | color: #111 !important; |
| 292 | } |
| 293 | |
| 294 | /* @end */ |
| 295 | /* @group Disabled Support */ |
| 296 | .chosen-disabled { |
| 297 | opacity: 0.5 !important; |
| 298 | cursor: default; |
| 299 | } |
| 300 | .chosen-disabled .chosen-single { |
| 301 | cursor: default; |
| 302 | } |
| 303 | .chosen-disabled .chosen-choices .search-choice .search-choice-close { |
| 304 | cursor: default; |
| 305 | } |
| 306 | |
| 307 | /* @end */ |
| 308 | /* @group Right to Left */ |
| 309 | .chosen-rtl { |
| 310 | text-align: right; |
| 311 | } |
| 312 | .chosen-rtl .chosen-single { |
| 313 | overflow: visible; |
| 314 | padding: 0 8px 0 0; |
| 315 | } |
| 316 | .chosen-rtl .chosen-single span { |
| 317 | margin-right: 0; |
| 318 | margin-left: 26px; |
| 319 | direction: rtl; |
| 320 | } |
| 321 | .chosen-rtl .chosen-single-with-deselect span { |
| 322 | margin-left: 38px; |
| 323 | } |
| 324 | .chosen-rtl .chosen-single div { |
| 325 | right: auto; |
| 326 | left: 3px; |
| 327 | } |
| 328 | .chosen-rtl .chosen-single abbr { |
| 329 | right: auto; |
| 330 | left: 26px; |
| 331 | } |
| 332 | .chosen-rtl .chosen-choices li { |
| 333 | float: right; |
| 334 | } |
| 335 | .chosen-rtl .chosen-choices li.search-field input[type="text"] { |
| 336 | direction: rtl; |
| 337 | } |
| 338 | .chosen-rtl .chosen-choices li.search-choice { |
| 339 | margin: 3px 5px 3px 0; |
| 340 | padding: 3px 5px 3px 19px; |
| 341 | } |
| 342 | .chosen-rtl .chosen-choices li.search-choice .search-choice-close { |
| 343 | right: auto; |
| 344 | left: 4px; |
| 345 | } |
| 346 | .chosen-rtl.chosen-container-single-nosearch .chosen-search, |
| 347 | .chosen-rtl .chosen-drop { |
| 348 | left: 9999px; |
| 349 | } |
| 350 | .chosen-rtl.chosen-container-single .chosen-results { |
| 351 | margin: 0 0 4px 4px; |
| 352 | padding: 0 4px 0 0; |
| 353 | } |
| 354 | .chosen-rtl .chosen-results li.group-option { |
| 355 | padding-right: 15px; |
| 356 | padding-left: 0; |
| 357 | } |
| 358 | .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div { |
| 359 | border-right: none; |
| 360 | } |
| 361 | .chosen-rtl .chosen-search input[type="text"] { |
| 362 | padding: 4px 5px 4px 20px; |
| 363 | background: white url('chosen-sprite.png') no-repeat -30px -20px; |
| 364 | direction: rtl; |
| 365 | } |
| 366 | .chosen-rtl.chosen-container-single .chosen-single div b { |
| 367 | background-position: 6px 2px; |
| 368 | } |
| 369 | .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b { |
| 370 | background-position: -12px 2px; |
| 371 | } |
| 372 | |
| 373 | /* @end */ |
| 374 | /* @group Retina compatibility */ |
| 375 | @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) { |
| 376 | .chosen-rtl .chosen-search input[type="text"], |
| 377 | .chosen-container-single .chosen-single abbr, |
| 378 | .chosen-container-single .chosen-single div b, |
| 379 | .chosen-container-single .chosen-search input[type="text"], |
| 380 | .chosen-container-multi .chosen-choices .search-choice .search-choice-close, |
| 381 | .chosen-container .chosen-results-scroll-down span, |
| 382 | .chosen-container .chosen-results-scroll-up span { |
| 383 | background-image: url('chosen-sprite@2x.png') !important; |
| 384 | background-size: 52px 37px !important; |
| 385 | background-repeat: no-repeat !important; |
| 386 | } |
| 387 | } |
| 388 | /* @end */ |
| 389 |