| 1 |
/* |
| 2 |
* Buttonizer |
| 3 |
*/ |
| 4 |
.opening_hours { |
| 5 |
width: 100%; |
| 6 |
} |
| 7 |
|
| 8 |
.opening_hours td { |
| 9 |
padding: 5px; |
| 10 |
} |
| 11 |
|
| 12 |
h2 .button { |
| 13 |
float: right; |
| 14 |
} |
| 15 |
|
| 16 |
.buttonizer-logo { |
| 17 |
display: inline-block; |
| 18 |
margin-top: 20px; |
| 19 |
margin-right: 20px; |
| 20 |
padding-left: 10px; |
| 21 |
float: left; |
| 22 |
} |
| 23 |
|
| 24 |
.buttonizer-logo img { |
| 25 |
max-width: 200px; |
| 26 |
} |
| 27 |
|
| 28 |
.buttonizer-no-buttons { |
| 29 |
width: 100%; |
| 30 |
} |
| 31 |
|
| 32 |
.clear { |
| 33 |
clear: both; |
| 34 |
} |
| 35 |
|
| 36 |
.fs-modal .fs-modal-header .fs-close { |
| 37 |
text-decoration: none; |
| 38 |
} |
| 39 |
|
| 40 |
.info-class { |
| 41 |
position: relative; |
| 42 |
display: inline-block; |
| 43 |
} |
| 44 |
|
| 45 |
.info-class >i { |
| 46 |
color: #9d8a7e; |
| 47 |
padding: 3px 5px; |
| 48 |
margin-right: 4px; |
| 49 |
} |
| 50 |
|
| 51 |
.info-class >span { |
| 52 |
opacity: 0; |
| 53 |
position: absolute; |
| 54 |
visibility: hidden; |
| 55 |
z-index: 100; |
| 56 |
top: 19px; |
| 57 |
left: 0px; |
| 58 |
border-radius: 3px; |
| 59 |
-moz-border-radius: 3px; |
| 60 |
-webkit-border-radius: 3px; |
| 61 |
-edge-border-radius: 3px; |
| 62 |
|
| 63 |
border-top-left-radius: 0; |
| 64 |
-moz-border-top-left-radius: 0; |
| 65 |
-webkit-border-top-left-radius: 0; |
| 66 |
min-width: 200px; |
| 67 |
padding: 10px; |
| 68 |
background-color: rgba(0, 0, 0, 0.56); |
| 69 |
color: #FFFFFF; |
| 70 |
font-weight: 200; |
| 71 |
} |
| 72 |
|
| 73 |
.info-class:hover >i { |
| 74 |
background-color: rgba(0, 0, 0, 0.56); |
| 75 |
color: rgba(255, 255, 255, 0.5); |
| 76 |
|
| 77 |
border-top-left-radius: 3px; |
| 78 |
-moz-border-top-left-radius: 3px; |
| 79 |
-webkit-border-top-left-radius: 3px; |
| 80 |
|
| 81 |
border-top-right-radius: 3px; |
| 82 |
-moz-border-top-right-radius: 3px; |
| 83 |
-webkit-border-top-right-radius: 3px; |
| 84 |
|
| 85 |
} |
| 86 |
|
| 87 |
.info-class:hover >span { |
| 88 |
opacity: 1; |
| 89 |
visibility: visible; |
| 90 |
} |
| 91 |
|
| 92 |
#buttonizer h2 { |
| 93 |
margin-bottom: 20px !important; |
| 94 |
} |
| 95 |
|
| 96 |
.savebutton_margin { |
| 97 |
margin-left: 10px !important; |
| 98 |
} |
| 99 |
|
| 100 |
.savebutton span { |
| 101 |
margin-left: 5px; |
| 102 |
} |
| 103 |
|
| 104 |
.button-row { |
| 105 |
border: 1px solid #c4c4c4; |
| 106 |
margin-bottom: 10px; |
| 107 |
} |
| 108 |
|
| 109 |
.button-row.opened .button-data { |
| 110 |
display: block; |
| 111 |
} |
| 112 |
|
| 113 |
.button-row.button-row-disabled .row-info { |
| 114 |
position: relative; |
| 115 |
} |
| 116 |
|
| 117 |
.button-row.button-row-disabled .row-info .button-locked { |
| 118 |
position: absolute; |
| 119 |
left: 0; |
| 120 |
right: 0; |
| 121 |
top: 0; |
| 122 |
bottom: 0; |
| 123 |
background: rgba(238, 238, 238, 0.74); |
| 124 |
color: #6b6b6b; |
| 125 |
text-align: center; |
| 126 |
padding: 12px; |
| 127 |
font-size: 16px; |
| 128 |
} |
| 129 |
|
| 130 |
.button-row.button-row-disabled.opened .button-data { |
| 131 |
display: none !important; |
| 132 |
} |
| 133 |
|
| 134 |
.button-row .row-info { |
| 135 |
padding: 12px 15px; |
| 136 |
background-color: #e6e6e6; |
| 137 |
cursor: pointer; |
| 138 |
font-size: 18px; |
| 139 |
position: relative; |
| 140 |
} |
| 141 |
|
| 142 |
.button-row .row-info .mover { |
| 143 |
position: absolute; |
| 144 |
left: 0; |
| 145 |
top: 0; |
| 146 |
bottom: 0; |
| 147 |
width: 65px; |
| 148 |
cursor: move; |
| 149 |
} |
| 150 |
|
| 151 |
.button-row .row-info span i { |
| 152 |
cursor: move; |
| 153 |
} |
| 154 |
|
| 155 |
.button-row .row-info i { |
| 156 |
font-size: 18px; |
| 157 |
margin-left: 10px; |
| 158 |
margin-right: 20px; |
| 159 |
} |
| 160 |
|
| 161 |
.button-row .row-info .pencil-edit { |
| 162 |
font-size: 15px; |
| 163 |
color: #7d7d7d; |
| 164 |
} |
| 165 |
|
| 166 |
.button-row .row-info .pencil-edit:hover { |
| 167 |
color: #333333; |
| 168 |
} |
| 169 |
|
| 170 |
.button-row .row-info .mobiledesktop { |
| 171 |
font-size: 15px; |
| 172 |
color: #4876ff; |
| 173 |
float: right; |
| 174 |
text-decoration: none; |
| 175 |
outline: none; |
| 176 |
box-shadow: none; |
| 177 |
-webkit-box-shadow: none; |
| 178 |
} |
| 179 |
|
| 180 |
.button-row .row-info .mobiledesktop i { |
| 181 |
margin: 0 10px !important; |
| 182 |
} |
| 183 |
|
| 184 |
.button-row .row-info .mobiledesktop.selected { |
| 185 |
color: #7d7d7d; |
| 186 |
} |
| 187 |
|
| 188 |
.button-row .row-info .delete-button { |
| 189 |
color: #c31414; |
| 190 |
float: right; |
| 191 |
font-size: 13px; |
| 192 |
text-decoration: none; |
| 193 |
margin-left: 15px; |
| 194 |
} |
| 195 |
|
| 196 |
.button-row .row-info .delete-button i { |
| 197 |
font-size: 14px; |
| 198 |
margin-right: 5px; |
| 199 |
} |
| 200 |
|
| 201 |
.button-row .row-info .delete-button:hover { |
| 202 |
text-decoration: underline; |
| 203 |
} |
| 204 |
|
| 205 |
.button-row .row-info .is-live-button, .button-row .row-info .must-save-button { |
| 206 |
border: 1px solid #dc2323; |
| 207 |
color: #dc2323; |
| 208 |
border-radius: 4px; |
| 209 |
-moz-border-radius: 4px; |
| 210 |
-webkit-border-radius: 4px; |
| 211 |
padding: 3px 15px; |
| 212 |
float: right; |
| 213 |
font-size: 11px; |
| 214 |
text-transform: uppercase; |
| 215 |
font-weight: 600; |
| 216 |
text-decoration: none; |
| 217 |
margin-top: -3px; |
| 218 |
margin-right: 10px; |
| 219 |
} |
| 220 |
|
| 221 |
.button-row .row-info .is-live-button i, .button-row .row-info .must-save-button i { |
| 222 |
font-size: 9px; |
| 223 |
margin: -3px 5px 0 0; |
| 224 |
padding: 0; |
| 225 |
vertical-align: middle; |
| 226 |
} |
| 227 |
|
| 228 |
.button-row .row-info .is-live-button { |
| 229 |
cursor: default; |
| 230 |
} |
| 231 |
|
| 232 |
.button-row .row-info .must-save-button { |
| 233 |
color: #4575fe; |
| 234 |
border-color: #4575fe; |
| 235 |
padding: 6px 15px; |
| 236 |
margin-top: -5px; |
| 237 |
cursor: pointer; |
| 238 |
} |
| 239 |
|
| 240 |
.button-row .row-info .must-save-button i { |
| 241 |
font-size: 14px; |
| 242 |
} |
| 243 |
|
| 244 |
.button-row.button-row-disabled .row-info >.delete-button { |
| 245 |
opacity: 0.2; |
| 246 |
} |
| 247 |
|
| 248 |
.button-row:hover .row-info, .button-row.opened .row-info { |
| 249 |
background-color: #dbdbdb; |
| 250 |
} |
| 251 |
|
| 252 |
.button-row .button-data { |
| 253 |
padding: 20px; |
| 254 |
display: none; |
| 255 |
} |
| 256 |
|
| 257 |
.button-row .button-data table { |
| 258 |
width: 100%; |
| 259 |
} |
| 260 |
|
| 261 |
.button-row .button-data .label-top { |
| 262 |
font-weight: bold; |
| 263 |
margin-bottom: 5px; |
| 264 |
display: block; |
| 265 |
} |
| 266 |
|
| 267 |
.button-row .button-data input[type=text], |
| 268 |
.button-row .button-data select { |
| 269 |
width: 100%; |
| 270 |
height: auto; |
| 271 |
padding: 8px 10px; |
| 272 |
} |
| 273 |
|
| 274 |
.button-row .button-data .fontawesome-searcher-clicker { |
| 275 |
display: block !important; |
| 276 |
} |
| 277 |
|
| 278 |
.button-row .button-data table .button-pdr { |
| 279 |
padding-right: 15px; |
| 280 |
} |
| 281 |
|
| 282 |
.button-row .button-data table .settings-row td { |
| 283 |
padding: 5px 0; |
| 284 |
} |
| 285 |
|
| 286 |
.button-row .button-data .setting-icon { |
| 287 |
width: 23px; |
| 288 |
text-align: center; |
| 289 |
margin-right: 4px; |
| 290 |
} |
| 291 |
|
| 292 |
.button-row .icon-or-image { |
| 293 |
position: relative; |
| 294 |
} |
| 295 |
|
| 296 |
.button-row .icon-or-image .placeholder-choose { |
| 297 |
position: absolute; |
| 298 |
top: -35px; |
| 299 |
right: 10px; |
| 300 |
z-index: 99; |
| 301 |
} |
| 302 |
|
| 303 |
.button-row .button-preview { |
| 304 |
position: absolute; |
| 305 |
right: 20px; |
| 306 |
top: -15px; |
| 307 |
background-color: blue; |
| 308 |
} |
| 309 |
|
| 310 |
.button-row .button-color-palet { |
| 311 |
border: 1px solid #ccc; |
| 312 |
-webkit-box-shadow: 0 1px 0 #ccc; |
| 313 |
box-shadow: 0 1px 0 #ccc; |
| 314 |
-webkit-border-radius: 3px; |
| 315 |
border-radius: 3px; |
| 316 |
cursor: pointer; |
| 317 |
height: 22px; |
| 318 |
margin: 0 6px 6px 0; |
| 319 |
position: relative; |
| 320 |
-webkit-user-select: none; |
| 321 |
-moz-user-select: none; |
| 322 |
-ms-user-select: none; |
| 323 |
user-select: none; |
| 324 |
vertical-align: bottom; |
| 325 |
display: inline-block; |
| 326 |
top: 0; |
| 327 |
overflow: hidden; |
| 328 |
} |
| 329 |
|
| 330 |
.button-row .button-color-palet:hover { |
| 331 |
border-color: #afafaf; |
| 332 |
} |
| 333 |
|
| 334 |
.button-row .button-color-palet .color { |
| 335 |
height: 24px; |
| 336 |
width: 30px; |
| 337 |
display: inline-block; |
| 338 |
} |
| 339 |
|
| 340 |
.button-row .button-color-palet .text { |
| 341 |
background: #f7f7f7; |
| 342 |
-webkit-border-radius: 0 2px 2px 0; |
| 343 |
border-radius: 0 2px 2px 0; |
| 344 |
border-left: 1px solid #ccc; |
| 345 |
color: #555; |
| 346 |
content: attr(title); |
| 347 |
display: block; |
| 348 |
font-size: 11px; |
| 349 |
line-height: 22px; |
| 350 |
padding: 0 6px; |
| 351 |
position: relative; |
| 352 |
text-align: center; |
| 353 |
float: right; |
| 354 |
} |
| 355 |
|
| 356 |
.button-row .color_default_btn { |
| 357 |
font-size: 11px; |
| 358 |
line-height: 22px; |
| 359 |
height: 24px; |
| 360 |
} |
| 361 |
|
| 362 |
.button-preview { |
| 363 |
border-radius: 50%; |
| 364 |
width: 56px; |
| 365 |
height: 56px; |
| 366 |
display: block; |
| 367 |
vertical-align: middle; |
| 368 |
text-align: center; |
| 369 |
color: #FFFFFF; |
| 370 |
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12); |
| 371 |
cursor: pointer; |
| 372 |
outline: none; |
| 373 |
position: relative; |
| 374 |
transition: all 0.2s ease-out; |
| 375 |
-moz-transition: all 0.2s ease-out; |
| 376 |
-webkit-transition: all 0.2s ease-out; |
| 377 |
-o-transition: all 0.2s ease-out; |
| 378 |
margin-top: 5px; |
| 379 |
line-height: 56px; |
| 380 |
} |
| 381 |
|
| 382 |
/* General settings tabs */ |
| 383 |
.vertical-tabs { |
| 384 |
display: block; |
| 385 |
width: 100%; |
| 386 |
border-spacing: 0; |
| 387 |
} |
| 388 |
|
| 389 |
.vertical-tabs tr td { |
| 390 |
vertical-align: top; |
| 391 |
padding: 0; |
| 392 |
} |
| 393 |
|
| 394 |
.vertical-tabs .tabs { |
| 395 |
width: 200px; |
| 396 |
} |
| 397 |
|
| 398 |
.vertical-tabs .tabs a { |
| 399 |
display: block; |
| 400 |
float: none !important; |
| 401 |
margin: 0px; |
| 402 |
padding: 10px 20px; |
| 403 |
border: 1px solid #cccccc; |
| 404 |
border-top: 0; |
| 405 |
box-shadow: none !important; |
| 406 |
} |
| 407 |
|
| 408 |
.vertical-tabs .tabs a.first { |
| 409 |
border-top: 1px solid #cccccc; |
| 410 |
} |
| 411 |
|
| 412 |
.vertical-tabs .tabs a.nav-tab-active { |
| 413 |
border-right: 0; |
| 414 |
} |
| 415 |
|
| 416 |
.vertical-tabs .tabsholder { |
| 417 |
width: 85%; |
| 418 |
} |
| 419 |
|
| 420 |
.vertical-tabs .tab-container { |
| 421 |
display: block; |
| 422 |
border: 1px solid #cccccc; |
| 423 |
margin-left: -1px; |
| 424 |
min-height: 200px; |
| 425 |
padding: 0 20px 20px 40px; |
| 426 |
border-left: 0; |
| 427 |
border-bottom: 0; |
| 428 |
} |
| 429 |
|
| 430 |
.form-table td { |
| 431 |
vertical-align: middle !important; |
| 432 |
} |
| 433 |
|
| 434 |
/* Categories */ |
| 435 |
.categories-load-more { |
| 436 |
display: block; |
| 437 |
|
| 438 |
background-color: #e6e6e6; |
| 439 |
border: 1px solid #c4c4c4; |
| 440 |
|
| 441 |
padding: 10px 15px; |
| 442 |
margin-top: 20px; |
| 443 |
|
| 444 |
font-size: 15px; |
| 445 |
text-align: center; |
| 446 |
cursor: pointer; |
| 447 |
|
| 448 |
color: #444444; |
| 449 |
|
| 450 |
text-decoration: none; |
| 451 |
} |
| 452 |
|
| 453 |
.categories-load-more:hover { |
| 454 |
color: #888888; |
| 455 |
} |
| 456 |
|
| 457 |
.page-categorie-styling { |
| 458 |
background: #FFFFFF; |
| 459 |
border-radius: 5px; |
| 460 |
margin-top: 20px; |
| 461 |
border: 1px solid #c4c4c4; |
| 462 |
border-spacing: 0; |
| 463 |
overflow: hidden; |
| 464 |
} |
| 465 |
|
| 466 |
.page-categorie-styling thead { |
| 467 |
background-color: #f1f1f1; |
| 468 |
} |
| 469 |
|
| 470 |
.page-categorie-styling thead td { |
| 471 |
border-bottom: 2px solid #dcdcdc; |
| 472 |
padding: 8px 11px !important; |
| 473 |
} |
| 474 |
|
| 475 |
.page-categorie-styling tr { |
| 476 |
border-bottom: 1px solid #333333; |
| 477 |
} |
| 478 |
|
| 479 |
.page-categorie-styling tr td { |
| 480 |
padding: 14px 11px; |
| 481 |
border-bottom: 1px solid #dcdcdc; |
| 482 |
} |
| 483 |
|
| 484 |
.page-categorie-styling .text-centered { |
| 485 |
text-align: center; |
| 486 |
} |
| 487 |
|
| 488 |
.page-categorie-styling .is-clickable { |
| 489 |
cursor: pointer; |
| 490 |
} |
| 491 |
|
| 492 |
/* FontAwesome searcher */ |
| 493 |
.fontawesome-searcher-clicker { |
| 494 |
display: inline-block; |
| 495 |
background-color: #ffffff; |
| 496 |
border: 1px solid #cccccc; |
| 497 |
color: #333333; |
| 498 |
padding: 6px 16px; |
| 499 |
text-decoration: none; |
| 500 |
} |
| 501 |
|
| 502 |
.fontawesome-searcher { |
| 503 |
position: absolute; |
| 504 |
left: 0; |
| 505 |
top: 0; |
| 506 |
background: #FFFFFF; |
| 507 |
box-shadow: 0px 0px 10px rgba(183, 183, 183, 0.18); |
| 508 |
min-width: 250px; |
| 509 |
border: 1px solid #e7e7e7; |
| 510 |
z-index: 999; |
| 511 |
} |
| 512 |
|
| 513 |
.fontawesome-searcher .fontawesome-searcher-searchbar { |
| 514 |
padding: 20px; |
| 515 |
text-align: center; |
| 516 |
} |
| 517 |
|
| 518 |
.fontawesome-searcher .fontawesome-searcher-searchbar input { |
| 519 |
border-radius: 50px; |
| 520 |
-moz-border-radius: 50px; |
| 521 |
-webkit-border-radius: 50px; |
| 522 |
padding: 7px 20px; |
| 523 |
font-weight: 200; |
| 524 |
outline: none; |
| 525 |
} |
| 526 |
|
| 527 |
.fontawesome-searcher .fontawesome-searcher-icons { |
| 528 |
background-color: #f5f5f5; |
| 529 |
|
| 530 |
border-top: 1px solid #e7e7e7; |
| 531 |
|
| 532 |
overflow: auto; |
| 533 |
max-height: 150px; |
| 534 |
} |
| 535 |
|
| 536 |
.fontawesome-searcher .fontawesome-searcher-icons table { |
| 537 |
width: 100%; |
| 538 |
} |
| 539 |
|
| 540 |
.fontawesome-searcher .fontawesome-searcher-icons table table td { |
| 541 |
border-bottom: 1px solid #e7e7e7; |
| 542 |
border-right: 1px solid #e7e7e7; |
| 543 |
border-left: 1px solid #ffffff; |
| 544 |
} |
| 545 |
|
| 546 |
.fontawesome-searcher .fontawesome-searcher-icons a { |
| 547 |
background-color: #f5f5f5; |
| 548 |
color: #464646; |
| 549 |
font-size: 16px; |
| 550 |
padding: 12px 0; |
| 551 |
text-decoration: none; |
| 552 |
display: block; |
| 553 |
text-align: center; |
| 554 |
outline: none; |
| 555 |
} |
| 556 |
|
| 557 |
.fontawesome-searcher .fontawesome-searcher-icons a:hover { |
| 558 |
background-color: #e7e7e7; |
| 559 |
} |
| 560 |
|
| 561 |
.fontawesome-searcher .no-matches-found { |
| 562 |
padding: 0 0 15px; |
| 563 |
text-align: center; |
| 564 |
font-style: italic; |
| 565 |
color: #8b8b8b; |
| 566 |
} |
| 567 |
|
| 568 |
/* Pro */ |
| 569 |
.color-buttonizer { |
| 570 |
color: #2a7688; |
| 571 |
text-transform: uppercase; |
| 572 |
} |
| 573 |
|
| 574 |
.color-buttonizer span { |
| 575 |
color: #ef8419; |
| 576 |
} |
| 577 |
|
| 578 |
.color-buttonizer-blue { |
| 579 |
color: #2a7688; |
| 580 |
} |
| 581 |
|
| 582 |
.color-buttonizer-orange { |
| 583 |
color: #ef8419; |
| 584 |
} |
| 585 |
|
| 586 |
.buttonizer-pro-checklist { |
| 587 |
font-size: 16px; |
| 588 |
line-height: 25px; |
| 589 |
font-weight: 400; |
| 590 |
} |
| 591 |
|
| 592 |
.buttonizer-pro-checklist .fa-check { |
| 593 |
margin-right: 10px; |
| 594 |
font-size: 17px; |
| 595 |
} |
| 596 |
|
| 597 |
.buttonizer-pro-feature { |
| 598 |
background: #2d7688; |
| 599 |
background: -moz-linear-gradient(-45deg, #2d7688 0%, #187287 50%, #187287 50%, #f0841a 51%, #e8832c 98%); |
| 600 |
background: -webkit-linear-gradient(-45deg, #2d7688 0%,#187287 50%,#187287 50%,#f0841a 51%,#e8832c 98%); |
| 601 |
background: linear-gradient(135deg, #2d7688 0%,#187287 50%,#187287 50%,#f0841a 51%,#e8832c 98%); |
| 602 |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d7688', endColorstr='#e8832c',GradientType=1 ); |
| 603 |
color: #FFFFFF; |
| 604 |
font-weight: 500; |
| 605 |
font-size: 13px; |
| 606 |
padding: 4px 20px; |
| 607 |
display: inline-block; |
| 608 |
border-radius: 4px; |
| 609 |
-moz-border-radius: 4px; |
| 610 |
-webkit-border-radius: 4px; |
| 611 |
margin-left: 10px; |
| 612 |
} |
| 613 |
|
| 614 |
.buttonizer-pro-text { |
| 615 |
border: 1px solid #eeeeee; |
| 616 |
color: #999999; |
| 617 |
padding: 20px 0; |
| 618 |
font-size: 16px; |
| 619 |
} |
| 620 |
|
| 621 |
.buttonizer-pro-text a { |
| 622 |
color: #999999; |
| 623 |
} |
| 624 |
|
| 625 |
.buttonizer-pro-text .fa-lock { |
| 626 |
margin-right: 10px; |
| 627 |
} |
| 628 |
|
| 629 |
/* */ |
| 630 |
.icon-or-image { |
| 631 |
|
| 632 |
} |
| 633 |
|
| 634 |
.icon-or-image .placeholder-choose { |
| 635 |
padding: 5px 5px 10px 5px; |
| 636 |
display: block; |
| 637 |
} |
| 638 |
|
| 639 |
.icon-or-image .placeholder-choose a { |
| 640 |
color: #147aae; |
| 641 |
text-decoration: none; |
| 642 |
|
| 643 |
} |
| 644 |
|
| 645 |
.icon-or-image .placeholder-choose a:hover { |
| 646 |
text-decoration: underline; |
| 647 |
} |
| 648 |
|
| 649 |
/* |
| 650 |
* Red button |
| 651 |
*/ |
| 652 |
.wp-core-ui .button-red { |
| 653 |
background: #ba0000; |
| 654 |
border-color: #aa0000 #990000 #990000; |
| 655 |
-webkit-box-shadow: 0 1px 0 #990000; |
| 656 |
box-shadow: 0 1px 0 #990000; |
| 657 |
color: #fff; |
| 658 |
text-decoration: none; |
| 659 |
text-shadow: 0 -1px 1px #990000, 1px 0 1px #990000, 0 1px 1px #990000, -1px 0 1px #990000; |
| 660 |
} |
| 661 |
|
| 662 |
.wp-core-ui .button-red:hover { |
| 663 |
background: #c20000 !important; |
| 664 |
border-color: #990000 !important; |
| 665 |
color: #fff; |
| 666 |
} |
| 667 |
|
| 668 |
.wp-core-ui .button-red:active, .wp-core-ui .button-red:focus { |
| 669 |
background: #aa0000 !important; |
| 670 |
border-color: #990000 !important; |
| 671 |
-webkit-box-shadow: inset 0 2px 0 #990000; |
| 672 |
box-shadow: inset 0 2px 0 #990000; |
| 673 |
vertical-align: top; |
| 674 |
color: #FFFFFF; |
| 675 |
} |
| 676 |
|
| 677 |
.time-table { |
| 678 |
max-width: 700px; |
| 679 |
} |
| 680 |
|
| 681 |
/**/ |
| 682 |
.color-chooser-table tr td { |
| 683 |
vertical-align: top; |
| 684 |
} |
| 685 |
|
| 686 |
/* jQuery slider */ |
| 687 |
.ui-slider { |
| 688 |
position: relative; |
| 689 |
text-align: left; |
| 690 |
height: 4px; |
| 691 |
border: 1px solid rgba(46, 119, 137, 0.17); |
| 692 |
background-color: #e5e5e5; |
| 693 |
border-radius: 3px; |
| 694 |
-webkit-border-radius: 3px; |
| 695 |
-moz-border-radius: 3px; |
| 696 |
} |
| 697 |
|
| 698 |
.ui-slider.ui-slider-disabled { |
| 699 |
opacity: 0.5; |
| 700 |
} |
| 701 |
|
| 702 |
.ui-slider .ui-slider-handle { |
| 703 |
position: absolute; |
| 704 |
z-index: 2; |
| 705 |
width: 25px; |
| 706 |
height: 25px; |
| 707 |
cursor: default; |
| 708 |
-ms-touch-action: none; |
| 709 |
touch-action: none; |
| 710 |
|
| 711 |
border-radius: 100%; |
| 712 |
-webkit-border-radius: 100%; |
| 713 |
-moz-border-radius: 100%; |
| 714 |
|
| 715 |
margin-left: -8px; |
| 716 |
|
| 717 |
border: 1px solid #c5c5c5; |
| 718 |
background: #f6f6f6; |
| 719 |
font-weight: normal; |
| 720 |
color: #454545; |
| 721 |
|
| 722 |
top: -12px; |
| 723 |
} |
| 724 |
|
| 725 |
.ui-slider .ui-slider-range { |
| 726 |
position: absolute; |
| 727 |
z-index: 1; |
| 728 |
height: 4px; |
| 729 |
top: -1px; |
| 730 |
font-size: .7em; |
| 731 |
display: block; |
| 732 |
border: 1px solid rgba(48, 120, 138, 0.29); |
| 733 |
background: #ee8216; |
| 734 |
} |
| 735 |
|