| 1 |
.smartlogixControlsSectionWrapper { |
| 2 |
margin: 15px 0; |
| 3 |
padding: 5px; |
| 4 |
border: 1px solid #999999; |
| 5 |
border-radius: 5px; |
| 6 |
position: relative; |
| 7 |
} |
| 8 |
|
| 9 |
.smartlogixControlsSectionWrapper .smartlogixControlsSectionTitle { |
| 10 |
font-weight: bold; |
| 11 |
position: absolute; |
| 12 |
left: 15px; |
| 13 |
top: -10px; |
| 14 |
background: #FFFFFF; |
| 15 |
color: #111111; |
| 16 |
padding: 0px 10px; |
| 17 |
} |
| 18 |
|
| 19 |
.smartlogixControlsSectionWrapper .smartlogixControlsSectionInner { |
| 20 |
margin: 10px 0 10px; |
| 21 |
padding: 0 10px; |
| 22 |
position: relative; |
| 23 |
} |
| 24 |
|
| 25 |
@media screen and (min-width: 768px) and (max-width: 1200px) { |
| 26 |
.smartlogixControlsSectionWrapper .smartlogixControlsSectionInner { |
| 27 |
margin-top: 30px; |
| 28 |
} |
| 29 |
} |
| 30 |
|
| 31 |
.smartlogixControlsSectionWrapper .smartlogixControlsSectionInner p { |
| 32 |
margin: 0 0 10px; |
| 33 |
} |
| 34 |
|
| 35 |
|
| 36 |
.ipcheckbox{ |
| 37 |
background: #C8161B; |
| 38 |
border: none; |
| 39 |
height: 36px; |
| 40 |
-webkit-border-radius: 18px; |
| 41 |
border-radius: 18px; |
| 42 |
width: 120px; |
| 43 |
-webkit-transition: all 0.3s ease-in-out; |
| 44 |
-moz-transition: all 0.3s ease-in-out; |
| 45 |
-ms-transition: all 0.3s ease-in-out; |
| 46 |
-o-transition: all 0.3s ease-in-out; |
| 47 |
transition: all 0.3s ease-in-out; |
| 48 |
-webkit-box-shadow: none; |
| 49 |
box-shadow: none; |
| 50 |
cursor: pointer; |
| 51 |
position: relative; |
| 52 |
display: inline-block; |
| 53 |
} |
| 54 |
|
| 55 |
.ipcheckbox.checked{ |
| 56 |
-webkit-box-shadow: inset 0 0 0 36px #6ddc5f; |
| 57 |
box-shadow: inset 0 0 0 36px #6ddc5f; |
| 58 |
} |
| 59 |
|
| 60 |
.ipcheckbox.checked .handle{ |
| 61 |
left: 87px; |
| 62 |
} |
| 63 |
|
| 64 |
.ipcheckbox .handle{ |
| 65 |
width: 30px; |
| 66 |
height: 30px; |
| 67 |
position: absolute; |
| 68 |
top: 3px; |
| 69 |
left: 3px; |
| 70 |
-webkit-border-radius: 100%; |
| 71 |
border-radius: 100%; |
| 72 |
background: white; |
| 73 |
-webkit-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1); |
| 74 |
-moz-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1); |
| 75 |
-o-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1); |
| 76 |
transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1); |
| 77 |
-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2),0 3px 4px 0 rgba(0,0,0,0.1); |
| 78 |
box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2),0 3px 4px 0 rgba(0,0,0,0.1); |
| 79 |
} |
| 80 |
|
| 81 |
.chosen-container { |
| 82 |
position: relative; |
| 83 |
display: inline-block; |
| 84 |
vertical-align: middle; |
| 85 |
font-size: 13px; |
| 86 |
zoom: 1; |
| 87 |
*display: inline; |
| 88 |
-webkit-user-select: none; |
| 89 |
-moz-user-select: none; |
| 90 |
user-select: none; |
| 91 |
} |
| 92 |
|
| 93 |
.chosen-container * { |
| 94 |
-webkit-box-sizing: border-box; |
| 95 |
-moz-box-sizing: border-box; |
| 96 |
box-sizing: border-box; |
| 97 |
} |
| 98 |
|
| 99 |
.chosen-container .chosen-drop { |
| 100 |
display: block; |
| 101 |
height: 241px; |
| 102 |
width: 100%; |
| 103 |
border: 1px solid #aaa; |
| 104 |
border-top: 0; |
| 105 |
background: #fff; |
| 106 |
/*box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);*/ |
| 107 |
} |
| 108 |
|
| 109 |
.chosen-container.chosen-with-drop .chosen-drop { |
| 110 |
left: 0; |
| 111 |
} |
| 112 |
|
| 113 |
.chosen-container a { |
| 114 |
cursor: pointer; |
| 115 |
} |
| 116 |
|
| 117 |
.chosen-container .search-choice .group-name, |
| 118 |
.chosen-container .chosen-single .group-name { |
| 119 |
margin-right: 4px; |
| 120 |
overflow: hidden; |
| 121 |
white-space: nowrap; |
| 122 |
text-overflow: ellipsis; |
| 123 |
font-weight: normal; |
| 124 |
color: #999999; |
| 125 |
} |
| 126 |
|
| 127 |
.chosen-container .search-choice .group-name:after, |
| 128 |
.chosen-container .chosen-single .group-name:after { |
| 129 |
content: ":"; |
| 130 |
padding-left: 2px; |
| 131 |
vertical-align: top; |
| 132 |
} |
| 133 |
|
| 134 |
.chosen-container-single .chosen-single { |
| 135 |
position: relative; |
| 136 |
display: block; |
| 137 |
overflow: hidden; |
| 138 |
padding: 0 0 0 8px; |
| 139 |
height: 25px; |
| 140 |
border: 1px solid #aaa; |
| 141 |
border-radius: 5px; |
| 142 |
background-color: #fff; |
| 143 |
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4)); |
| 144 |
background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); |
| 145 |
background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); |
| 146 |
background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); |
| 147 |
background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%); |
| 148 |
background-clip: padding-box; |
| 149 |
box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1); |
| 150 |
color: #444; |
| 151 |
text-decoration: none; |
| 152 |
white-space: nowrap; |
| 153 |
line-height: 24px; |
| 154 |
} |
| 155 |
|
| 156 |
.chosen-container-single .chosen-default { |
| 157 |
color: #999; |
| 158 |
} |
| 159 |
|
| 160 |
.chosen-container-single .chosen-single span { |
| 161 |
display: block; |
| 162 |
overflow: hidden; |
| 163 |
margin-right: 26px; |
| 164 |
text-overflow: ellipsis; |
| 165 |
white-space: nowrap; |
| 166 |
} |
| 167 |
|
| 168 |
.chosen-container-single .chosen-single-with-deselect span { |
| 169 |
margin-right: 38px; |
| 170 |
} |
| 171 |
|
| 172 |
.chosen-container-single .chosen-single abbr { |
| 173 |
position: absolute; |
| 174 |
top: 6px; |
| 175 |
right: 26px; |
| 176 |
display: block; |
| 177 |
width: 12px; |
| 178 |
height: 12px; |
| 179 |
background: url('../images/chosen-sprite.png') -42px 1px no-repeat; |
| 180 |
font-size: 1px; |
| 181 |
} |
| 182 |
|
| 183 |
.chosen-container-single .chosen-single abbr:hover { |
| 184 |
background-position: -42px -10px; |
| 185 |
} |
| 186 |
|
| 187 |
.chosen-container-single.chosen-disabled .chosen-single abbr:hover { |
| 188 |
background-position: -42px -10px; |
| 189 |
} |
| 190 |
|
| 191 |
.chosen-container-single .chosen-single div { |
| 192 |
position: absolute; |
| 193 |
top: 0; |
| 194 |
right: 0; |
| 195 |
display: block; |
| 196 |
width: 18px; |
| 197 |
height: 100%; |
| 198 |
} |
| 199 |
|
| 200 |
.chosen-container-single .chosen-single div b { |
| 201 |
display: block; |
| 202 |
width: 100%; |
| 203 |
height: 100%; |
| 204 |
background: url('../images/chosen-sprite.png') no-repeat 0px 2px; |
| 205 |
} |
| 206 |
|
| 207 |
.chosen-container-single .chosen-search { |
| 208 |
position: relative; |
| 209 |
z-index: 1010; |
| 210 |
margin: 0; |
| 211 |
padding: 3px 4px; |
| 212 |
white-space: nowrap; |
| 213 |
} |
| 214 |
|
| 215 |
.chosen-container-single .chosen-search input[type="text"] { |
| 216 |
margin: 1px 0; |
| 217 |
padding: 4px 20px 4px 5px; |
| 218 |
width: 100%; |
| 219 |
height: auto; |
| 220 |
outline: 0; |
| 221 |
border: 1px solid #aaa; |
| 222 |
background: white url('../images/chosen-sprite.png') no-repeat 100% -20px; |
| 223 |
background: url('../images/chosen-sprite.png') no-repeat 100% -20px; |
| 224 |
font-size: 1em; |
| 225 |
font-family: sans-serif; |
| 226 |
line-height: normal; |
| 227 |
border-radius: 0; |
| 228 |
} |
| 229 |
|
| 230 |
.chosen-container-single .chosen-drop { |
| 231 |
margin-top: -1px; |
| 232 |
border-radius: 0 0 4px 4px; |
| 233 |
background-clip: padding-box; |
| 234 |
} |
| 235 |
|
| 236 |
.chosen-container-single.chosen-container-single-nosearch .chosen-search { |
| 237 |
position: absolute; |
| 238 |
left: -9999px; |
| 239 |
} |
| 240 |
|
| 241 |
.chosen-container .chosen-results { |
| 242 |
color: #444; |
| 243 |
position: relative; |
| 244 |
overflow-x: hidden; |
| 245 |
overflow-y: auto; |
| 246 |
margin: 0 4px 4px 0; |
| 247 |
padding: 0 0 0 4px; |
| 248 |
max-height: 240px; |
| 249 |
-webkit-overflow-scrolling: touch; |
| 250 |
} |
| 251 |
|
| 252 |
.chosen-container .chosen-results li { |
| 253 |
display: none; |
| 254 |
margin: 0; |
| 255 |
padding: 5px 6px; |
| 256 |
list-style: none; |
| 257 |
line-height: 15px; |
| 258 |
word-wrap: break-word; |
| 259 |
-webkit-touch-callout: none; |
| 260 |
} |
| 261 |
|
| 262 |
.chosen-container .chosen-results li.active-result { |
| 263 |
display: list-item; |
| 264 |
cursor: pointer; |
| 265 |
} |
| 266 |
|
| 267 |
.chosen-container .chosen-results li.disabled-result { |
| 268 |
display: list-item; |
| 269 |
color: #ccc; |
| 270 |
cursor: default; |
| 271 |
} |
| 272 |
|
| 273 |
.chosen-container .chosen-results li.highlighted { |
| 274 |
background-color: #3875d7; |
| 275 |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc)); |
| 276 |
background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%); |
| 277 |
background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%); |
| 278 |
background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%); |
| 279 |
background-image: linear-gradient(#3875d7 20%, #2a62bc 90%); |
| 280 |
color: #fff; |
| 281 |
} |
| 282 |
|
| 283 |
.chosen-container .chosen-results li.no-results { |
| 284 |
color: #777; |
| 285 |
display: list-item; |
| 286 |
background: #f4f4f4; |
| 287 |
} |
| 288 |
|
| 289 |
.chosen-container .chosen-results li.group-result { |
| 290 |
display: list-item; |
| 291 |
font-weight: bold; |
| 292 |
cursor: default; |
| 293 |
} |
| 294 |
|
| 295 |
.chosen-container .chosen-results li.group-option { |
| 296 |
padding-left: 15px; |
| 297 |
} |
| 298 |
|
| 299 |
.chosen-container .chosen-results li em { |
| 300 |
font-style: normal; |
| 301 |
text-decoration: underline; |
| 302 |
} |
| 303 |
|
| 304 |
.chosen-container-multi .chosen-choices { |
| 305 |
position: relative; |
| 306 |
overflow: hidden; |
| 307 |
margin: 0; |
| 308 |
padding: 0 5px; |
| 309 |
width: 100%; |
| 310 |
height: auto !important; |
| 311 |
height: 1%; |
| 312 |
border: 1px solid #aaa; |
| 313 |
background-color: #fff; |
| 314 |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff)); |
| 315 |
background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%); |
| 316 |
background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%); |
| 317 |
background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%); |
| 318 |
background-image: linear-gradient(#eeeeee 1%, #ffffff 15%); |
| 319 |
cursor: text; |
| 320 |
} |
| 321 |
|
| 322 |
.chosen-container-multi .chosen-choices li { |
| 323 |
float: left; |
| 324 |
list-style: none; |
| 325 |
} |
| 326 |
|
| 327 |
.chosen-container-multi .chosen-choices li.search-field { |
| 328 |
margin: 0; |
| 329 |
padding: 0; |
| 330 |
white-space: nowrap; |
| 331 |
} |
| 332 |
|
| 333 |
.chosen-container-multi .chosen-choices li.search-field input[type="text"] { |
| 334 |
margin: 1px 0; |
| 335 |
padding: 0; |
| 336 |
height: 25px; |
| 337 |
outline: 0; |
| 338 |
border: 0 !important; |
| 339 |
background: transparent !important; |
| 340 |
box-shadow: none; |
| 341 |
color: #999; |
| 342 |
font-size: 100%; |
| 343 |
font-family: sans-serif; |
| 344 |
line-height: normal; |
| 345 |
border-radius: 0; |
| 346 |
} |
| 347 |
|
| 348 |
.chosen-container-multi .chosen-choices li.search-choice { |
| 349 |
position: relative; |
| 350 |
margin: 3px 5px 3px 0; |
| 351 |
padding: 3px 20px 3px 5px; |
| 352 |
border: 1px solid #aaa; |
| 353 |
max-width: 100%; |
| 354 |
border-radius: 3px; |
| 355 |
background-color: #eeeeee; |
| 356 |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee)); |
| 357 |
background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); |
| 358 |
background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); |
| 359 |
background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); |
| 360 |
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); |
| 361 |
background-size: 100% 19px; |
| 362 |
background-repeat: repeat-x; |
| 363 |
background-clip: padding-box; |
| 364 |
box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05); |
| 365 |
color: #333; |
| 366 |
line-height: 13px; |
| 367 |
cursor: default; |
| 368 |
} |
| 369 |
|
| 370 |
.chosen-container-multi .chosen-choices li.search-choice span { |
| 371 |
word-wrap: break-word; |
| 372 |
} |
| 373 |
|
| 374 |
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close { |
| 375 |
position: absolute; |
| 376 |
top: 4px; |
| 377 |
right: 3px; |
| 378 |
display: block; |
| 379 |
width: 12px; |
| 380 |
height: 12px; |
| 381 |
background: url('../images/chosen-sprite.png') -42px 1px no-repeat; |
| 382 |
font-size: 1px; |
| 383 |
} |
| 384 |
|
| 385 |
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover { |
| 386 |
background-position: -42px -10px; |
| 387 |
} |
| 388 |
|
| 389 |
.chosen-container-multi .chosen-choices li.search-choice-disabled { |
| 390 |
padding-right: 5px; |
| 391 |
border: 1px solid #ccc; |
| 392 |
background-color: #e4e4e4; |
| 393 |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee)); |
| 394 |
background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); |
| 395 |
background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); |
| 396 |
background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); |
| 397 |
background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%); |
| 398 |
color: #666; |
| 399 |
} |
| 400 |
|
| 401 |
.chosen-container-multi .chosen-choices li.search-choice-focus { |
| 402 |
background: #d4d4d4; |
| 403 |
} |
| 404 |
|
| 405 |
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close { |
| 406 |
background-position: -42px -10px; |
| 407 |
} |
| 408 |
|
| 409 |
.chosen-container-multi .chosen-results { |
| 410 |
margin: 0; |
| 411 |
padding: 0; |
| 412 |
} |
| 413 |
|
| 414 |
.chosen-container-multi .chosen-drop .result-selected { |
| 415 |
display: list-item; |
| 416 |
color: #ccc; |
| 417 |
cursor: default; |
| 418 |
} |
| 419 |
|
| 420 |
.chosen-container-active .chosen-single { |
| 421 |
border: 1px solid #5897fb; |
| 422 |
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); |
| 423 |
} |
| 424 |
|
| 425 |
.chosen-container-active.chosen-with-drop .chosen-single { |
| 426 |
border: 1px solid #aaa; |
| 427 |
-moz-border-radius-bottomright: 0; |
| 428 |
border-bottom-right-radius: 0; |
| 429 |
-moz-border-radius-bottomleft: 0; |
| 430 |
border-bottom-left-radius: 0; |
| 431 |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff)); |
| 432 |
background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%); |
| 433 |
background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%); |
| 434 |
background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%); |
| 435 |
background-image: linear-gradient(#eeeeee 20%, #ffffff 80%); |
| 436 |
box-shadow: 0 1px 0 #fff inset; |
| 437 |
} |
| 438 |
|
| 439 |
.chosen-container-active.chosen-with-drop .chosen-single div { |
| 440 |
border-left: none; |
| 441 |
background: transparent; |
| 442 |
} |
| 443 |
|
| 444 |
.chosen-container-active.chosen-with-drop .chosen-single div b { |
| 445 |
background-position: -18px 2px; |
| 446 |
} |
| 447 |
|
| 448 |
.chosen-container-active .chosen-choices { |
| 449 |
border: 1px solid #5897fb; |
| 450 |
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); |
| 451 |
} |
| 452 |
|
| 453 |
.chosen-container-active .chosen-choices li.search-field input[type="text"] { |
| 454 |
color: #222 !important; |
| 455 |
} |
| 456 |
|
| 457 |
.chosen-disabled { |
| 458 |
opacity: 0.5 !important; |
| 459 |
cursor: default; |
| 460 |
} |
| 461 |
|
| 462 |
.chosen-disabled .chosen-single { |
| 463 |
cursor: default; |
| 464 |
} |
| 465 |
|
| 466 |
.chosen-disabled .chosen-choices .search-choice .search-choice-close { |
| 467 |
cursor: default; |
| 468 |
} |
| 469 |
|
| 470 |
.chosen-rtl { |
| 471 |
text-align: right; |
| 472 |
} |
| 473 |
|
| 474 |
.chosen-rtl .chosen-single { |
| 475 |
overflow: visible; |
| 476 |
padding: 0 8px 0 0; |
| 477 |
} |
| 478 |
|
| 479 |
.chosen-rtl .chosen-single span { |
| 480 |
margin-right: 0; |
| 481 |
margin-left: 26px; |
| 482 |
direction: rtl; |
| 483 |
} |
| 484 |
|
| 485 |
.chosen-rtl .chosen-single-with-deselect span { |
| 486 |
margin-left: 38px; |
| 487 |
} |
| 488 |
|
| 489 |
.chosen-rtl .chosen-single div { |
| 490 |
right: auto; |
| 491 |
left: 3px; |
| 492 |
} |
| 493 |
|
| 494 |
.chosen-rtl .chosen-single abbr { |
| 495 |
right: auto; |
| 496 |
left: 26px; |
| 497 |
} |
| 498 |
|
| 499 |
.chosen-rtl .chosen-choices li { |
| 500 |
float: right; |
| 501 |
} |
| 502 |
|
| 503 |
.chosen-rtl .chosen-choices li.search-field input[type="text"] { |
| 504 |
direction: rtl; |
| 505 |
} |
| 506 |
|
| 507 |
.chosen-rtl .chosen-choices li.search-choice { |
| 508 |
margin: 3px 5px 3px 0; |
| 509 |
padding: 3px 5px 3px 19px; |
| 510 |
} |
| 511 |
|
| 512 |
.chosen-rtl .chosen-choices li.search-choice .search-choice-close { |
| 513 |
right: auto; |
| 514 |
left: 4px; |
| 515 |
} |
| 516 |
|
| 517 |
.chosen-rtl.chosen-container-single-nosearch .chosen-search, |
| 518 |
.chosen-rtl .chosen-drop { |
| 519 |
left: 9999px; |
| 520 |
} |
| 521 |
|
| 522 |
.chosen-rtl.chosen-container-single .chosen-results { |
| 523 |
margin: 0 0 4px 4px; |
| 524 |
padding: 0 4px 0 0; |
| 525 |
} |
| 526 |
|
| 527 |
.chosen-rtl .chosen-results li.group-option { |
| 528 |
padding-right: 15px; |
| 529 |
padding-left: 0; |
| 530 |
} |
| 531 |
|
| 532 |
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div { |
| 533 |
border-right: none; |
| 534 |
} |
| 535 |
|
| 536 |
.chosen-rtl .chosen-search input[type="text"] { |
| 537 |
padding: 4px 5px 4px 20px; |
| 538 |
background: white url('../images/chosen-sprite.png') no-repeat -30px -20px; |
| 539 |
background: url('../images/chosen-sprite.png') no-repeat -30px -20px; |
| 540 |
direction: rtl; |
| 541 |
} |
| 542 |
|
| 543 |
.chosen-rtl.chosen-container-single .chosen-single div b { |
| 544 |
background-position: 6px 2px; |
| 545 |
} |
| 546 |
|
| 547 |
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b { |
| 548 |
background-position: -12px 2px; |
| 549 |
} |
| 550 |
|
| 551 |
.jqte { |
| 552 |
margin: 0; |
| 553 |
border:#bbb 1px solid; |
| 554 |
overflow:hidden; |
| 555 |
} |
| 556 |
|
| 557 |
.jqte * { |
| 558 |
color:#333; |
| 559 |
font-family:Arial, Helvetica, sans-serif; |
| 560 |
font-size:14px; |
| 561 |
} |
| 562 |
|
| 563 |
.jqte_focused { |
| 564 |
/*border-color:#00AAE7; |
| 565 |
box-shadow:0 0 10px #00BDFF; -webkit-box-shadow:0 0 10px #00BDFF; -moz-box-shadow:0 0 10px #00BDFF;*/ |
| 566 |
} |
| 567 |
|
| 568 |
.jqte_toolbar { |
| 569 |
overflow:auto; |
| 570 |
padding:3px 4px; |
| 571 |
background:#EEE; |
| 572 |
border-bottom:#BBB 1px solid; |
| 573 |
} |
| 574 |
|
| 575 |
.jqte_tool { |
| 576 |
float:left; |
| 577 |
margin:0; |
| 578 |
padding:0; |
| 579 |
cursor:pointer; |
| 580 |
} |
| 581 |
|
| 582 |
.jqte_tool, .jqte_tool_icon, .jqte_tool_label { |
| 583 |
border:#EEE 1px solid; |
| 584 |
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px |
| 585 |
} |
| 586 |
|
| 587 |
.jqte_hiddenField { |
| 588 |
display:none |
| 589 |
} |
| 590 |
|
| 591 |
.jqte_tool_icon { |
| 592 |
display:block; |
| 593 |
width:22px; |
| 594 |
height:22px; |
| 595 |
background:url('../images/jquery-te.png') no-repeat |
| 596 |
} |
| 597 |
|
| 598 |
.jqte_tool.jqte_tool_1 .jqte_tool_label { |
| 599 |
position:relative; |
| 600 |
display:block; |
| 601 |
padding:3px; |
| 602 |
width:70px; |
| 603 |
height:16px; |
| 604 |
overflow:hidden; |
| 605 |
} |
| 606 |
|
| 607 |
.jqte_tool.jqte_tool_1 .jqte_tool_text { |
| 608 |
font:bold 13px Arial,sans-serif; |
| 609 |
color:#222; |
| 610 |
} |
| 611 |
|
| 612 |
.jqte_tool.jqte_tool_1 .jqte_tool_icon { |
| 613 |
position:absolute; |
| 614 |
top:10px; |
| 615 |
right:2px; |
| 616 |
width:6px; |
| 617 |
height:4px; |
| 618 |
background-position:-19px -23px; |
| 619 |
border:none; |
| 620 |
border-radius:none; -webkit-border-radius:none; -moz-border-radius:none |
| 621 |
} |
| 622 |
|
| 623 |
.jqte_tool.jqte_tool_2 .jqte_tool_icon { |
| 624 |
background-position:0 0 |
| 625 |
} |
| 626 |
|
| 627 |
.jqte_tool.jqte_tool_3 .jqte_tool_icon { |
| 628 |
background-position:-22px 0 |
| 629 |
} |
| 630 |
|
| 631 |
.jqte_tool.jqte_tool_4 .jqte_tool_icon { |
| 632 |
background-position:-44px 0 |
| 633 |
} |
| 634 |
|
| 635 |
.jqte_tool.jqte_tool_5 .jqte_tool_icon { |
| 636 |
background-position:-66px 0 |
| 637 |
} |
| 638 |
|
| 639 |
.jqte_tool.jqte_tool_6 .jqte_tool_icon { |
| 640 |
background-position:-88px 0 |
| 641 |
} |
| 642 |
|
| 643 |
.jqte_tool.jqte_tool_7 .jqte_tool_icon { |
| 644 |
background-position:-110px 0 |
| 645 |
} |
| 646 |
|
| 647 |
.jqte_tool.jqte_tool_8 .jqte_tool_icon { |
| 648 |
background-position:-132px 0 |
| 649 |
} |
| 650 |
|
| 651 |
.jqte_tool.jqte_tool_9 .jqte_tool_icon { |
| 652 |
background-position:-154px 0 |
| 653 |
} |
| 654 |
|
| 655 |
.jqte_tool.jqte_tool_10 .jqte_tool_icon { |
| 656 |
background-position:-176px 0 |
| 657 |
} |
| 658 |
|
| 659 |
.jqte_tool.jqte_tool_11 .jqte_tool_icon { |
| 660 |
background-position:-198px 0 |
| 661 |
} |
| 662 |
|
| 663 |
.jqte_tool.jqte_tool_12 .jqte_tool_icon { |
| 664 |
background-position:-220px 0 |
| 665 |
} |
| 666 |
|
| 667 |
.jqte_tool.jqte_tool_13 .jqte_tool_icon { |
| 668 |
background-position:-242px 0 |
| 669 |
} |
| 670 |
|
| 671 |
.jqte_tool.jqte_tool_14 .jqte_tool_icon { |
| 672 |
background-position:-264px 0 |
| 673 |
} |
| 674 |
|
| 675 |
.jqte_tool.jqte_tool_15 .jqte_tool_icon { |
| 676 |
background-position:-286px 0 |
| 677 |
} |
| 678 |
|
| 679 |
.jqte_tool.jqte_tool_16 .jqte_tool_icon { |
| 680 |
background-position:-308px 0 |
| 681 |
} |
| 682 |
|
| 683 |
.jqte_tool.jqte_tool_17 .jqte_tool_icon { |
| 684 |
background-position:-330px 0 |
| 685 |
} |
| 686 |
|
| 687 |
.jqte_tool.jqte_tool_18 .jqte_tool_icon { |
| 688 |
background-position:-352px 0 |
| 689 |
} |
| 690 |
|
| 691 |
.jqte_tool.jqte_tool_19 .jqte_tool_icon { |
| 692 |
background-position:-374px 0 |
| 693 |
} |
| 694 |
|
| 695 |
.jqte_tool.jqte_tool_20 .jqte_tool_icon { |
| 696 |
background-position:-396px 0 |
| 697 |
} |
| 698 |
|
| 699 |
.jqte_tool.jqte_tool_21 .jqte_tool_icon { |
| 700 |
background-position:-418px 0 |
| 701 |
} |
| 702 |
|
| 703 |
.jqte_tool:hover { |
| 704 |
background-color:#FFF; |
| 705 |
border-color:#FFF |
| 706 |
} |
| 707 |
|
| 708 |
.jqte_tool:hover .jqte_tool_icon, .jqte_tool:hover .jqte_tool_label { |
| 709 |
border:#AAA 1px solid |
| 710 |
} |
| 711 |
|
| 712 |
.jqte_tool:active .jqte_tool_icon, .jqte_tool:active .jqte_tool_label { |
| 713 |
border:#777 1px solid |
| 714 |
} |
| 715 |
|
| 716 |
.jqte_tool.jqte_tool_1:hover .jqte_tool_icon, .jqte_tool.jqte_tool_1:active .jqte_tool_icon { |
| 717 |
border:none |
| 718 |
} |
| 719 |
|
| 720 |
.jqte_tool_depressed { |
| 721 |
background-color:#DDD; |
| 722 |
border-color:#CCC |
| 723 |
} |
| 724 |
|
| 725 |
.jqte_tool_depressed .jqte_tool_icon { |
| 726 |
border-color:#AAA |
| 727 |
} |
| 728 |
|
| 729 |
.jqte_tool_depressed:hover { |
| 730 |
background-color:#EEE |
| 731 |
} |
| 732 |
|
| 733 |
.jqte_linkform { |
| 734 |
padding:5px 10px; |
| 735 |
background:#DDD; |
| 736 |
border-bottom:#BBB 1px solid; |
| 737 |
} |
| 738 |
|
| 739 |
.jqte_linktypeselect { |
| 740 |
position:relative; |
| 741 |
float:left; |
| 742 |
width:130px; |
| 743 |
background:#EEE; |
| 744 |
cursor:pointer |
| 745 |
} |
| 746 |
|
| 747 |
.jqte_linktypeselect:Active { |
| 748 |
background:#FFF |
| 749 |
} |
| 750 |
|
| 751 |
.jqte_linktypeview { |
| 752 |
padding:3px 5px; |
| 753 |
border:#333 1px solid; |
| 754 |
color:#777; |
| 755 |
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px; |
| 756 |
outline:none |
| 757 |
} |
| 758 |
|
| 759 |
.jqte_linktypetext { |
| 760 |
font-size:12px; |
| 761 |
} |
| 762 |
|
| 763 |
.jqte_linktypearrow { |
| 764 |
position:absolute; |
| 765 |
bottom:8px; right:6px; |
| 766 |
width:7px; |
| 767 |
height:6px; |
| 768 |
margin:0 auto; |
| 769 |
background:url('../images/jquery-te.png') -7px -23px no-repeat; |
| 770 |
} |
| 771 |
|
| 772 |
.jqte_linktypes { |
| 773 |
display:none; |
| 774 |
position:absolute; |
| 775 |
top:22px; left:1px; |
| 776 |
width:125px; |
| 777 |
background:#FFF; |
| 778 |
border:#333 1px solid; |
| 779 |
box-shadow:0 1px 4px #AAA; -webkit-box-shadow:0 1px 4px #AAA; -moz-box-shadow:0 1px 4px #AAA |
| 780 |
} |
| 781 |
|
| 782 |
.jqte_linktypes a { |
| 783 |
display:block; |
| 784 |
padding:4px 5px; |
| 785 |
font-size:12px; |
| 786 |
} |
| 787 |
|
| 788 |
.jqte_linktypes a:hover { |
| 789 |
background:#DDD |
| 790 |
} |
| 791 |
|
| 792 |
.jqte_linkinput { |
| 793 |
float:left; |
| 794 |
margin:0 5px; |
| 795 |
padding:3px 5px; |
| 796 |
width:300px; |
| 797 |
background:#EEE; |
| 798 |
border:#333 1px solid; |
| 799 |
color:#777; |
| 800 |
font-size:12px; |
| 801 |
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px; |
| 802 |
outline:none; |
| 803 |
} |
| 804 |
|
| 805 |
.jqte_linkinput:focus, .jqte_linkinput:hover { |
| 806 |
background:#FFF; |
| 807 |
border-color:#000; |
| 808 |
} |
| 809 |
|
| 810 |
.jqte_linkbutton { |
| 811 |
float:left; |
| 812 |
padding:3px 12px; |
| 813 |
background:#AAA; |
| 814 |
border:#333 1px solid; |
| 815 |
color:#FFF; |
| 816 |
font-size:12px; |
| 817 |
font-weight:bold; |
| 818 |
cursor:pointer; |
| 819 |
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px; |
| 820 |
box-shadow:inset 0 1px #EEE; -webkit-box-shadow:inset 0 1px #EEE; -moz-box-shadow:inset 0 1px #EEE; |
| 821 |
} |
| 822 |
|
| 823 |
.jqte_linkbutton:hover { |
| 824 |
background:#A1A1A1 |
| 825 |
} |
| 826 |
|
| 827 |
.jqte_linkbutton:active { |
| 828 |
box-shadow:inset 0 1px #CCC; -webkit-box-shadow:inset 0 1px #CCC; -moz-box-shadow:inset 0 1px #CCC; |
| 829 |
background:#888; |
| 830 |
} |
| 831 |
|
| 832 |
.jqte_formats { |
| 833 |
display:none; |
| 834 |
position:absolute; |
| 835 |
width:180px; |
| 836 |
oveflow-x:hidden; |
| 837 |
overflow-y:auto; |
| 838 |
background:#FFF; |
| 839 |
border:#AAA 1px solid; |
| 840 |
box-shadow:0 0 5px #AAA; -webkit-box-shadow:0 0 5px #AAA; -moz-box-shadow:0 0 5px #AAA; |
| 841 |
z-index:100; |
| 842 |
} |
| 843 |
|
| 844 |
.jqte_format { |
| 845 |
display:block; |
| 846 |
padding:4px 7px; |
| 847 |
font-size:13px |
| 848 |
} |
| 849 |
|
| 850 |
.jqte_format:hover { |
| 851 |
background:#DDD |
| 852 |
} |
| 853 |
|
| 854 |
.jqte_format_1, .jqte_format_2, .jqte_format_3, .jqte_format_4, .jqte_format_5, .jqte_format_6 { |
| 855 |
font-weight:bold |
| 856 |
} |
| 857 |
|
| 858 |
.jqte_format_1 { |
| 859 |
font-size:22px |
| 860 |
} |
| 861 |
|
| 862 |
.jqte_format_2 { |
| 863 |
font-size:20px |
| 864 |
} |
| 865 |
|
| 866 |
.jqte_format_3 { |
| 867 |
font-size:18px |
| 868 |
} |
| 869 |
|
| 870 |
.jqte_format_4 { |
| 871 |
font-size:16px |
| 872 |
} |
| 873 |
|
| 874 |
.jqte_format_5 { |
| 875 |
font-size:14px |
| 876 |
} |
| 877 |
|
| 878 |
.jqte_format_6 { |
| 879 |
font-size:12px |
| 880 |
} |
| 881 |
|
| 882 |
.jqte_format_7 { |
| 883 |
font-family:"Courier New", Courier, monospace |
| 884 |
} |
| 885 |
|
| 886 |
.jqte_fontsizes { |
| 887 |
display:none; |
| 888 |
position:absolute; |
| 889 |
width:180px; |
| 890 |
height:198px; |
| 891 |
oveflow-x:hidden; |
| 892 |
overflow-y:auto; |
| 893 |
background:#FFF; |
| 894 |
border:#AAA 1px solid; |
| 895 |
box-shadow:0 0 5px #AAA; -webkit-box-shadow:0 0 5px #AAA; -moz-box-shadow:0 0 5px #AAA |
| 896 |
} |
| 897 |
|
| 898 |
.jqte_fontsize { |
| 899 |
display:block; |
| 900 |
padding:3px 7px; |
| 901 |
} |
| 902 |
|
| 903 |
.jqte_fontsize:hover { |
| 904 |
background:#DDD |
| 905 |
} |
| 906 |
|
| 907 |
.jqte_cpalette { |
| 908 |
display:none; |
| 909 |
position:absolute; |
| 910 |
padding:6px; |
| 911 |
width:144px; |
| 912 |
background:#FFF; |
| 913 |
border:#AAA 1px solid; |
| 914 |
box-shadow:0 0 5px #AAA; -webkit-box-shadow:0 0 5px #AAA; -moz-box-shadow:0 0 5px #AAA |
| 915 |
} |
| 916 |
|
| 917 |
.jqte_color { |
| 918 |
display:block; |
| 919 |
float:left; |
| 920 |
width:16px; |
| 921 |
height:16px; |
| 922 |
border:#FFF 1px solid; |
| 923 |
} |
| 924 |
|
| 925 |
.jqte_color:hover { |
| 926 |
border-color:#000 |
| 927 |
} |
| 928 |
|
| 929 |
.jqte_colorSeperator { |
| 930 |
float:none; |
| 931 |
clear:both; |
| 932 |
height:7px; |
| 933 |
} |
| 934 |
|
| 935 |
.jqte_editor, .jqte_source { |
| 936 |
padding:10px; |
| 937 |
background:#FFF; |
| 938 |
min-height:100px; |
| 939 |
max-height:900px; |
| 940 |
overflow:auto; |
| 941 |
outline:none; |
| 942 |
word-wrap:break-word; -ms-word-wrap:break-word; |
| 943 |
resize:vertical |
| 944 |
} |
| 945 |
|
| 946 |
.jqte_editor div, .jqte_editor p { |
| 947 |
margin:0 0 7px |
| 948 |
} |
| 949 |
|
| 950 |
.jqte_editor a:link, .jqte_editor a:link * { |
| 951 |
color:#0066FF !important; |
| 952 |
text-decoration:underline; |
| 953 |
} |
| 954 |
|
| 955 |
.jqte_editor blockquote { |
| 956 |
margin-top:0; |
| 957 |
margin-bottom:7px |
| 958 |
} |
| 959 |
|
| 960 |
.jqte_editor img { |
| 961 |
float:left; |
| 962 |
margin:0 10px 5px 0 |
| 963 |
} |
| 964 |
|
| 965 |
.jqte_editor a[jqte-setlink], .jqte_editor a[jqte-setlink] * { |
| 966 |
background:#3297FD !important; |
| 967 |
color:#FFF !important |
| 968 |
} |
| 969 |
|
| 970 |
.jqte_editor h1, .jqte_editor h2, .jqte_editor h3, .jqte_editor h4, .jqte_editor h5, .jqte_editor h6, .jqte_editor pre { |
| 971 |
display:block; |
| 972 |
margin:0 0 3px; |
| 973 |
} |
| 974 |
|
| 975 |
.jqte_editor h1, .jqte_editor h1 * { |
| 976 |
font-size:26px |
| 977 |
} |
| 978 |
|
| 979 |
.jqte_editor h2, .jqte_editor h2 * { |
| 980 |
font-size:24px |
| 981 |
} |
| 982 |
|
| 983 |
.jqte_editor h3, .jqte_editor h3 * { |
| 984 |
font-size:22px |
| 985 |
} |
| 986 |
|
| 987 |
.jqte_editor h4, .jqte_editor h4 * { |
| 988 |
font-size:20px |
| 989 |
} |
| 990 |
|
| 991 |
.jqte_editor h5, .jqte_editor h5 * { |
| 992 |
font-size:18px |
| 993 |
} |
| 994 |
|
| 995 |
.jqte_editor h6, .jqte_editor h6 * { |
| 996 |
font-size:15px |
| 997 |
} |
| 998 |
|
| 999 |
.jqte_editor pre, .jqte_editor pre * { |
| 1000 |
font-family:"Courier New", Courier, monospace |
| 1001 |
} |
| 1002 |
|
| 1003 |
.jqte_source, .jqte_source textarea { |
| 1004 |
background:#FFF1E8 |
| 1005 |
} |
| 1006 |
|
| 1007 |
.jqte_source textarea { |
| 1008 |
margin:0 !important; |
| 1009 |
padding:0 !important; |
| 1010 |
display:block !important; |
| 1011 |
width:100% !important; |
| 1012 |
min-height:100px; |
| 1013 |
font-family:Courier, Arial, sans-serif !important; |
| 1014 |
font-weight:normal; |
| 1015 |
font-size:15px; |
| 1016 |
overflow:hidden !important; |
| 1017 |
outline:none; |
| 1018 |
resize:none; |
| 1019 |
} |
| 1020 |
|
| 1021 |
.jqte_source textarea, .jqte_source textarea:focus { |
| 1022 |
css_shadow:none !important; |
| 1023 |
background:none !important; |
| 1024 |
border:none !important; |
| 1025 |
} |
| 1026 |
|
| 1027 |
.jqte_title { |
| 1028 |
display:none; |
| 1029 |
position:absolute; |
| 1030 |
z-index:9999; |
| 1031 |
} |
| 1032 |
|
| 1033 |
.jqte_titleArrow { |
| 1034 |
position:relative; |
| 1035 |
} |
| 1036 |
|
| 1037 |
.jqte_titleArrowIcon { |
| 1038 |
width:7px; |
| 1039 |
height:6px; |
| 1040 |
margin:0 auto; |
| 1041 |
background:url('../images/jquery-te.png') 0 -23px no-repeat; |
| 1042 |
} |
| 1043 |
|
| 1044 |
.jqte_titleText { |
| 1045 |
padding:5px 7px; |
| 1046 |
margin-top:0; |
| 1047 |
min-width:5px; |
| 1048 |
min-height:1px; |
| 1049 |
max-width:400px; |
| 1050 |
background:#000; |
| 1051 |
border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px; |
| 1052 |
word-wrap:break-word; -ms-word-wrap:break-word |
| 1053 |
} |
| 1054 |
|
| 1055 |
.jqte_titleText, .jqte_titleText * { |
| 1056 |
color:#FFF; |
| 1057 |
font-size:11px |
| 1058 |
} |
| 1059 |
|
| 1060 |
.jqte_placeholder { |
| 1061 |
position:relative; |
| 1062 |
display:none; |
| 1063 |
} |
| 1064 |
|
| 1065 |
.jqte_placeholder_text { |
| 1066 |
position:absolute; |
| 1067 |
top:43px; |
| 1068 |
left:10px; |
| 1069 |
font-size:14px; |
| 1070 |
color:#CCC; |
| 1071 |
} |
| 1072 |
|
| 1073 |
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), |
| 1074 |
only screen and (min-resolution: 144dpi), |
| 1075 |
only screen and (min-resolution: 1.5dppx) { |
| 1076 |
.chosen-rtl .chosen-search input[type="text"], |
| 1077 |
.chosen-container-single .chosen-single abbr, |
| 1078 |
.chosen-container-single .chosen-single div b, |
| 1079 |
.chosen-container-single .chosen-search input[type="text"], |
| 1080 |
.chosen-container-multi .chosen-choices .search-choice .search-choice-close, |
| 1081 |
.chosen-container .chosen-results-scroll-down span, |
| 1082 |
.chosen-container .chosen-results-scroll-up span { |
| 1083 |
background-image: url('../images/chosen-sprite.png') !important; |
| 1084 |
background-size: 52px 37px !important; |
| 1085 |
background-repeat: no-repeat !important; |
| 1086 |
} |
| 1087 |
|
| 1088 |
} |
| 1089 |
|
| 1090 |
/* @end */ |
| 1091 |
|
| 1092 |
.minicolors { |
| 1093 |
position: relative; |
| 1094 |
} |
| 1095 |
|
| 1096 |
.minicolors-sprite { |
| 1097 |
background-image: url(../images/jquery.minicolors.png); |
| 1098 |
} |
| 1099 |
|
| 1100 |
.minicolors-swatch { |
| 1101 |
position: absolute; |
| 1102 |
vertical-align: middle; |
| 1103 |
background-position: -80px 0; |
| 1104 |
border: solid 1px #ccc; |
| 1105 |
cursor: text; |
| 1106 |
padding: 0; |
| 1107 |
margin: 0; |
| 1108 |
display: inline-block; |
| 1109 |
} |
| 1110 |
|
| 1111 |
.minicolors-swatch-color { |
| 1112 |
position: absolute; |
| 1113 |
top: 0; |
| 1114 |
left: 0; |
| 1115 |
right: 0; |
| 1116 |
bottom: 0; |
| 1117 |
} |
| 1118 |
|
| 1119 |
.minicolors input[type=hidden] + .minicolors-swatch { |
| 1120 |
width: 28px; |
| 1121 |
position: static; |
| 1122 |
cursor: pointer; |
| 1123 |
} |
| 1124 |
|
| 1125 |
.minicolors input[type=hidden][disabled] + .minicolors-swatch { |
| 1126 |
cursor: default; |
| 1127 |
} |
| 1128 |
|
| 1129 |
/* Panel */ |
| 1130 |
.minicolors-panel { |
| 1131 |
position: absolute; |
| 1132 |
width: 173px; |
| 1133 |
background: white; |
| 1134 |
border: solid 1px #CCC; |
| 1135 |
box-shadow: 0 0 20px rgba(0, 0, 0, .2); |
| 1136 |
z-index: 99999; |
| 1137 |
box-sizing: content-box; |
| 1138 |
display: none; |
| 1139 |
} |
| 1140 |
|
| 1141 |
.minicolors-panel.minicolors-visible { |
| 1142 |
display: block; |
| 1143 |
} |
| 1144 |
|
| 1145 |
/* Panel positioning */ |
| 1146 |
.minicolors-position-top .minicolors-panel { |
| 1147 |
top: -154px; |
| 1148 |
} |
| 1149 |
|
| 1150 |
.minicolors-position-right .minicolors-panel { |
| 1151 |
right: 0; |
| 1152 |
} |
| 1153 |
|
| 1154 |
.minicolors-position-bottom .minicolors-panel { |
| 1155 |
top: 30px; |
| 1156 |
} |
| 1157 |
|
| 1158 |
.minicolors-position-left .minicolors-panel { |
| 1159 |
left: 0; |
| 1160 |
} |
| 1161 |
|
| 1162 |
.minicolors-with-opacity .minicolors-panel { |
| 1163 |
width: 194px; |
| 1164 |
} |
| 1165 |
|
| 1166 |
.minicolors .minicolors-grid { |
| 1167 |
position: relative; |
| 1168 |
top: 1px; |
| 1169 |
left: 1px; |
| 1170 |
width: 150px; |
| 1171 |
height: 150px; |
| 1172 |
background-position: -120px 0; |
| 1173 |
cursor: crosshair; |
| 1174 |
} |
| 1175 |
|
| 1176 |
.minicolors .minicolors-grid-inner { |
| 1177 |
position: absolute; |
| 1178 |
top: 0; |
| 1179 |
left: 0; |
| 1180 |
width: 150px; |
| 1181 |
height: 150px; |
| 1182 |
} |
| 1183 |
|
| 1184 |
.minicolors-slider-saturation .minicolors-grid { |
| 1185 |
background-position: -420px 0; |
| 1186 |
} |
| 1187 |
|
| 1188 |
.minicolors-slider-saturation .minicolors-grid-inner { |
| 1189 |
background-position: -270px 0; |
| 1190 |
background-image: inherit; |
| 1191 |
} |
| 1192 |
|
| 1193 |
.minicolors-slider-brightness .minicolors-grid { |
| 1194 |
background-position: -570px 0; |
| 1195 |
} |
| 1196 |
|
| 1197 |
.minicolors-slider-brightness .minicolors-grid-inner { |
| 1198 |
background-color: black; |
| 1199 |
} |
| 1200 |
|
| 1201 |
.minicolors-slider-wheel .minicolors-grid { |
| 1202 |
background-position: -720px 0; |
| 1203 |
} |
| 1204 |
|
| 1205 |
.minicolors-slider, |
| 1206 |
.minicolors-opacity-slider { |
| 1207 |
position: absolute; |
| 1208 |
top: 1px; |
| 1209 |
left: 152px; |
| 1210 |
width: 20px; |
| 1211 |
height: 150px; |
| 1212 |
background-color: white; |
| 1213 |
background-position: 0 0; |
| 1214 |
cursor: row-resize; |
| 1215 |
} |
| 1216 |
|
| 1217 |
.minicolors-slider-saturation .minicolors-slider { |
| 1218 |
background-position: -60px 0; |
| 1219 |
} |
| 1220 |
|
| 1221 |
.minicolors-slider-brightness .minicolors-slider { |
| 1222 |
background-position: -20px 0; |
| 1223 |
} |
| 1224 |
|
| 1225 |
.minicolors-slider-wheel .minicolors-slider { |
| 1226 |
background-position: -20px 0; |
| 1227 |
} |
| 1228 |
|
| 1229 |
.minicolors-opacity-slider { |
| 1230 |
left: 173px; |
| 1231 |
background-position: -40px 0; |
| 1232 |
display: none; |
| 1233 |
} |
| 1234 |
|
| 1235 |
.minicolors-with-opacity .minicolors-opacity-slider { |
| 1236 |
display: block; |
| 1237 |
} |
| 1238 |
|
| 1239 |
/* Pickers */ |
| 1240 |
.minicolors-grid .minicolors-picker { |
| 1241 |
position: absolute; |
| 1242 |
top: 70px; |
| 1243 |
left: 70px; |
| 1244 |
width: 12px; |
| 1245 |
height: 12px; |
| 1246 |
border: solid 1px black; |
| 1247 |
border-radius: 10px; |
| 1248 |
margin-top: -6px; |
| 1249 |
margin-left: -6px; |
| 1250 |
background: none; |
| 1251 |
} |
| 1252 |
|
| 1253 |
.minicolors-grid .minicolors-picker > div { |
| 1254 |
position: absolute; |
| 1255 |
top: 0; |
| 1256 |
left: 0; |
| 1257 |
width: 8px; |
| 1258 |
height: 8px; |
| 1259 |
border-radius: 8px; |
| 1260 |
border: solid 2px white; |
| 1261 |
box-sizing: content-box; |
| 1262 |
} |
| 1263 |
|
| 1264 |
.minicolors-picker { |
| 1265 |
position: absolute; |
| 1266 |
top: 0; |
| 1267 |
left: 0; |
| 1268 |
width: 18px; |
| 1269 |
height: 2px; |
| 1270 |
background: white; |
| 1271 |
border: solid 1px black; |
| 1272 |
margin-top: -2px; |
| 1273 |
box-sizing: content-box; |
| 1274 |
} |
| 1275 |
|
| 1276 |
/* Swatches */ |
| 1277 |
.minicolors-swatches, |
| 1278 |
.minicolors-swatches li { |
| 1279 |
margin: 5px 0 3px 5px; |
| 1280 |
padding: 0; |
| 1281 |
list-style: none; |
| 1282 |
overflow: hidden; |
| 1283 |
} |
| 1284 |
|
| 1285 |
.minicolors-swatches .minicolors-swatch { |
| 1286 |
position: relative; |
| 1287 |
float: left; |
| 1288 |
cursor: pointer; |
| 1289 |
margin:0 4px 0 0; |
| 1290 |
} |
| 1291 |
|
| 1292 |
.minicolors-with-opacity .minicolors-swatches .minicolors-swatch { |
| 1293 |
margin-right: 7px; |
| 1294 |
} |
| 1295 |
|
| 1296 |
.minicolors-swatch.selected { |
| 1297 |
border-color: #000; |
| 1298 |
} |
| 1299 |
|
| 1300 |
/* Inline controls */ |
| 1301 |
.minicolors-inline { |
| 1302 |
display: inline-block; |
| 1303 |
} |
| 1304 |
|
| 1305 |
.minicolors-inline .minicolors-input { |
| 1306 |
display: none !important; |
| 1307 |
} |
| 1308 |
|
| 1309 |
.minicolors-inline .minicolors-panel { |
| 1310 |
position: relative; |
| 1311 |
top: auto; |
| 1312 |
left: auto; |
| 1313 |
box-shadow: none; |
| 1314 |
z-index: auto; |
| 1315 |
display: inline-block; |
| 1316 |
} |
| 1317 |
|
| 1318 |
/* Default theme */ |
| 1319 |
.minicolors-theme-default .minicolors-swatch { |
| 1320 |
top: 5px; |
| 1321 |
left: 5px; |
| 1322 |
width: 18px; |
| 1323 |
height: 18px; |
| 1324 |
} |
| 1325 |
.minicolors-theme-default .minicolors-swatches .minicolors-swatch { |
| 1326 |
margin-bottom: 2px; |
| 1327 |
top: 0; |
| 1328 |
left: 0; |
| 1329 |
width: 18px; |
| 1330 |
height: 18px; |
| 1331 |
} |
| 1332 |
.minicolors-theme-default.minicolors-position-right .minicolors-swatch { |
| 1333 |
left: auto; |
| 1334 |
right: 5px; |
| 1335 |
} |
| 1336 |
.minicolors-theme-default.minicolors { |
| 1337 |
width: auto; |
| 1338 |
display: inline-block; |
| 1339 |
} |
| 1340 |
.minicolors-theme-default .minicolors-input { |
| 1341 |
height: 20px; |
| 1342 |
width: auto; |
| 1343 |
display: inline-block; |
| 1344 |
padding-left: 26px; |
| 1345 |
} |
| 1346 |
.minicolors-theme-default.minicolors-position-right .minicolors-input { |
| 1347 |
padding-right: 26px; |
| 1348 |
padding-left: inherit; |
| 1349 |
} |
| 1350 |
|
| 1351 |
/* Bootstrap theme */ |
| 1352 |
.minicolors-theme-bootstrap .minicolors-swatch { |
| 1353 |
z-index: 2; |
| 1354 |
top: 3px; |
| 1355 |
left: 3px; |
| 1356 |
width: 28px; |
| 1357 |
height: 28px; |
| 1358 |
border-radius: 3px; |
| 1359 |
} |
| 1360 |
.minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch { |
| 1361 |
margin-bottom: 2px; |
| 1362 |
top: 0; |
| 1363 |
left: 0; |
| 1364 |
width: 20px; |
| 1365 |
height: 20px; |
| 1366 |
} |
| 1367 |
.minicolors-theme-bootstrap .minicolors-swatch-color { |
| 1368 |
border-radius: inherit; |
| 1369 |
} |
| 1370 |
.minicolors-theme-bootstrap.minicolors-position-right > .minicolors-swatch { |
| 1371 |
left: auto; |
| 1372 |
right: 3px; |
| 1373 |
} |
| 1374 |
.minicolors-theme-bootstrap .minicolors-input { |
| 1375 |
float: none; |
| 1376 |
padding-left: 44px; |
| 1377 |
} |
| 1378 |
.minicolors-theme-bootstrap.minicolors-position-right .minicolors-input { |
| 1379 |
padding-right: 44px; |
| 1380 |
padding-left: 12px; |
| 1381 |
} |
| 1382 |
.minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch { |
| 1383 |
top: 4px; |
| 1384 |
left: 4px; |
| 1385 |
width: 37px; |
| 1386 |
height: 37px; |
| 1387 |
border-radius: 5px; |
| 1388 |
} |
| 1389 |
.minicolors-theme-bootstrap .minicolors-input.input-sm + .minicolors-swatch { |
| 1390 |
width: 24px; |
| 1391 |
height: 24px; |
| 1392 |
} |
| 1393 |
.minicolors-theme-bootstrap .minicolors-input.input-xs + .minicolors-swatch { |
| 1394 |
width: 18px; |
| 1395 |
height: 18px; |
| 1396 |
} |
| 1397 |
.input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input { |
| 1398 |
border-top-left-radius: 0; |
| 1399 |
border-bottom-left-radius: 0; |
| 1400 |
} |
| 1401 |
|
| 1402 |
/* Semantic Ui theme */ |
| 1403 |
.minicolors-theme-semanticui .minicolors-swatch { |
| 1404 |
top: 0; |
| 1405 |
left: 0; |
| 1406 |
padding: 18px; |
| 1407 |
} |
| 1408 |
.minicolors-theme-semanticui input { |
| 1409 |
text-indent: 30px; |
| 1410 |
} |