| 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 |
} |
| 140 |
|
| 141 |
.button-row .row-info i { |
| 142 |
font-size: 18px; |
| 143 |
margin-left: 10px; |
| 144 |
margin-right: 20px; |
| 145 |
} |
| 146 |
|
| 147 |
.button-row .row-info .pencil-edit { |
| 148 |
font-size: 15px; |
| 149 |
color: #7d7d7d; |
| 150 |
} |
| 151 |
|
| 152 |
.button-row .row-info .pencil-edit:hover { |
| 153 |
color: #333333; |
| 154 |
} |
| 155 |
|
| 156 |
.button-row .row-info .mobiledesktop { |
| 157 |
font-size: 15px; |
| 158 |
color: #4876ff; |
| 159 |
float: right; |
| 160 |
text-decoration: none; |
| 161 |
outline: none; |
| 162 |
box-shadow: none; |
| 163 |
-webkit-box-shadow: none; |
| 164 |
} |
| 165 |
|
| 166 |
.button-row .row-info .mobiledesktop i { |
| 167 |
margin: 0 10px !important; |
| 168 |
} |
| 169 |
|
| 170 |
.button-row .row-info .mobiledesktop.selected { |
| 171 |
color: #7d7d7d; |
| 172 |
} |
| 173 |
|
| 174 |
.button-row .row-info .delete-button { |
| 175 |
color: #c31414; |
| 176 |
float: right; |
| 177 |
font-size: 13px; |
| 178 |
text-decoration: none; |
| 179 |
margin-left: 15px; |
| 180 |
} |
| 181 |
|
| 182 |
.button-row .row-info .delete-button i { |
| 183 |
font-size: 14px; |
| 184 |
margin-right: 5px; |
| 185 |
} |
| 186 |
|
| 187 |
.button-row .row-info .delete-button:hover { |
| 188 |
text-decoration: underline; |
| 189 |
} |
| 190 |
|
| 191 |
.button-row.button-row-disabled .row-info >.delete-button { |
| 192 |
opacity: 0.2; |
| 193 |
} |
| 194 |
|
| 195 |
.button-row:hover .row-info, .button-row.opened .row-info { |
| 196 |
background-color: #dbdbdb; |
| 197 |
} |
| 198 |
|
| 199 |
.button-row .button-data { |
| 200 |
padding: 20px; |
| 201 |
display: none; |
| 202 |
} |
| 203 |
|
| 204 |
.button-row .button-data table { |
| 205 |
width: 100%; |
| 206 |
} |
| 207 |
|
| 208 |
.button-row .button-data .label-top { |
| 209 |
font-weight: bold; |
| 210 |
margin-bottom: 5px; |
| 211 |
display: block; |
| 212 |
} |
| 213 |
|
| 214 |
.button-row .button-data input[type=text], |
| 215 |
.button-row .button-data select { |
| 216 |
width: 100%; |
| 217 |
height: auto; |
| 218 |
padding: 8px 10px; |
| 219 |
} |
| 220 |
|
| 221 |
.button-row .button-data .fontawesome-searcher-clicker { |
| 222 |
display: block !important; |
| 223 |
} |
| 224 |
|
| 225 |
.button-row .button-data table .button-pdr { |
| 226 |
padding-right: 15px; |
| 227 |
} |
| 228 |
|
| 229 |
.button-row .button-data table .settings-row td { |
| 230 |
padding: 5px 0; |
| 231 |
} |
| 232 |
|
| 233 |
.button-row .button-data .setting-icon { |
| 234 |
width: 23px; |
| 235 |
text-align: center; |
| 236 |
margin-right: 4px; |
| 237 |
} |
| 238 |
|
| 239 |
.button-preview { |
| 240 |
border-radius: 50%; |
| 241 |
width: 56px; |
| 242 |
height: 56px; |
| 243 |
display: block; |
| 244 |
vertical-align: middle; |
| 245 |
text-align: center; |
| 246 |
color: #FFFFFF; |
| 247 |
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12); |
| 248 |
cursor: pointer; |
| 249 |
outline: none; |
| 250 |
position: relative; |
| 251 |
transition: all 0.2s ease-out; |
| 252 |
-moz-transition: all 0.2s ease-out; |
| 253 |
-webkit-transition: all 0.2s ease-out; |
| 254 |
-o-transition: all 0.2s ease-out; |
| 255 |
margin-top: 5px; |
| 256 |
line-height: 56px; |
| 257 |
} |
| 258 |
|
| 259 |
/* General settings tabs */ |
| 260 |
.vertical-tabs { |
| 261 |
display: block; |
| 262 |
width: 100%; |
| 263 |
border-spacing: 0; |
| 264 |
} |
| 265 |
|
| 266 |
.vertical-tabs tr td { |
| 267 |
vertical-align: top; |
| 268 |
padding: 0; |
| 269 |
} |
| 270 |
|
| 271 |
.vertical-tabs .tabs { |
| 272 |
width: 200px; |
| 273 |
} |
| 274 |
|
| 275 |
.vertical-tabs .tabs a { |
| 276 |
display: block; |
| 277 |
float: none !important; |
| 278 |
margin: 0px; |
| 279 |
padding: 10px 20px; |
| 280 |
border: 1px solid #cccccc; |
| 281 |
border-top: 0; |
| 282 |
box-shadow: none !important; |
| 283 |
} |
| 284 |
|
| 285 |
.vertical-tabs .tabs a.first { |
| 286 |
border-top: 1px solid #cccccc; |
| 287 |
} |
| 288 |
|
| 289 |
.vertical-tabs .tabs a.nav-tab-active { |
| 290 |
border-right: 0; |
| 291 |
} |
| 292 |
|
| 293 |
.vertical-tabs .tabsholder { |
| 294 |
width: 85%; |
| 295 |
} |
| 296 |
|
| 297 |
.vertical-tabs .tab-container { |
| 298 |
display: block; |
| 299 |
border: 1px solid #cccccc; |
| 300 |
margin-left: -1px; |
| 301 |
min-height: 200px; |
| 302 |
padding: 0 20px 20px 40px; |
| 303 |
border-left: 0; |
| 304 |
border-bottom: 0; |
| 305 |
} |
| 306 |
|
| 307 |
.form-table td { |
| 308 |
vertical-align: middle !important; |
| 309 |
} |
| 310 |
|
| 311 |
/* Categories */ |
| 312 |
.categories-load-more { |
| 313 |
display: block; |
| 314 |
|
| 315 |
background-color: #e6e6e6; |
| 316 |
border: 1px solid #c4c4c4; |
| 317 |
|
| 318 |
padding: 10px 15px; |
| 319 |
margin-top: 20px; |
| 320 |
|
| 321 |
font-size: 15px; |
| 322 |
text-align: center; |
| 323 |
cursor: pointer; |
| 324 |
|
| 325 |
color: #444444; |
| 326 |
|
| 327 |
text-decoration: none; |
| 328 |
} |
| 329 |
|
| 330 |
.categories-load-more:hover { |
| 331 |
color: #888888; |
| 332 |
} |
| 333 |
|
| 334 |
.page-categorie-styling { |
| 335 |
background: #FFFFFF; |
| 336 |
border-radius: 5px; |
| 337 |
margin-top: 20px; |
| 338 |
border: 1px solid #c4c4c4; |
| 339 |
border-spacing: 0; |
| 340 |
overflow: hidden; |
| 341 |
} |
| 342 |
|
| 343 |
.page-categorie-styling thead { |
| 344 |
background-color: #f1f1f1; |
| 345 |
} |
| 346 |
|
| 347 |
.page-categorie-styling thead td { |
| 348 |
border-bottom: 2px solid #dcdcdc; |
| 349 |
padding: 8px 11px !important; |
| 350 |
} |
| 351 |
|
| 352 |
.page-categorie-styling tr { |
| 353 |
border-bottom: 1px solid #333333; |
| 354 |
} |
| 355 |
|
| 356 |
.page-categorie-styling tr td { |
| 357 |
padding: 14px 11px; |
| 358 |
border-bottom: 1px solid #dcdcdc; |
| 359 |
} |
| 360 |
|
| 361 |
.page-categorie-styling .text-centered { |
| 362 |
text-align: center; |
| 363 |
} |
| 364 |
|
| 365 |
.page-categorie-styling .is-clickable { |
| 366 |
cursor: pointer; |
| 367 |
} |
| 368 |
|
| 369 |
/* FontAwesome searcher */ |
| 370 |
.fontawesome-searcher-clicker { |
| 371 |
display: inline-block; |
| 372 |
background-color: #ffffff; |
| 373 |
border: 1px solid #cccccc; |
| 374 |
color: #333333; |
| 375 |
padding: 6px 16px; |
| 376 |
text-decoration: none; |
| 377 |
} |
| 378 |
|
| 379 |
.fontawesome-searcher { |
| 380 |
position: absolute; |
| 381 |
left: 0; |
| 382 |
top: 0; |
| 383 |
background: #FFFFFF; |
| 384 |
box-shadow: 0px 0px 10px rgba(183, 183, 183, 0.18); |
| 385 |
min-width: 250px; |
| 386 |
border: 1px solid #e7e7e7; |
| 387 |
z-index: 999; |
| 388 |
} |
| 389 |
|
| 390 |
.fontawesome-searcher .fontawesome-searcher-searchbar { |
| 391 |
padding: 20px; |
| 392 |
text-align: center; |
| 393 |
} |
| 394 |
|
| 395 |
.fontawesome-searcher .fontawesome-searcher-searchbar input { |
| 396 |
border-radius: 50px; |
| 397 |
-moz-border-radius: 50px; |
| 398 |
-webkit-border-radius: 50px; |
| 399 |
padding: 7px 20px; |
| 400 |
font-weight: 200; |
| 401 |
outline: none; |
| 402 |
} |
| 403 |
|
| 404 |
.fontawesome-searcher .fontawesome-searcher-icons { |
| 405 |
background-color: #f5f5f5; |
| 406 |
|
| 407 |
border-top: 1px solid #e7e7e7; |
| 408 |
|
| 409 |
overflow: auto; |
| 410 |
max-height: 150px; |
| 411 |
} |
| 412 |
|
| 413 |
.fontawesome-searcher .fontawesome-searcher-icons table { |
| 414 |
width: 100%; |
| 415 |
} |
| 416 |
|
| 417 |
.fontawesome-searcher .fontawesome-searcher-icons table table td { |
| 418 |
border-bottom: 1px solid #e7e7e7; |
| 419 |
border-right: 1px solid #e7e7e7; |
| 420 |
border-left: 1px solid #ffffff; |
| 421 |
} |
| 422 |
|
| 423 |
.fontawesome-searcher .fontawesome-searcher-icons a { |
| 424 |
background-color: #f5f5f5; |
| 425 |
color: #464646; |
| 426 |
font-size: 16px; |
| 427 |
padding: 12px 0; |
| 428 |
text-decoration: none; |
| 429 |
display: block; |
| 430 |
text-align: center; |
| 431 |
outline: none; |
| 432 |
} |
| 433 |
|
| 434 |
.fontawesome-searcher .fontawesome-searcher-icons a:hover { |
| 435 |
background-color: #e7e7e7; |
| 436 |
} |
| 437 |
|
| 438 |
.fontawesome-searcher .no-matches-found { |
| 439 |
padding: 0 0 15px; |
| 440 |
text-align: center; |
| 441 |
font-style: italic; |
| 442 |
color: #8b8b8b; |
| 443 |
} |
| 444 |
|
| 445 |
/* Pro */ |
| 446 |
.color-buttonizer { |
| 447 |
color: #2a7688; |
| 448 |
text-transform: uppercase; |
| 449 |
} |
| 450 |
|
| 451 |
.color-buttonizer span { |
| 452 |
color: #ef8419; |
| 453 |
} |
| 454 |
|
| 455 |
.color-buttonizer-blue { |
| 456 |
color: #2a7688; |
| 457 |
} |
| 458 |
|
| 459 |
.color-buttonizer-orange { |
| 460 |
color: #ef8419; |
| 461 |
} |
| 462 |
|
| 463 |
.buttonizer-pro-checklist { |
| 464 |
font-size: 16px; |
| 465 |
line-height: 25px; |
| 466 |
font-weight: 400; |
| 467 |
} |
| 468 |
|
| 469 |
.buttonizer-pro-checklist .fa-check { |
| 470 |
margin-right: 10px; |
| 471 |
font-size: 17px; |
| 472 |
} |
| 473 |
|
| 474 |
.buttonizer-pro-feature { |
| 475 |
background: #2d7688; |
| 476 |
background: -moz-linear-gradient(-45deg, #2d7688 0%, #187287 50%, #187287 50%, #f0841a 51%, #e8832c 98%); |
| 477 |
background: -webkit-linear-gradient(-45deg, #2d7688 0%,#187287 50%,#187287 50%,#f0841a 51%,#e8832c 98%); |
| 478 |
background: linear-gradient(135deg, #2d7688 0%,#187287 50%,#187287 50%,#f0841a 51%,#e8832c 98%); |
| 479 |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d7688', endColorstr='#e8832c',GradientType=1 ); |
| 480 |
color: #FFFFFF; |
| 481 |
font-weight: 500; |
| 482 |
font-size: 13px; |
| 483 |
padding: 4px 20px; |
| 484 |
display: inline-block; |
| 485 |
border-radius: 4px; |
| 486 |
-moz-border-radius: 4px; |
| 487 |
-webkit-border-radius: 4px; |
| 488 |
margin-left: 10px; |
| 489 |
} |
| 490 |
|
| 491 |
.buttonizer-pro-text { |
| 492 |
border: 1px solid #eeeeee; |
| 493 |
color: #999999; |
| 494 |
padding: 20px 0; |
| 495 |
font-size: 16px; |
| 496 |
} |
| 497 |
|
| 498 |
.buttonizer-pro-text a { |
| 499 |
color: #999999; |
| 500 |
} |
| 501 |
|
| 502 |
.buttonizer-pro-text .fa-lock { |
| 503 |
margin-right: 10px; |
| 504 |
} |
| 505 |
|
| 506 |
/* */ |
| 507 |
.icon-or-image { |
| 508 |
|
| 509 |
} |
| 510 |
|
| 511 |
.icon-or-image .placeholder-choose { |
| 512 |
padding: 5px 5px 10px 5px; |
| 513 |
display: block; |
| 514 |
} |
| 515 |
|
| 516 |
.icon-or-image .placeholder-choose a { |
| 517 |
color: #147aae; |
| 518 |
text-decoration: none; |
| 519 |
|
| 520 |
} |
| 521 |
|
| 522 |
.icon-or-image .placeholder-choose a:hover { |
| 523 |
text-decoration: underline; |
| 524 |
} |
| 525 |
|
| 526 |
/* |
| 527 |
* Red button |
| 528 |
*/ |
| 529 |
.wp-core-ui .button-red { |
| 530 |
background: #ba0000; |
| 531 |
border-color: #aa0000 #990000 #990000; |
| 532 |
-webkit-box-shadow: 0 1px 0 #990000; |
| 533 |
box-shadow: 0 1px 0 #990000; |
| 534 |
color: #fff; |
| 535 |
text-decoration: none; |
| 536 |
text-shadow: 0 -1px 1px #990000, 1px 0 1px #990000, 0 1px 1px #990000, -1px 0 1px #990000; |
| 537 |
} |
| 538 |
|
| 539 |
.wp-core-ui .button-red:hover { |
| 540 |
background: #c20000 !important; |
| 541 |
border-color: #990000 !important; |
| 542 |
color: #fff; |
| 543 |
} |
| 544 |
|
| 545 |
.wp-core-ui .button-red:active, .wp-core-ui .button-red:focus { |
| 546 |
background: #aa0000 !important; |
| 547 |
border-color: #990000 !important; |
| 548 |
-webkit-box-shadow: inset 0 2px 0 #990000; |
| 549 |
box-shadow: inset 0 2px 0 #990000; |
| 550 |
vertical-align: top; |
| 551 |
color: #FFFFFF; |
| 552 |
} |
| 553 |
|
| 554 |
.time-table { |
| 555 |
max-width: 700px; |
| 556 |
} |
| 557 |
|
| 558 |
/* jQuery slider */ |
| 559 |
.ui-slider { |
| 560 |
position: relative; |
| 561 |
text-align: left; |
| 562 |
height: 4px; |
| 563 |
border: 1px solid rgba(46, 119, 137, 0.17); |
| 564 |
background-color: #e5e5e5; |
| 565 |
border-radius: 3px; |
| 566 |
-webkit-border-radius: 3px; |
| 567 |
-moz-border-radius: 3px; |
| 568 |
} |
| 569 |
|
| 570 |
.ui-slider.ui-slider-disabled { |
| 571 |
opacity: 0.5; |
| 572 |
} |
| 573 |
|
| 574 |
.ui-slider .ui-slider-handle { |
| 575 |
position: absolute; |
| 576 |
z-index: 2; |
| 577 |
width: 25px; |
| 578 |
height: 25px; |
| 579 |
cursor: default; |
| 580 |
-ms-touch-action: none; |
| 581 |
touch-action: none; |
| 582 |
|
| 583 |
border-radius: 100%; |
| 584 |
-webkit-border-radius: 100%; |
| 585 |
-moz-border-radius: 100%; |
| 586 |
|
| 587 |
margin-left: -8px; |
| 588 |
|
| 589 |
border: 1px solid #c5c5c5; |
| 590 |
background: #f6f6f6; |
| 591 |
font-weight: normal; |
| 592 |
color: #454545; |
| 593 |
|
| 594 |
top: -12px; |
| 595 |
} |
| 596 |
|
| 597 |
.ui-slider .ui-slider-range { |
| 598 |
position: absolute; |
| 599 |
z-index: 1; |
| 600 |
height: 4px; |
| 601 |
top: -1px; |
| 602 |
font-size: .7em; |
| 603 |
display: block; |
| 604 |
border: 1px solid rgba(48, 120, 138, 0.29); |
| 605 |
background: #ee8216; |
| 606 |
} |
| 607 |
|