| @@ -8,8 +8,183 @@ | ||
| 8 | 8 | font-weight: 400; |
| 9 | 9 | font-style: normal; |
| 10 | 10 | } |
| 11 | 11 | |
| 12 | +body.ays-poll-plugin-admin input[type=checkbox], | |
| 13 | +body.ays-poll-plugin-admin input[type=radio] { | |
| 14 | + accent-color: #005AE0; | |
| 15 | + background-color: #fff; | |
| 16 | + box-shadow: unset; | |
| 17 | + border: 1px solid #8c8f94; | |
| 18 | +} | |
| 19 | + | |
| 20 | +body.ays-poll-plugin-admin input[type=checkbox]:focus, | |
| 21 | +body.ays-poll-plugin-admin input[type=radio]:focus { | |
| 22 | + accent-color: #005AE0; | |
| 23 | + background-color: #fff; | |
| 24 | + border-color: #2271b1; | |
| 25 | + box-shadow: 0 0 0 1px #2271b1; | |
| 26 | + outline: 2px solid transparent; | |
| 27 | +} | |
| 28 | + | |
| 29 | +body.ays-poll-plugin-admin input[type=checkbox]:checked::before { | |
| 30 | + filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(6593%) hue-rotate(211deg) brightness(98%) contrast(103%); | |
| 31 | +} | |
| 32 | + | |
| 33 | +body.ays-poll-plugin-admin input[type=radio]:checked::before { | |
| 34 | + background-color: #005ae0; | |
| 35 | +} | |
| 36 | + | |
| 37 | +body.ays-poll-plugin-admin input[type="text"], | |
| 38 | +body.ays-poll-plugin-admin input[type="password"], | |
| 39 | +body.ays-poll-plugin-admin input[type="date"], | |
| 40 | +body.ays-poll-plugin-admin input[type="datetime"], | |
| 41 | +body.ays-poll-plugin-admin input[type="datetime-local"], | |
| 42 | +body.ays-poll-plugin-admin input[type="email"], | |
| 43 | +body.ays-poll-plugin-admin input[type="month"], | |
| 44 | +body.ays-poll-plugin-admin input[type="number"], | |
| 45 | +body.ays-poll-plugin-admin input[type="search"], | |
| 46 | +body.ays-poll-plugin-admin input[type="tel"], | |
| 47 | +body.ays-poll-plugin-admin input[type="time"], | |
| 48 | +body.ays-poll-plugin-admin input[type="url"], | |
| 49 | +body.ays-poll-plugin-admin input[type="week"] { | |
| 50 | + padding: 0 8px; | |
| 51 | + line-height: 2; | |
| 52 | + min-height: 30px; | |
| 53 | +} | |
| 54 | + | |
| 55 | +body.ays-poll-plugin-admin input[type="text"]:focus, | |
| 56 | +body.ays-poll-plugin-admin input[type="password"]:focus, | |
| 57 | +body.ays-poll-plugin-admin input[type="date"]:focus, | |
| 58 | +body.ays-poll-plugin-admin input[type="datetime"]:focus, | |
| 59 | +body.ays-poll-plugin-admin input[type="datetime-local"]:focus, | |
| 60 | +body.ays-poll-plugin-admin input[type="email"]:focus, | |
| 61 | +body.ays-poll-plugin-admin input[type="month"]:focus, | |
| 62 | +body.ays-poll-plugin-admin input[type="number"]:focus, | |
| 63 | +body.ays-poll-plugin-admin input[type="search"]:focus, | |
| 64 | +body.ays-poll-plugin-admin input[type="tel"]:focus, | |
| 65 | +body.ays-poll-plugin-admin input[type="time"]:focus, | |
| 66 | +body.ays-poll-plugin-admin input[type="url"]:focus, | |
| 67 | +body.ays-poll-plugin-admin input[type="week"]:focus { | |
| 68 | + border-color: #005ae0; | |
| 69 | + box-shadow: 0 0 0 1px #2271b1; | |
| 70 | + outline: transparent solid 2px; | |
| 71 | +} | |
| 72 | + | |
| 73 | +body.ays-poll-plugin-admin input[type=color]:focus, | |
| 74 | +body.ays-poll-plugin-admin input[type=date]:focus, | |
| 75 | +body.ays-poll-plugin-admin input[type=datetime-local]:focus, | |
| 76 | +body.ays-poll-plugin-admin input[type=datetime]:focus, | |
| 77 | +body.ays-poll-plugin-admin input[type=email]:focus, | |
| 78 | +body.ays-poll-plugin-admin input[type=month]:focus, | |
| 79 | +body.ays-poll-plugin-admin input[type=number]:focus, | |
| 80 | +body.ays-poll-plugin-admin input[type=password]:focus, | |
| 81 | +body.ays-poll-plugin-admin input[type=search]:focus, | |
| 82 | +body.ays-poll-plugin-admin input[type=tel]:focus, | |
| 83 | +body.ays-poll-plugin-admin input[type=text]:focus, | |
| 84 | +body.ays-poll-plugin-admin input[type=time]:focus, | |
| 85 | +body.ays-poll-plugin-admin input[type=url]:focus, | |
| 86 | +body.ays-poll-plugin-admin input[type=week]:focus, | |
| 87 | +body.ays-poll-plugin-admin select:focus, | |
| 88 | +body.ays-poll-plugin-admin textarea:focus { | |
| 89 | + border-color: #2271b1; | |
| 90 | + box-shadow: 0 0 0 1px #2271b1; | |
| 91 | +} | |
| 92 | + | |
| 93 | +body.ays-poll-plugin-admin input[type=search]:focus { | |
| 94 | + box-shadow: unset; | |
| 95 | +} | |
| 96 | + | |
| 97 | +body.ays-poll-plugin-admin .button, | |
| 98 | +body.ays-poll-plugin-admin .button-primary, | |
| 99 | +body.ays-poll-plugin-admin .button-secondary { | |
| 100 | + padding: 0 10px; | |
| 101 | + line-height: 2.15384615; | |
| 102 | + min-height: 30px; | |
| 103 | + font-weight: 400; | |
| 104 | +} | |
| 105 | + | |
| 106 | +body.ays-poll-plugin-admin .button.hover, | |
| 107 | +body.ays-poll-plugin-admin .button:hover { | |
| 108 | + background: #135e96; | |
| 109 | + border-color: #135e96; | |
| 110 | + color: #fff; | |
| 111 | +} | |
| 112 | + | |
| 113 | +body.ays-poll-plugin-admin .button.add_new_block_content, | |
| 114 | +body.ays-poll-plugin-admin .button.wp-picker-default, | |
| 115 | +body.ays-poll-plugin-admin .button.action, | |
| 116 | +body.ays-poll-plugin-admin #ays-button-apply.button, | |
| 117 | +body.ays-poll-plugin-admin .button.add-bg-image, | |
| 118 | +body.ays-poll-plugin-admin .button.add-logo-image, | |
| 119 | +body.ays-poll-plugin-admin .button.ays-top-menu-save-and-close, | |
| 120 | +body.ays-poll-plugin-admin .button.ays-bottom-menu-save-and-close, | |
| 121 | +body.ays-poll-plugin-admin .button.add-question-image, | |
| 122 | +body.ays-poll-plugin-admin .button.insert-media, | |
| 123 | +body.ays-poll-plugin-admin .button.action-button:not(.button-primary), | |
| 124 | +body.ays-poll-plugin-admin .button-secondary { | |
| 125 | + background: #f6f7f7; | |
| 126 | + border-color: #2271b1; | |
| 127 | + color: #2271b1; | |
| 128 | +} | |
| 129 | + | |
| 130 | +body.ays-poll-plugin-admin .button.add_new_block_content:focus, | |
| 131 | +body.ays-poll-plugin-admin .button.wp-picker-default:focus, | |
| 132 | +body.ays-poll-plugin-admin .button.action:focus, | |
| 133 | +body.ays-poll-plugin-admin #ays-button-apply.button:focus, | |
| 134 | +body.ays-poll-plugin-admin .button.add-bg-image:focus, | |
| 135 | +body.ays-poll-plugin-admin .button.add-logo-image:focus, | |
| 136 | +body.ays-poll-plugin-admin .button.ays-top-menu-save-and-close:focus, | |
| 137 | +body.ays-poll-plugin-admin .button.ays-bottom-menu-save-and-close:focus, | |
| 138 | +body.ays-poll-plugin-admin .button.add-question-image:focus, | |
| 139 | +body.ays-poll-plugin-admin .button.insert-media:focus, | |
| 140 | +body.ays-poll-plugin-admin .button.action-button:not(.button-primary):focus, | |
| 141 | +body.ays-poll-plugin-admin .button-secondary:focus, | |
| 142 | +body.ays-poll-plugin-admin .button.add_new_block_content:hover, | |
| 143 | +body.ays-poll-plugin-admin .button.wp-picker-default:hover, | |
| 144 | +body.ays-poll-plugin-admin .button.action:hover, | |
| 145 | +body.ays-poll-plugin-admin #ays-button-apply.button:hover, | |
| 146 | +body.ays-poll-plugin-admin .button.add-bg-image:hover, | |
| 147 | +body.ays-poll-plugin-admin .button.add-logo-image:hover, | |
| 148 | +body.ays-poll-plugin-admin .button.ays-top-menu-save-and-close:hover, | |
| 149 | +body.ays-poll-plugin-admin .button.ays-bottom-menu-save-and-close:hover, | |
| 150 | +body.ays-poll-plugin-admin .button.add-question-image:hover, | |
| 151 | +body.ays-poll-plugin-admin .button.insert-media:hover, | |
| 152 | +body.ays-poll-plugin-admin .button.action-button:not(.button-primary):hover, | |
| 153 | +body.ays-poll-plugin-admin .button-secondary:hover { | |
| 154 | + background: #f0f0f1; | |
| 155 | + border-color: #135e96; | |
| 156 | + color: #135e96; | |
| 157 | + box-shadow: 0 0 0 1px #3582c4; | |
| 158 | +} | |
| 159 | + | |
| 160 | +body.ays-poll-plugin-admin a:focus { | |
| 161 | + box-shadow: 0 0 0 1px #3582c4; | |
| 162 | +} | |
| 163 | + | |
| 164 | +body.ays-poll-plugin-admin .button:focus, | |
| 165 | +body.ays-poll-plugin-admin .button-primary:focus { | |
| 166 | + background: #135e96; | |
| 167 | + border-color: #135e96; | |
| 168 | + color: #fff; | |
| 169 | + box-shadow: 0 0 0 1px #3582c4,inset 0 0 0 1px #fff; | |
| 170 | +} | |
| 171 | + | |
| 172 | +body.ays-poll-plugin-admin .button-primary { | |
| 173 | + background: #2271b1; | |
| 174 | + border-color: #2271b1; | |
| 175 | +} | |
| 176 | + | |
| 177 | +body.ays-poll-plugin-admin select { | |
| 178 | + line-height: 2; | |
| 179 | + min-height: 30px; | |
| 180 | +} | |
| 181 | + | |
| 182 | +div#screen-meta-links { | |
| 183 | + position: relative; | |
| 184 | + z-index: 99; | |
| 185 | +} | |
| 186 | + | |
| 12 | 187 | #adminmenu a.toplevel_page_poll-maker-ays div.wp-menu-image img { |
| 13 | 188 | width: 28px; |
| 14 | 189 | padding-top: 2px; |
| 15 | 190 | } |
| @@ -17,8 +192,12 @@ | ||
| 17 | 192 | #adminmenu li.toplevel_page_poll-maker-ays ul.wp-submenu.wp-submenu-wrap li:last-child a { |
| 18 | 193 | color: #e14d43; |
| 19 | 194 | } |
| 20 | 195 | |
| 196 | +#toplevel_page_poll-maker-ays.wp-has-submenu .wp-first-item { | |
| 197 | + display: none !important; | |
| 198 | +} | |
| 199 | + | |
| 21 | 200 | .apm-badge { |
| 22 | 201 | position: relative; |
| 23 | 202 | top: -1px; |
| 24 | 203 | right: -3px; |
| @@ -159,11 +338,13 @@ | ||
| 159 | 338 | |
| 160 | 339 | body.toplevel_page_poll-maker-ays #wpfooter, |
| 161 | 340 | body.admin_page_poll-maker-ays-results-each #wpfooter, |
| 162 | 341 | body[class*="poll-maker"] #wpfooter { |
| 163 | - position: relative; | |
| 164 | 342 | height: 100px; |
| 165 | 343 | } |
| 344 | +body[class*="poll-maker"] #wpfooter { | |
| 345 | + position: static; | |
| 346 | +} | |
| 166 | 347 | /* Poll Footer Support box end */ |
| 167 | 348 | |
| 168 | 349 | /* Deactivate popup start */ |
| 169 | 350 | .swal2-popup.swal2-modal.\.ays-poll-deactivate-popup.swal2-show { |
| @@ -197,5 +378,224 @@ | ||
| 197 | 378 | background-color: #fff !important; |
| 198 | 379 | color: #3085d6 !important; |
| 199 | 380 | border: 1px solid #3085d6 !important; |
| 200 | 381 | } |
| 201 | -/* Deactivate popup end */ | |
| 382 | +/* Deactivate popup end */ | |
| 383 | + | |
| 384 | +/*! Poll Deactivate Feedback Popup | Start */ | |
| 385 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip, | |
| 386 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit { | |
| 387 | + font-size: 12px; | |
| 388 | + font-weight: 500; | |
| 389 | + line-height: 1.2; | |
| 390 | + padding: 8px 16px; | |
| 391 | + outline: none; | |
| 392 | + border: none; | |
| 393 | + border-radius: 3px; | |
| 394 | + background-color: #515962; | |
| 395 | + color: #ffffff; | |
| 396 | + transition: all 0.3s; | |
| 397 | +} | |
| 398 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip:hover, | |
| 399 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit:hover { | |
| 400 | + border: none; | |
| 401 | +} | |
| 402 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip:hover, | |
| 403 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit:hover, | |
| 404 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip:focus, | |
| 405 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit:focus { | |
| 406 | + background-color: rgb(57.9217877095, 63.6424581006, 70.0782122905); | |
| 407 | + color: #ffffff; | |
| 408 | +} | |
| 409 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip:active, | |
| 410 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit:active { | |
| 411 | + background-color: rgb(34.843575419, 38.2849162011, 42.156424581); | |
| 412 | +} | |
| 413 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip:not([disabled]), | |
| 414 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit:not([disabled]) { | |
| 415 | + cursor: pointer; | |
| 416 | +} | |
| 417 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip:disabled, | |
| 418 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit:disabled { | |
| 419 | + background-color: #d5d8dc; | |
| 420 | + color: #babfc5; | |
| 421 | +} | |
| 422 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip { | |
| 423 | + background: transparent; | |
| 424 | + color: #515962; | |
| 425 | +} | |
| 426 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip:hover, | |
| 427 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip:focus { | |
| 428 | + background: #f1f2f3; | |
| 429 | + color: #3f444b; | |
| 430 | +} | |
| 431 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-skip:disabled { | |
| 432 | + background: transparent; | |
| 433 | + color: #babfc5; | |
| 434 | +} | |
| 435 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit { | |
| 436 | + background-color: #fb8d5f; | |
| 437 | + color: #0c0d0e; | |
| 438 | +} | |
| 439 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit:hover, | |
| 440 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-submit:focus { | |
| 441 | + background-color: #f19b76; | |
| 442 | + color: #0c0d0e; | |
| 443 | +} | |
| 444 | +body.ays-poll-editor-active :is(.is-desktop-preview, .is-tablet-preview, .is-mobile-preview) :is(.editor-styles-wrapper, iframe[name="editor-canvas"]) { | |
| 445 | + height: auto !important; | |
| 446 | + padding: 0 !important; | |
| 447 | + flex: 0 !important; | |
| 448 | +} | |
| 449 | + | |
| 450 | +.ays-poll-dialog-widget-content { | |
| 451 | + background-color: #ffffff; | |
| 452 | + position: absolute; | |
| 453 | + border-radius: 3px; | |
| 454 | + box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2); | |
| 455 | + overflow: hidden; | |
| 456 | +} | |
| 457 | + | |
| 458 | +.ays-poll-dialog-message { | |
| 459 | + line-height: 1.5; | |
| 460 | + box-sizing: border-box; | |
| 461 | +} | |
| 462 | + | |
| 463 | +.ays-poll-dialog-type-lightbox { | |
| 464 | + position: fixed; | |
| 465 | + height: 100%; | |
| 466 | + width: 100%; | |
| 467 | + bottom: 0; | |
| 468 | + left: 0; | |
| 469 | + background-color: rgba(0, 0, 0, 0.8); | |
| 470 | + z-index: 9999; | |
| 471 | + -webkit-user-select: none; | |
| 472 | + -moz-user-select: none; | |
| 473 | + user-select: none; | |
| 474 | +} | |
| 475 | + | |
| 476 | +.e-button:not(:disabled):not(.disabled) { | |
| 477 | + cursor: pointer; | |
| 478 | +} | |
| 479 | +.e-button:not(:disabled):not(.disabled):active:focus, | |
| 480 | +.e-button:not(:disabled):not(.disabled).active:focus { | |
| 481 | + box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.4); | |
| 482 | +} | |
| 483 | + | |
| 484 | +#ays-poll-deactivate-feedback-modal { | |
| 485 | + color: #515962; | |
| 486 | + display: flex; | |
| 487 | + justify-content: center; | |
| 488 | + align-items: center; | |
| 489 | +} | |
| 490 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-widget-content { | |
| 491 | + width: 500px; | |
| 492 | + position: unset; | |
| 493 | + max-width: 95%; | |
| 494 | +} | |
| 495 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-header { | |
| 496 | + padding: 18px 15px; | |
| 497 | + box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); | |
| 498 | + text-align: start; | |
| 499 | +} | |
| 500 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-message { | |
| 501 | + padding: 30px; | |
| 502 | + padding-block-end: 0; | |
| 503 | + text-align: start; | |
| 504 | +} | |
| 505 | +#ays-poll-deactivate-feedback-modal .ays-poll-deactivate-feedback-dialog-input { | |
| 506 | + margin-block: 0; | |
| 507 | + margin-inline: 0 15px; | |
| 508 | + box-shadow: none; | |
| 509 | + margin-top: 6px; | |
| 510 | +} | |
| 511 | +#ays-poll-deactivate-feedback-modal .ays-poll-deactivate-feedback-dialog-input:not(:checked) ~ label .ays-poll-deactivate-feedback-sub-dialog-input-wrapper, | |
| 512 | +#ays-poll-deactivate-feedback-modal .ays-poll-deactivate-feedback-dialog-input:not(:checked) ~ label .ays-poll-feedback-text { | |
| 513 | + display: none; | |
| 514 | +} | |
| 515 | +#ays-poll-deactivate-feedback-modal .ays-poll-deactivate-feedback-dialog-label { | |
| 516 | + display: block; | |
| 517 | + font-size: 13px; | |
| 518 | + min-width: 220px; | |
| 519 | + cursor: pointer; | |
| 520 | +} | |
| 521 | +#ays-poll-deactivate-feedback-modal .ays-poll-feedback-text { | |
| 522 | + background-color: transparent; | |
| 523 | + color: #515962; | |
| 524 | + /*padding: 5px;*/ | |
| 525 | + box-shadow: none; | |
| 526 | + width: 100%; | |
| 527 | + margin: 0; | |
| 528 | + padding: 3px 15px; | |
| 529 | + font-size: 13px; | |
| 530 | +} | |
| 531 | + | |
| 532 | +#ays-poll-deactivate-feedback-modal .ays-poll-feedback-text.ays-poll-feedback-text-color { | |
| 533 | + color: #F59E0B; | |
| 534 | + padding: 0; | |
| 535 | + cursor: default; | |
| 536 | +} | |
| 537 | + | |
| 538 | +#ays-poll-deactivate-feedback-modal .ays-poll-dialog-buttons-wrapper { | |
| 539 | + display: flex; | |
| 540 | + justify-content: space-between; | |
| 541 | + padding: 20px 30px 30px; | |
| 542 | +} | |
| 543 | + | |
| 544 | +#ays-poll-deactivate-feedback-modal .ays-poll-deactivate-feedback-sub-dialog-input-wrapper { | |
| 545 | + margin-bottom: 5px; | |
| 546 | +} | |
| 547 | + | |
| 548 | +#ays-poll-deactivate-feedback-dialog-header { | |
| 549 | + display: flex; | |
| 550 | + justify-content: flex-start; | |
| 551 | + align-items: center; | |
| 552 | +} | |
| 553 | + | |
| 554 | +#ays-poll-deactivate-feedback-dialog-header img { | |
| 555 | + width: 20px; | |
| 556 | + height: 20px; | |
| 557 | +} | |
| 558 | + | |
| 559 | +#ays-poll-deactivate-feedback-dialog-header i { | |
| 560 | + font-size: 19px; | |
| 561 | +} | |
| 562 | +#ays-poll-deactivate-feedback-dialog-header-title { | |
| 563 | + font-size: 15px; | |
| 564 | + text-transform: uppercase; | |
| 565 | + font-weight: bold; | |
| 566 | + padding-inline-start: 5px; | |
| 567 | +} | |
| 568 | +#ays-poll-deactivate-feedback-dialog-form-caption { | |
| 569 | + font-weight: bold; | |
| 570 | + font-size: 15px; | |
| 571 | + line-height: 1.4; | |
| 572 | +} | |
| 573 | +#ays-poll-deactivate-feedback-dialog-form-body { | |
| 574 | + padding-block-start: 30px; | |
| 575 | + padding-block-end: 15px; | |
| 576 | +} | |
| 577 | + | |
| 578 | +.ays-poll-deactivate-feedback-dialog-input-wrapper { | |
| 579 | + display: flex; | |
| 580 | + align-items: flex-start; | |
| 581 | + line-height: 2; | |
| 582 | + overflow: hidden; | |
| 583 | +} | |
| 584 | +.ays-poll-checklist-open-icon { | |
| 585 | + position: absolute; | |
| 586 | + bottom: 36px; | |
| 587 | + right: 20px; | |
| 588 | + cursor: pointer; | |
| 589 | + | |
| 590 | +} | |
| 591 | +#wpfooter #footer-left { | |
| 592 | + float: none; | |
| 593 | + text-align: center; | |
| 594 | +} | |
| 595 | +@media screen and (max-width: 782px) { | |
| 596 | + div#ays-poll-deactivate-feedback-modal .ays-poll-deactivate-feedback-dialog-input { | |
| 597 | + min-width: 25px; | |
| 598 | + min-height: 25px; | |
| 599 | + } | |
| 600 | +} | |
| 601 | +/*! Poll Deactivate Feedback Popup | End */ | |