| @@ -1,14 +1,181 @@ | ||
| 1 | 1 | /** |
| 2 | 2 | * WP Reset |
| 3 | 3 | * https://wpreset.com/ |
| 4 | - * (c) WebFactory Ltd, 2017-2019 | |
| 4 | + * (c) WebFactory Ltd, 2017-2023 | |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -.tools_page_wp-reset #wp_reset_form input { | |
| 8 | - vertical-align: middle; | |
| 7 | +body.tools_page_wp-reset { | |
| 8 | + overflow-y: scroll; | |
| 9 | 9 | } |
| 10 | 10 | |
| 11 | +.tools_page_wp-reset #wpcontent, | |
| 12 | +.tools_page_wp-reset .auto-fold #wpcontent { | |
| 13 | + padding-left: 0; | |
| 14 | +} | |
| 15 | + | |
| 16 | +.tools_page_wp-reset .wrap { | |
| 17 | + margin: 0; | |
| 18 | + background: #f9fbfd; | |
| 19 | + min-height: calc(100vh - 100px); | |
| 20 | + font-size: 14px; | |
| 21 | + padding: 0; | |
| 22 | +} | |
| 23 | + | |
| 24 | +.tools_page_wp-reset button.loading, | |
| 25 | +.tools_page_wp-reset a.loading { | |
| 26 | + pointer-events: none; | |
| 27 | + cursor: wait !important; | |
| 28 | + opacity: 0.6; | |
| 29 | +} | |
| 30 | + | |
| 31 | +.tools_page_wp-reset #loading-tabs { | |
| 32 | + padding: 80px 0 0 450px; | |
| 33 | +} | |
| 34 | + | |
| 35 | +.tools_page_wp-reset #loading-tabs img { | |
| 36 | + width: 100px; | |
| 37 | + height: auto; | |
| 38 | + opacity: 0.4; | |
| 39 | +} | |
| 40 | + | |
| 41 | +.tools_page_wp-reset .mb0 { | |
| 42 | + margin-bottom: 0; | |
| 43 | +} | |
| 44 | + | |
| 45 | +#wpbody-content { | |
| 46 | + background: #f9fbfd; | |
| 47 | +} | |
| 48 | + | |
| 49 | +.wpr-container { | |
| 50 | + margin: 0 20px; | |
| 51 | + max-width: 100%; | |
| 52 | + width: 910px; | |
| 53 | +} | |
| 54 | + | |
| 55 | +.tools_page_wp-reset header { | |
| 56 | + padding: 20px 10px; | |
| 57 | + background: #f9fbfd; | |
| 58 | +} | |
| 59 | + | |
| 60 | +.tools_page_wp-reset nav { | |
| 61 | + background: #ffffff; | |
| 62 | + padding: 0 20px; | |
| 63 | + margin: 0 20px; | |
| 64 | + border: none; | |
| 65 | + max-width: 100%; | |
| 66 | + width: 910px; | |
| 67 | + box-sizing: border-box; | |
| 68 | +} | |
| 69 | + | |
| 70 | +#wpr-content { | |
| 71 | + padding: 20px; | |
| 72 | + background: white; | |
| 73 | +} | |
| 74 | + | |
| 75 | +#wpfooter { | |
| 76 | + padding: 20px; | |
| 77 | + border-top: 1px solid #e5e5e5; | |
| 78 | + background-color: #ffffff; | |
| 79 | +} | |
| 80 | + | |
| 81 | +#wpfooter a { | |
| 82 | + text-decoration: none; | |
| 83 | +} | |
| 84 | + | |
| 85 | +#wpfooter span { | |
| 86 | + color: #ffb900; | |
| 87 | +} | |
| 88 | + | |
| 89 | +.tooltipster-sidetip.tooltipster-punk.tooltipster-wpr .tooltipster-box { | |
| 90 | + border-radius: 5px; | |
| 91 | + border: none; | |
| 92 | + border-bottom: 3px solid #5d5d5d; | |
| 93 | + background: #5d5d5d; | |
| 94 | +} | |
| 95 | + | |
| 96 | +.tooltipster-sidetip.tooltipster-punk.tooltipster-wpr.tooltipster-top .tooltipster-arrow-border { | |
| 97 | + border-top-color: #5d5d5d; | |
| 98 | +} | |
| 99 | + | |
| 100 | +.tools_page_wp-reset .dropdown { | |
| 101 | + position: relative; | |
| 102 | + display: inline-block; | |
| 103 | + margin-right: 10px; | |
| 104 | +} | |
| 105 | + | |
| 106 | +.tools_page_wp-reset .button.dropdown-toggle::after { | |
| 107 | + content: '\f140'; | |
| 108 | + font-family: dashicons; | |
| 109 | + display: inline-block; | |
| 110 | + line-height: 1; | |
| 111 | + font-weight: 400; | |
| 112 | + font-style: normal; | |
| 113 | + text-decoration: inherit; | |
| 114 | + text-transform: none; | |
| 115 | + text-rendering: auto; | |
| 116 | + -webkit-font-smoothing: antialiased; | |
| 117 | + -moz-osx-font-smoothing: grayscale; | |
| 118 | + width: 20px; | |
| 119 | + height: 20px; | |
| 120 | + font-size: 20px; | |
| 121 | + vertical-align: text-top; | |
| 122 | + text-align: center; | |
| 123 | +} | |
| 124 | + | |
| 125 | +.tools_page_wp-reset .dropdown.dropdown-right .dropdown-menu { | |
| 126 | + left: 0; | |
| 127 | + right: auto; | |
| 128 | +} | |
| 129 | + | |
| 130 | +.tools_page_wp-reset .dropdown .dropdown-menu { | |
| 131 | + position: absolute; | |
| 132 | + top: 100%; | |
| 133 | + right: 0; | |
| 134 | + z-index: 1000; | |
| 135 | + display: none; | |
| 136 | + float: left; | |
| 137 | + min-width: 10rem; | |
| 138 | + padding: 0.5rem 0; | |
| 139 | + margin: 0; | |
| 140 | + color: #212529; | |
| 141 | + text-align: left; | |
| 142 | + list-style: none; | |
| 143 | + background-color: #fff; | |
| 144 | + background-clip: padding-box; | |
| 145 | + border: 1px solid rgba(0, 0, 0, 0.15); | |
| 146 | +} | |
| 147 | + | |
| 148 | +.tools_page_wp-reset .dropdown .dropdown-menu.show { | |
| 149 | + display: block; | |
| 150 | +} | |
| 151 | + | |
| 152 | +.tools_page_wp-reset .dropdown-menu .dropdown-item { | |
| 153 | + display: block; | |
| 154 | + width: 100%; | |
| 155 | + padding: 0.25rem 1.5rem; | |
| 156 | + clear: both; | |
| 157 | + color: #212529; | |
| 158 | + text-align: inherit; | |
| 159 | + white-space: nowrap; | |
| 160 | + background-color: transparent; | |
| 161 | + border: 0; | |
| 162 | + text-decoration: none; | |
| 163 | + box-sizing: border-box; | |
| 164 | +} | |
| 165 | + | |
| 166 | +.tools_page_wp-reset .dropdown-menu .dropdown-item:focus, | |
| 167 | +.tools_page_wp-reset .dropdown-item:hover { | |
| 168 | + color: #16181b; | |
| 169 | + text-decoration: none; | |
| 170 | + background-color: #f8f9fa; | |
| 171 | +} | |
| 172 | + | |
| 173 | +.tools_page_wp-reset #wp_reset_confirm, | |
| 174 | +.tools_page_wp-reset #nuclear_reset_confirm { | |
| 175 | + vertical-align: top; | |
| 176 | +} | |
| 177 | + | |
| 11 | 178 | .tools_page_wp-reset h1 span { |
| 12 | 179 | font-size: 13px; |
| 13 | 180 | vertical-align: super; |
| 14 | 181 | font-style: italic; |
| @@ -17,8 +184,26 @@ | ||
| 17 | 184 | .tools_page_wp-reset .textcenter { |
| 18 | 185 | text-align: center; |
| 19 | 186 | } |
| 20 | 187 | |
| 188 | +.tools_page_wp-reset .half { | |
| 189 | + width: 50%; | |
| 190 | + display: inline-block; | |
| 191 | + vertical-align: top; | |
| 192 | +} | |
| 193 | + | |
| 194 | +.tools_page_wp-reset .third { | |
| 195 | + width: 32.9%; | |
| 196 | + display: inline-block; | |
| 197 | + vertical-align: top; | |
| 198 | +} | |
| 199 | + | |
| 200 | +.tools_page_wp-reset .thirdx2 { | |
| 201 | + width: 65.8%; | |
| 202 | + display: inline-block; | |
| 203 | + vertical-align: top; | |
| 204 | +} | |
| 205 | + | |
| 21 | 206 | .tools_page_wp-reset .button.disabled { |
| 22 | 207 | pointer-events: none; |
| 23 | 208 | cursor: not-allowed; |
| 24 | 209 | } |
| @@ -28,16 +213,38 @@ | ||
| 28 | 213 | .tools_page_wp-reset.wp-core-ui .button-secondary { |
| 29 | 214 | border-radius: 0; |
| 30 | 215 | } |
| 31 | 216 | |
| 217 | +.tools_page_wp-reset .button-secondary:focus, | |
| 218 | +.tools_page_wp-reset .button-secondary:hover, | |
| 219 | +.tools_page_wp-reset .button.focus, | |
| 220 | +.tools_page_wp-reset .button.hover, | |
| 221 | +.tools_page_wp-reset .button:focus, | |
| 222 | +.tools_page_wp-reset .button:hover { | |
| 223 | + background: #fafafa; | |
| 224 | + border-color: #999; | |
| 225 | + color: #23282d; | |
| 226 | +} | |
| 227 | + | |
| 228 | +.tools_page_wp-reset .button:not(.button-primary):hover { | |
| 229 | + background: #f1f1f1; | |
| 230 | +} | |
| 231 | +.tools_page_wp-reset .button:not(.button-primary) { | |
| 232 | + background: #ffffff; | |
| 233 | +} | |
| 234 | + | |
| 235 | +.tools_page_wp-reset input { | |
| 236 | + border-radius: 0; | |
| 237 | +} | |
| 238 | + | |
| 32 | 239 | .tools_page_wp-reset .plain-list { |
| 33 | - margin-top: 5px; | |
| 240 | + margin-top: 10px; | |
| 34 | 241 | list-style-type: circle; |
| 35 | 242 | list-style-position: inside; |
| 36 | 243 | } |
| 37 | 244 | |
| 38 | 245 | .tools_page_wp-reset .plain-list li { |
| 39 | - text-indent: -18px; | |
| 246 | + text-indent: -20px; | |
| 40 | 247 | padding-left: 23px; |
| 41 | 248 | line-height: 23px; |
| 42 | 249 | margin: 0; |
| 43 | 250 | } |
| @@ -64,9 +271,8 @@ | ||
| 64 | 271 | |
| 65 | 272 | .tools_page_wp-reset .button { |
| 66 | 273 | box-shadow: none; |
| 67 | 274 | text-shadow: none; |
| 68 | - margin-top: 1em; | |
| 69 | 275 | } |
| 70 | 276 | |
| 71 | 277 | .tools_page_wp-reset .swal2-container { |
| 72 | 278 | z-index: 99999; |
| @@ -71,14 +277,25 @@ | ||
| 71 | 277 | .tools_page_wp-reset .swal2-container { |
| 72 | 278 | z-index: 99999; |
| 73 | 279 | } |
| 74 | 280 | |
| 281 | +.tools_page_wp-reset .swal2-timer-progress-bar { | |
| 282 | + height: 0.2em; | |
| 283 | + background: #dd3036; | |
| 284 | +} | |
| 285 | + | |
| 286 | +.tools_page_wp-reset .swal2-container .swal2-popup .swal2-actions { | |
| 287 | + margin: 2em auto 0; | |
| 288 | +} | |
| 289 | + | |
| 75 | 290 | .tools_page_wp-reset .swal2-container.swal2-shown { |
| 76 | 291 | background-color: rgba(0, 0, 0, 0.6); |
| 77 | 292 | } |
| 78 | 293 | |
| 79 | 294 | .tools_page_wp-reset .swal2-popup .swal2-title { |
| 80 | - line-height: 1; | |
| 295 | + line-height: 1.1; | |
| 296 | + font-weight: 700; | |
| 297 | + display: block !important; | |
| 81 | 298 | } |
| 82 | 299 | |
| 83 | 300 | .tools_page_wp-reset code { |
| 84 | 301 | white-space: nowrap; |
| @@ -88,12 +305,31 @@ | ||
| 88 | 305 | line-height: 1.7; |
| 89 | 306 | font-size: 14px; |
| 90 | 307 | } |
| 91 | 308 | |
| 92 | -.tools_page_wp-reset .button-delete:hover { | |
| 309 | +.wp-core-ui .button.focus, | |
| 310 | +.wp-core-ui .button:focus, | |
| 311 | +.wp-core-ui .button-secondary:focus { | |
| 312 | + border-color: #999; | |
| 313 | + box-shadow: none; | |
| 314 | +} | |
| 315 | + | |
| 316 | +.tools_page_wp-reset p > .button-delete { | |
| 317 | + margin-right: 10px; | |
| 318 | +} | |
| 319 | + | |
| 320 | +.tools_page_wp-reset .button-delete { | |
| 93 | 321 | color: #cc2f2f; |
| 322 | + border-color: #cc2f2f; | |
| 323 | + background-color: #ffffff; | |
| 94 | 324 | } |
| 95 | 325 | |
| 326 | +.tools_page_wp-reset .button-delete:hover, | |
| 327 | +.tools_page_wp-reset .button-delete:focus { | |
| 328 | + color: #cc2f2f; | |
| 329 | + border-color: #cc2f2f; | |
| 330 | +} | |
| 331 | + | |
| 96 | 332 | .tools_page_wp-reset .rotating { |
| 97 | 333 | -webkit-animation: spin 1.5s linear infinite; |
| 98 | 334 | -moz-animation: spin 1.5s linear infinite; |
| 99 | 335 | animation: spin 1.5s linear infinite; |
| @@ -98,68 +334,103 @@ | ||
| 98 | 334 | -moz-animation: spin 1.5s linear infinite; |
| 99 | 335 | animation: spin 1.5s linear infinite; |
| 100 | 336 | } |
| 101 | 337 | |
| 102 | -.tools_page_wp-reset .card.notice-wrapper { | |
| 103 | - max-width: 600px; | |
| 338 | +.notice-wrapper { | |
| 339 | + margin-top: 35px; | |
| 104 | 340 | } |
| 105 | 341 | |
| 106 | 342 | .tools_page_wp-reset .notice-error { |
| 107 | 343 | border-top-color: #dd3036; |
| 344 | + border-top-width: 3px; | |
| 108 | 345 | } |
| 109 | 346 | |
| 110 | 347 | .tools_page_wp-reset .notice-info { |
| 111 | 348 | border-top-color: #0085ba; |
| 349 | + border-top-width: 3px; | |
| 112 | 350 | } |
| 113 | 351 | |
| 114 | -.tools_page_wp-reset .toggle-card { | |
| 115 | - position: absolute; | |
| 116 | - right: 1em; | |
| 117 | - top: 2.2em; | |
| 352 | +.tools_page_wp-reset .card-header-right { | |
| 353 | + height: 100%; | |
| 354 | + float: right; | |
| 355 | +} | |
| 356 | + | |
| 357 | +.tools_page_wp-reset .card-header-right .button { | |
| 358 | + margin: -5px 0 0 0; | |
| 359 | +} | |
| 360 | + | |
| 361 | +.tools_page_wp-reset .card-header-right a:not(.button) { | |
| 118 | 362 | text-decoration: none; |
| 363 | + color: #444; | |
| 364 | + margin-left: 5px; | |
| 119 | 365 | } |
| 120 | 366 | |
| 367 | +.tools_page_wp-reset .card-header-right a:hover:not(.button) { | |
| 368 | + color: #00a0d2; | |
| 369 | +} | |
| 370 | + | |
| 121 | 371 | .tools_page_wp-reset .card { |
| 122 | - padding: 1em 1em 1em 1em; | |
| 123 | - max-width: 560px; | |
| 372 | + padding: 0 25px 20px 25px; | |
| 373 | + max-width: 100%; | |
| 374 | + width: 100%; | |
| 375 | + margin: 0 0 35px 0; | |
| 124 | 376 | } |
| 125 | 377 | |
| 126 | -.tools_page_wp-reset .card.collapsed p, | |
| 127 | -.tools_page_wp-reset .card.collapsed b, | |
| 128 | -.tools_page_wp-reset .card.collapsed ul { | |
| 129 | - display: none; | |
| 378 | +.tools_page_wp-reset .card.pro { | |
| 379 | + border-left: 1px solid #dd3036; | |
| 130 | 380 | } |
| 131 | 381 | |
| 382 | +.card h4 { | |
| 383 | + border-bottom: 1px solid #e5e5e5; | |
| 384 | + margin: 0 -25px; | |
| 385 | + padding: 15px 25px; | |
| 386 | + background-color: #fcfcfc; | |
| 387 | +} | |
| 388 | + | |
| 389 | +.tools_page_wp-reset .card.collapsed { | |
| 390 | + padding-bottom: 0; | |
| 391 | +} | |
| 392 | + | |
| 393 | +.tools_page_wp-reset .card.collapsed h4 { | |
| 394 | + border: none; | |
| 395 | +} | |
| 396 | + | |
| 132 | 397 | .tools_page_wp-reset .swal2-popup { |
| 133 | 398 | border-radius: 0; |
| 134 | 399 | } |
| 135 | 400 | |
| 136 | -.tools_page_wp-reset .create-new-snapshot-corner { | |
| 137 | - position: absolute; | |
| 138 | - top: 2em; | |
| 139 | - right: 2em; | |
| 140 | - margin: 0; | |
| 141 | - box-shadow: none; | |
| 142 | -} | |
| 143 | - | |
| 144 | 401 | .tools_page_wp-reset table { |
| 145 | - width: calc(100% + 4em); | |
| 402 | + width: 100%; | |
| 146 | 403 | border-spacing: 0; |
| 147 | 404 | border-collapse: separate; |
| 148 | - margin: 0 0 0 -2em; | |
| 405 | + margin: 1em 0; | |
| 149 | 406 | } |
| 150 | 407 | |
| 408 | +.tools_page_wp-reset #reset-details td, | |
| 409 | +.tools_page_wp-reset #reset-details th { | |
| 410 | + padding: 10px 10px; | |
| 411 | + text-align: center; | |
| 412 | +} | |
| 413 | + | |
| 414 | +.tools_page_wp-reset #reset-details td:first-child { | |
| 415 | + text-align: left; | |
| 416 | +} | |
| 417 | + | |
| 151 | 418 | .tools_page_wp-reset table td { |
| 152 | 419 | text-align: left; |
| 153 | - padding: 5px; | |
| 420 | + padding: 20px 10px; | |
| 421 | + border-bottom: thin solid #999; | |
| 154 | 422 | } |
| 155 | 423 | |
| 156 | -.tools_page_wp-reset table tr:nth-child(even) td { | |
| 424 | +.tools_page_wp-reset table tr:hover td { | |
| 157 | 425 | background-color: #f9f9f9; |
| 158 | 426 | } |
| 159 | 427 | |
| 160 | -.tools_page_wp-reset table .ss-actions { | |
| 161 | - width: 55px; | |
| 428 | +.tools_page_wp-reset table .ss-actions, | |
| 429 | +.tools_page_wp-reset table .ss-size { | |
| 430 | + text-align: center; | |
| 431 | + white-space: nowrap; | |
| 432 | + width: 70px; | |
| 162 | 433 | } |
| 163 | 434 | |
| 164 | 435 | .tools_page_wp-reset table th { |
| 165 | 436 | text-align: left; |
| @@ -166,11 +437,24 @@ | ||
| 166 | 437 | border-bottom: thin solid #444444; |
| 167 | 438 | padding: 5px; |
| 168 | 439 | } |
| 169 | 440 | |
| 441 | +.tools_page_wp-reset #reset-details tfoot th { | |
| 442 | + border-top: thin solid #444444; | |
| 443 | + border-bottom: none; | |
| 444 | +} | |
| 445 | + | |
| 446 | +.tools_page_wp-reset #reset-details tbody tr:last-child td { | |
| 447 | + border-bottom: none; | |
| 448 | +} | |
| 449 | + | |
| 450 | +.tools_page_wp-reset #reset-details th { | |
| 451 | + vertical-align: top; | |
| 452 | +} | |
| 453 | + | |
| 170 | 454 | .tools_page_wp-reset table .ss-action { |
| 171 | 455 | text-decoration: none; |
| 172 | - margin: 0 7px 5px 0; | |
| 456 | + margin: 5px 10px 5px 0; | |
| 173 | 457 | display: inline-block; |
| 174 | 458 | } |
| 175 | 459 | |
| 176 | 460 | .tools_page_wp-reset table .delete-snapshot { |
| @@ -256,9 +540,9 @@ | ||
| 256 | 540 | background-color: rgba(9, 255, 0, 0.3); |
| 257 | 541 | } |
| 258 | 542 | |
| 259 | 543 | .wpr-table-container table.table_diff tr td { |
| 260 | - width: auto; | |
| 544 | + width: 45%; | |
| 261 | 545 | border-left: none; |
| 262 | 546 | word-break: break-all; |
| 263 | 547 | font-size: 14px; |
| 264 | 548 | font-family: monospace; |
| @@ -291,9 +575,9 @@ | ||
| 291 | 575 | max-width: 100%; |
| 292 | 576 | position: relative; |
| 293 | 577 | padding: 0px; |
| 294 | 578 | zoom: 1; |
| 295 | - margin-top: 20px; | |
| 579 | + margin: 0; | |
| 296 | 580 | } |
| 297 | 581 | |
| 298 | 582 | .tools_page_wp-reset .ui-tabs .ui-tabs-nav { |
| 299 | 583 | margin: 0; |
| @@ -312,18 +596,12 @@ | ||
| 312 | 596 | .tools_page_wp-reset .ui-tabs .ui-tabs-nav li a { |
| 313 | 597 | text-decoration: none; |
| 314 | 598 | } |
| 315 | 599 | |
| 316 | -.tools_page_wp-reset .ui-tabs .ui-tabs-nav li.ui-tabs-selected { | |
| 317 | - margin-bottom: 0; | |
| 318 | - border-bottom: 1px solid #f1f1f1 !important; | |
| 319 | -} | |
| 320 | - | |
| 321 | 600 | .tools_page_wp-reset ul.ui-tabs-nav.wpr-main-tab li.ui-state-active { |
| 322 | - border-top: 3px solid #666666; | |
| 323 | - background: #ffffff; | |
| 324 | - transition: all 0.4s ease-out; | |
| 325 | - border-bottom: 1px solid #fff; | |
| 601 | + border-bottom: 2px solid #dd3036; | |
| 602 | + background: transparent; | |
| 603 | + _transition: all 0.4s ease-out; | |
| 326 | 604 | } |
| 327 | 605 | |
| 328 | 606 | .tools_page_wp-reset .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, |
| 329 | 607 | .tools_page_wp-reset .ui-tabs .ui-tabs-nav li.ui-state-disabled a, |
| @@ -336,15 +614,11 @@ | ||
| 336 | 614 | cursor: pointer; |
| 337 | 615 | } |
| 338 | 616 | |
| 339 | 617 | .tools_page_wp-reset .ui-tabs .ui-tabs-panel { |
| 340 | - display: inline-block; | |
| 618 | + display: block; | |
| 341 | 619 | border: none; |
| 342 | - padding: 20px; | |
| 343 | - background: #ffffff; | |
| 344 | 620 | overflow: visible; |
| 345 | - min-width: 520px; | |
| 346 | - border-top: 1px solid #e5e5e5; | |
| 347 | 621 | } |
| 348 | 622 | |
| 349 | 623 | .tools_page_wp-reset .ui-tabs .ui-tabs-hide { |
| 350 | 624 | display: none !important; |
| @@ -353,10 +627,10 @@ | ||
| 353 | 627 | .tools_page_wp-reset .ui-tabs .ui-tabs-nav li a { |
| 354 | 628 | font-size: 14px; |
| 355 | 629 | font-weight: 600; |
| 356 | 630 | line-height: 32px; |
| 357 | - color: #aaaaaa; | |
| 358 | - padding: 5px 10px; | |
| 631 | + color: #616161; | |
| 632 | + padding: 5px 0; | |
| 359 | 633 | display: block; |
| 360 | 634 | letter-spacing: 1px; |
| 361 | 635 | } |
| 362 | 636 | |
| @@ -379,23 +653,22 @@ | ||
| 379 | 653 | color: #aaaaaa; |
| 380 | 654 | display: inline-block; |
| 381 | 655 | font-size: 12px; |
| 382 | 656 | line-height: 16px; |
| 383 | - margin: 0px 5px 0px 5px; | |
| 657 | + margin: 0px 20px 0px 5px; | |
| 384 | 658 | text-decoration: none; |
| 385 | 659 | text-shadow: none; |
| 386 | - background: rgba(255, 255, 255, 0.7); | |
| 387 | 660 | padding: 0; |
| 388 | 661 | text-align: center; |
| 389 | - letter-spacing: 0.5px; | |
| 390 | - min-width: 100px; | |
| 391 | - border-top: 3px solid transparent; | |
| 392 | - border-bottom: 1px solid #e5e5e5; | |
| 662 | + border-bottom: 2px solid transparent; | |
| 393 | 663 | } |
| 394 | 664 | |
| 395 | -@media screen and (max-width: 782px) { | |
| 665 | +@media screen and (max-width: 880px) { | |
| 666 | + .tools_page_wp-reset .ui-tabs .ui-tabs-nav { | |
| 667 | + padding: 0 25px; | |
| 668 | + } | |
| 396 | 669 | .tools_page_wp-reset .ui-tabs ul.ui-tabs-nav li { |
| 397 | - min-width: inherit; | |
| 670 | + margin: 0px 10px 0px 5px; | |
| 398 | 671 | } |
| 399 | 672 | } |
| 400 | 673 | |
| 401 | 674 | .tools_page_wp-reset .ui-tabs ul.ui-tabs-nav li .label { |
| @@ -410,8 +683,9 @@ | ||
| 410 | 683 | .tools_page_wp-reset ul.ui-tabs-nav.wpr-main-tab { |
| 411 | 684 | padding-bottom: 0; |
| 412 | 685 | width: 100%; |
| 413 | 686 | box-sizing: border-box; |
| 687 | + margin-left: -20px; | |
| 414 | 688 | } |
| 415 | 689 | |
| 416 | 690 | .tools_page_wp-reset .ui-state-hover a, |
| 417 | 691 | .tools_page_wp-reset .ui-state-active a, |
| @@ -421,9 +695,9 @@ | ||
| 421 | 695 | } |
| 422 | 696 | |
| 423 | 697 | .tools_page_wp-reset .ui-tabs ul.ui-tabs-nav li.ui-state-hover { |
| 424 | 698 | background-color: #ffffff !important; |
| 425 | - border-bottom: 1px solid #fff; | |
| 699 | + border-bottom: 2px solid #dd3036; | |
| 426 | 700 | } |
| 427 | 701 | |
| 428 | 702 | .tools_page_wp-reset .ui-tabs-nav a:focus { |
| 429 | 703 | box-shadow: none; |
| @@ -522,152 +796,517 @@ | ||
| 522 | 796 | } |
| 523 | 797 | |
| 524 | 798 | /* diff */ |
| 525 | 799 | |
| 526 | -/* survey */ | |
| 800 | +.pro-feature { | |
| 801 | + font-weight: normal; | |
| 802 | + font-variant: small-caps; | |
| 803 | + font-style: italic; | |
| 804 | + color: inherit; | |
| 805 | + text-decoration: none; | |
| 806 | +} | |
| 527 | 807 | |
| 528 | -.ui-widget-overlay { | |
| 529 | - opacity: 0.85; | |
| 808 | +.pro-feature.pro-feature-text { | |
| 809 | + font-weight: 700; | |
| 810 | + font-style: normal; | |
| 530 | 811 | } |
| 531 | 812 | |
| 532 | -.ui-dialog { | |
| 533 | - z-index: 9998 !important; | |
| 813 | +.pro-feature:hover { | |
| 814 | + text-decoration: underline; | |
| 815 | + cursor: pointer; | |
| 816 | + color: inherit; | |
| 534 | 817 | } |
| 535 | 818 | |
| 536 | -.survey-dialog .ui-dialog-titlebar { | |
| 537 | - text-align: center; | |
| 538 | - font-weight: bold; | |
| 819 | +.dropdown-item .pro-feature:hover { | |
| 820 | + text-decoration: none; | |
| 539 | 821 | } |
| 540 | 822 | |
| 541 | -.survey-dialog .ui-dialog-titlebar-close { | |
| 542 | - display: none; | |
| 823 | +a.button .pro-feature:hover { | |
| 824 | + text-decoration: inherit; | |
| 825 | + cursor: inherit; | |
| 826 | + color: inherit; | |
| 543 | 827 | } |
| 544 | 828 | |
| 545 | -.survey-dialog .ui-dialog-content { | |
| 546 | - padding: 20px 25px; | |
| 547 | - font-size: 15px; | |
| 829 | +th .pro-feature { | |
| 830 | + display: inline-block; | |
| 548 | 831 | } |
| 549 | 832 | |
| 550 | -.wpr-dialog b { | |
| 551 | - font-weight: bold; | |
| 833 | +li .pro-feature { | |
| 834 | + white-space: nowrap; | |
| 552 | 835 | } |
| 553 | 836 | |
| 554 | -.wpr-dialog .footer { | |
| 555 | - margin: 20px 0 0 0; | |
| 556 | - text-align: center; | |
| 837 | +.pro-feature .pro, | |
| 838 | +.pro-feature.pro-feature-text span { | |
| 839 | + font-weight: 700; | |
| 840 | + color: #dd3036; | |
| 557 | 841 | } |
| 558 | 842 | |
| 559 | -.wpr-dialog .footer #emailme { | |
| 560 | - margin: 0 5px -3px 0; | |
| 843 | +#pricing-table tr.pricing td { | |
| 844 | + padding: 20px 10px; | |
| 845 | + line-height: 1.5; | |
| 561 | 846 | } |
| 562 | 847 | |
| 563 | -.wpr-dialog .footer .button-primary { | |
| 564 | - font-size: 15px; | |
| 848 | +#pricing-table tr td:nth-child(3), | |
| 849 | +#pricing-table tr th:nth-child(3) { | |
| 850 | + background-color: #f9f9f9; | |
| 565 | 851 | } |
| 566 | 852 | |
| 567 | -.wpr-dialog .footer .dismiss-survey { | |
| 853 | +#pricing-table tr.pricing td del { | |
| 854 | + text-decoration-color: #dd3036; | |
| 855 | +} | |
| 856 | + | |
| 857 | +#pricing-table tr.pricing td b { | |
| 858 | + font-weight: 900; | |
| 859 | +} | |
| 860 | + | |
| 861 | +#tab-pro label { | |
| 862 | + vertical-align: inherit; | |
| 863 | + font-weight: 500; | |
| 864 | + min-width: 95px; | |
| 568 | 865 | display: inline-block; |
| 569 | - margin-left: 10px; | |
| 570 | - vertical-align: bottom; | |
| 866 | + padding: 2px 0; | |
| 571 | 867 | } |
| 572 | 868 | |
| 573 | -.wpr-dialog .ui-dialog-content p { | |
| 574 | - margin: 0 0 20px 0; | |
| 575 | - font-size: 15px; | |
| 869 | +#wpr-license-key { | |
| 870 | + margin-left: 0; | |
| 576 | 871 | } |
| 577 | 872 | |
| 578 | -.wpr-dialog .ui-dialog-titlebar { | |
| 873 | +.tools_page_wp-reset #pricing-table td, | |
| 874 | +.tools_page_wp-reset #pricing-table th { | |
| 875 | + padding: 10px 10px; | |
| 579 | 876 | text-align: center; |
| 580 | 877 | } |
| 581 | 878 | |
| 582 | -.wpr-dialog .subtitle { | |
| 879 | +.tools_page_wp-reset #pricing-table td:first-child { | |
| 880 | + text-align: left; | |
| 881 | +} | |
| 882 | + | |
| 883 | +.tools_page_wp-reset #pricing-table tfoot th { | |
| 884 | + border-top: thin solid #444444; | |
| 885 | + border-bottom: none; | |
| 886 | +} | |
| 887 | + | |
| 888 | +.tools_page_wp-reset #pricing-table tbody tr:last-child td { | |
| 889 | + border-bottom: none; | |
| 890 | +} | |
| 891 | + | |
| 892 | +.tools_page_wp-reset #pricing-table th { | |
| 893 | + vertical-align: top; | |
| 894 | + font-weight: normal; | |
| 895 | +} | |
| 896 | + | |
| 897 | +.tools_page_wp-reset #pricing-table th span { | |
| 898 | + color: #dd3036; | |
| 899 | + font-weight: 700; | |
| 900 | +} | |
| 901 | + | |
| 902 | +/* collections */ | |
| 903 | +.tools_page_wp-reset .collection-table tr td:first-child .dashicons { | |
| 904 | + margin-right: 8px; | |
| 905 | +} | |
| 906 | + | |
| 907 | +.tools_page_wp-reset .collection-table tr td:first-child { | |
| 908 | + width: 85px; | |
| 909 | +} | |
| 910 | + | |
| 911 | +.tools_page_wp-reset table tr td:first-child { | |
| 912 | + padding-left: 5px; | |
| 913 | +} | |
| 914 | + | |
| 915 | +.tools_page_wp-reset .collection-table td { | |
| 916 | + padding: 10px 10px; | |
| 917 | +} | |
| 918 | + | |
| 919 | +.tools_page_wp-reset table tr td:last-child { | |
| 920 | + padding-right: 5px; | |
| 921 | +} | |
| 922 | + | |
| 923 | +.tools_page_wp-reset .collection-table .actions { | |
| 583 | 924 | text-align: center; |
| 584 | - font-size: 15px; | |
| 585 | - margin: 0 0 16px 0; | |
| 925 | + white-space: nowrap; | |
| 926 | + width: 100px; | |
| 586 | 927 | } |
| 587 | 928 | |
| 588 | -.question-wrapper { | |
| 589 | - border: 1px solid rgba(0, 0, 0, 0.2); | |
| 590 | - padding: 15px 10px; | |
| 591 | - background-color: rgba(250, 250, 250, 0.55); | |
| 592 | - margin: 0 0 10px 5px; | |
| 593 | - opacity: 1; | |
| 594 | - width: 46%; | |
| 595 | - vertical-align: top; | |
| 929 | +.collection-item-details span { | |
| 930 | + display: block; | |
| 931 | + font-weight: 500; | |
| 932 | +} | |
| 933 | +/* collections */ | |
| 934 | + | |
| 935 | +/* Fontello */ | |
| 936 | +@font-face { | |
| 937 | + font-family: 'fontello'; | |
| 938 | + src: url('./font/fontello.eot?91671913'); | |
| 939 | + src: url('./font/fontello.eot?91671913#iefix') format('embedded-opentype'), | |
| 940 | + url('./font/fontello.woff2?91671913') format('woff2'), url('./font/fontello.woff?91671913') format('woff'), | |
| 941 | + url('./font/fontello.ttf?91671913') format('truetype'), url('./font/fontello.svg?91671913#fontello') format('svg'); | |
| 942 | + font-weight: normal; | |
| 943 | + font-style: normal; | |
| 944 | +} | |
| 945 | +/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ | |
| 946 | +/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ | |
| 947 | +/* | |
| 948 | +@media screen and (-webkit-min-device-pixel-ratio:0) { | |
| 949 | + @font-face { | |
| 950 | + font-family: 'fontello'; | |
| 951 | + src: url('./font/fontello.svg?91671913#fontello') format('svg'); | |
| 952 | + } | |
| 953 | +} | |
| 954 | +*/ | |
| 955 | + | |
| 956 | +[class^='icon-']:before, | |
| 957 | +[class*=' icon-']:before { | |
| 958 | + font-family: 'fontello'; | |
| 959 | + font-style: normal; | |
| 960 | + font-weight: normal; | |
| 596 | 961 | display: inline-block; |
| 962 | + text-decoration: inherit; | |
| 963 | + width: 1em; | |
| 964 | + margin-right: 0.2em; | |
| 965 | + text-align: center; | |
| 966 | + /* opacity: .8; */ | |
| 967 | + | |
| 968 | + /* For safety - reset parent styles, that can break glyph codes*/ | |
| 969 | + font-variant: normal; | |
| 970 | + text-transform: none; | |
| 971 | + | |
| 972 | + /* fix buttons height, for twitter bootstrap */ | |
| 973 | + line-height: 1em; | |
| 974 | + | |
| 975 | + /* Animation center compensation - margins should be symmetric */ | |
| 976 | + /* remove if not needed */ | |
| 977 | + margin-left: 0.2em; | |
| 978 | + | |
| 979 | + /* you can be more comfortable with increased icons size */ | |
| 980 | + /* font-size: 120%; */ | |
| 981 | + | |
| 982 | + /* Font smoothing. That was taken from TWBS */ | |
| 983 | + -webkit-font-smoothing: antialiased; | |
| 984 | + -moz-osx-font-smoothing: grayscale; | |
| 985 | + | |
| 986 | + /* Uncomment for 3D effect */ | |
| 987 | + /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ | |
| 988 | +} | |
| 989 | + | |
| 990 | +.icon-doc-text-inv:before { | |
| 991 | + content: '\f15c'; | |
| 992 | +} /* '' */ | |
| 993 | +.icon-database:before { | |
| 994 | + content: '\f1c0'; | |
| 995 | +} /* '' */ | |
| 996 | + | |
| 997 | +.wpr-collections-installer { | |
| 998 | + height: 100px; | |
| 999 | + display: block; | |
| 1000 | + overflow-y: hidden; | |
| 1001 | + overflow-x: hidden; | |
| 1002 | + position: relative; | |
| 1003 | + padding: 68px 40px; | |
| 1004 | + -webkit-mask-image: -webkit-linear-gradient( | |
| 1005 | + top, | |
| 1006 | + rgba(255, 255, 255, 0) 0%, | |
| 1007 | + rgba(255, 255, 255, 1) 38%, | |
| 1008 | + rgba(255, 255, 255, 1) 63%, | |
| 1009 | + rgba(255, 255, 255, 0) 100% | |
| 1010 | + ); | |
| 1011 | +} | |
| 1012 | + | |
| 1013 | +.wpr-collections-installer-errors { | |
| 1014 | + overflow-y: auto; | |
| 1015 | + overflow-x: hidden; | |
| 1016 | + position: relative; | |
| 1017 | + padding: 0px 40px; | |
| 1018 | + max-height: 200px; | |
| 1019 | +} | |
| 1020 | + | |
| 1021 | +.wpr-collections-installer::-webkit-scrollbar, | |
| 1022 | +.wpr-collections-installer-errors::-webkit-scrollbar { | |
| 1023 | + height: 12px; | |
| 1024 | + width: 6px; | |
| 1025 | + background: #ccc; | |
| 1026 | +} | |
| 1027 | + | |
| 1028 | +.wpr-collections-installer::-webkit-scrollbar-thumb, | |
| 1029 | +.wpr-collections-installer-errors::-webkit-scrollbar-thumb { | |
| 1030 | + background: #dd3036; | |
| 1031 | + -webkit-border-radius: 1ex; | |
| 1032 | + -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75); | |
| 1033 | +} | |
| 1034 | + | |
| 1035 | +.wpr-collections-installer::-webkit-scrollbar-corner, | |
| 1036 | +.wpr-collections-installer-errors::-webkit-scrollbar-corner { | |
| 1037 | + background: #ccc; | |
| 1038 | +} | |
| 1039 | + | |
| 1040 | +.wpr-collections-installer-message { | |
| 597 | 1041 | text-align: left; |
| 1042 | + position: relative; | |
| 1043 | + margin: 20px 0; | |
| 598 | 1044 | } |
| 599 | 1045 | |
| 600 | -.question-wrapper:hover { | |
| 1046 | +.wpr-collections-error { | |
| 1047 | + position: absolute; | |
| 1048 | + color: #f00; | |
| 1049 | + font-size: 12px; | |
| 1050 | + left: 24px; | |
| 1051 | + bottom: -14px; | |
| 1052 | +} | |
| 1053 | + | |
| 1054 | +.wpr-collections-installer-message .dashicons { | |
| 1055 | + vertical-align: text-top; | |
| 1056 | + line-height: 24px; | |
| 1057 | + height: 24px; | |
| 1058 | +} | |
| 1059 | + | |
| 1060 | +.wpr-collections-installer-loading .dashicons:before { | |
| 1061 | + content: '\f463'; | |
| 1062 | +} | |
| 1063 | + | |
| 1064 | +.wpr-collections-installer-loading .dashicons { | |
| 1065 | + -webkit-animation: wpr_rspin 1.5s linear infinite; | |
| 1066 | + -moz-animation: wpr_rspin 1.5s linear infinite; | |
| 1067 | + animation: wpr_rspin 1.5s linear infinite; | |
| 1068 | +} | |
| 1069 | + | |
| 1070 | +.wpr-collections-installer-done { | |
| 601 | 1071 | opacity: 1; |
| 602 | - border: 1px solid rgba(0, 142, 194, 1); | |
| 603 | - cursor: pointer; | |
| 1072 | +} | |
| 1073 | + | |
| 1074 | +.wpr-collections-installer-success .dashicons:before { | |
| 1075 | + content: '\f12a'; | |
| 1076 | + color: #1e232a; | |
| 1077 | +} | |
| 1078 | + | |
| 1079 | +.wpr-collections-installer-error .dashicons:before { | |
| 1080 | + content: '\f153'; | |
| 1081 | + color: #dd3036; | |
| 1082 | +} | |
| 1083 | + | |
| 1084 | +@-moz-keyframes wpr_rspin { | |
| 1085 | + 100% { | |
| 1086 | + -moz-transform: rotate(360deg); | |
| 1087 | + } | |
| 1088 | +} | |
| 1089 | +@-webkit-keyframes wpr_rspin { | |
| 1090 | + 100% { | |
| 1091 | + -webkit-transform: rotate(360deg); | |
| 1092 | + } | |
| 1093 | +} | |
| 1094 | +@keyframes wpr_rspin { | |
| 1095 | + 100% { | |
| 1096 | + -webkit-transform: rotate(360deg); | |
| 1097 | + transform: rotate(360deg); | |
| 1098 | + } | |
| 1099 | +} | |
| 1100 | + | |
| 1101 | +#wpfssl-ad { | |
| 1102 | + border: 3px solid #42982e; | |
| 1103 | + min-width: 280px; | |
| 1104 | + max-width: 400px; | |
| 1105 | + padding: 10px 20px; | |
| 1106 | + background: white; | |
| 1107 | +} | |
| 1108 | + | |
| 1109 | +@media screen and (max-width: 1520px) { | |
| 1110 | + .wpr-container, | |
| 1111 | + .tools_page_wp-reset nav{ | |
| 1112 | + width:700px; | |
| 1113 | + } | |
| 1114 | + | |
| 1115 | +} | |
| 1116 | + | |
| 1117 | +@media screen and (max-width: 1300px) { | |
| 1118 | + #wpr-sidebar-ads { | |
| 1119 | + display: none !important; | |
| 1120 | + } | |
| 1121 | + | |
| 1122 | + .wpr-container, | |
| 1123 | + .tools_page_wp-reset nav{ | |
| 1124 | + width:910px; | |
| 1125 | + } | |
| 1126 | +} | |
| 1127 | + | |
| 1128 | +#wpr-sidebar-ads { | |
| 1129 | + position: fixed; | |
| 1130 | +} | |
| 1131 | + | |
| 1132 | +#wpfssl-ad a.button { | |
| 1133 | + padding: 11px 20px; | |
| 1134 | + color: white; | |
| 1135 | + background: #42982e; | |
| 1136 | + font-weight: 600; | |
| 1137 | + border: none; | |
| 1138 | + line-height: 1.5; | |
| 1139 | + height: auto; | |
| 604 | 1140 | margin-bottom: 10px; |
| 1141 | + white-space: normal; | |
| 1142 | + max-width: 90%; | |
| 605 | 1143 | } |
| 606 | 1144 | |
| 607 | -.question-wrapper:hover .dashicons { | |
| 608 | - opacity: 0.25; | |
| 1145 | +#wpfssl-ad a.button:hover, | |
| 1146 | +#wpfssl-ad a.button:active, | |
| 1147 | +#wpfssl-ad a.button:focus { | |
| 1148 | + box-shadow: 0px 0px 10px 0px rgb(50 138 210 / 52%); | |
| 1149 | + background: #42982e; | |
| 1150 | + color: white; | |
| 1151 | + border: none; | |
| 609 | 1152 | } |
| 610 | 1153 | |
| 611 | -.question-wrapper.selected { | |
| 612 | - opacity: 1; | |
| 613 | - border: 1px solid rgba(0, 142, 194, 1); | |
| 1154 | +#wpr-ad { | |
| 1155 | + border: 3px solid #dd3036; | |
| 1156 | + min-width: 280px; | |
| 1157 | + max-width: 400px; | |
| 1158 | + padding: 10px 20px; | |
| 1159 | + background: white; | |
| 1160 | + margin-bottom: 30px; | |
| 1161 | +} | |
| 1162 | + | |
| 1163 | +#wpr-ad a.button { | |
| 1164 | + padding: 11px 20px; | |
| 1165 | + color: white; | |
| 1166 | + background: #dd3036; | |
| 1167 | + font-weight: 600; | |
| 1168 | + border: none; | |
| 1169 | + line-height: 1.5; | |
| 1170 | + height: auto; | |
| 614 | 1171 | margin-bottom: 10px; |
| 1172 | + white-space: normal; | |
| 1173 | + max-width: 90%; | |
| 615 | 1174 | } |
| 616 | 1175 | |
| 617 | -.question-wrapper .dashicons { | |
| 618 | - color: rgba(221, 47, 54, 1); | |
| 619 | - opacity: 0.25; | |
| 620 | - vertical-align: super; | |
| 621 | - width: 40px; | |
| 622 | - height: 40px; | |
| 1176 | +#wpr-ad a.button:hover, | |
| 1177 | +#wpr-ad a.button:active, | |
| 1178 | +#wpr-ad a.button:focus { | |
| 1179 | + box-shadow: 0px 0px 10px 0px rgb(50 138 210 / 52%); | |
| 1180 | + background: #dd3036; | |
| 1181 | + color: white; | |
| 1182 | + border: none; | |
| 623 | 1183 | } |
| 624 | 1184 | |
| 625 | -.question-wrapper.selected .dashicons { | |
| 626 | - color: rgba(221, 47, 54, 1); | |
| 627 | - opacity: 1; | |
| 1185 | +.wpr-main-tab li.tab-pro a { | |
| 1186 | + color: #dd3036 !important; | |
| 628 | 1187 | } |
| 629 | 1188 | |
| 630 | -.question-wrapper .dashicons:before { | |
| 631 | - width: 40px; | |
| 632 | - height: 40px; | |
| 633 | - font-size: 40px; | |
| 1189 | +.wpreset-pro-dialog .ui-dialog-titlebar { | |
| 1190 | + display: none; | |
| 634 | 1191 | } |
| 635 | 1192 | |
| 636 | -.question-wrapper .custom-input { | |
| 637 | - margin: 4px 0 0 0; | |
| 638 | - width: 100%; | |
| 639 | - font-size: 12px; | |
| 640 | - padding: 5px; | |
| 1193 | +.wpreset-pro-dialog .logo img { | |
| 1194 | + max-height: 55px; | |
| 641 | 1195 | } |
| 642 | 1196 | |
| 643 | -.question-wrapper .question { | |
| 644 | - margin-left: -40px; | |
| 645 | - display: inline-block; | |
| 1197 | +.wpreset-pro-dialog .logo { | |
| 1198 | + text-align: center; | |
| 1199 | + background: #f8f8f8; | |
| 1200 | + margin: -16px -16px 0 -16px; | |
| 1201 | + padding: 15px; | |
| 1202 | +} | |
| 1203 | + | |
| 1204 | +.wpreset-pro-dialog .footer { | |
| 1205 | + text-align: center; | |
| 1206 | + background: #f8f8f8; | |
| 1207 | + margin: 0 -16px -16px -16px; | |
| 1208 | + padding: 20px; | |
| 1209 | +} | |
| 1210 | + | |
| 1211 | +.wpreset-pro-dialog .logo span { | |
| 1212 | + display: block; | |
| 1213 | + font-size: 18px; | |
| 1214 | + margin: 10px; | |
| 1215 | +} | |
| 1216 | + | |
| 1217 | +.wpreset-pro-dialog .logo span b { | |
| 1218 | + border-bottom: 3px solid #dd3036; | |
| 1219 | +} | |
| 1220 | + | |
| 1221 | +#wpreset-pro-table { | |
| 646 | 1222 | width: 100%; |
| 647 | - padding-left: 50px; | |
| 648 | - box-sizing: border-box; | |
| 1223 | + margin: 10px auto 0 auto; | |
| 1224 | + border-collapse: collapse; | |
| 649 | 1225 | } |
| 650 | 1226 | |
| 651 | -.question-wrapper i { | |
| 652 | - padding-top: 5px; | |
| 1227 | +#wpreset-pro-table td { | |
| 1228 | + padding: 4px 10px 4px 34px; | |
| 1229 | + border: none; | |
| 653 | 1230 | font-size: 14px; |
| 1231 | +} | |
| 1232 | + | |
| 1233 | +#wpreset-pro-table tr:last-child td { | |
| 1234 | + text-align: center; | |
| 1235 | +} | |
| 1236 | + | |
| 1237 | +#wpreset-pro-table .dashicons-yes { | |
| 1238 | + color: #dd3036; | |
| 1239 | +} | |
| 1240 | + | |
| 1241 | +#wpreset-pro-table .dashicons { | |
| 1242 | + padding-right: 8px; | |
| 1243 | + margin-left: -27px; | |
| 1244 | +} | |
| 1245 | + | |
| 1246 | +#wpreset-pro-table .center { | |
| 1247 | + text-align: center; | |
| 1248 | +} | |
| 1249 | + | |
| 1250 | +.prices del { | |
| 1251 | + color: #00000099; | |
| 1252 | +} | |
| 1253 | + | |
| 1254 | +.prices span { | |
| 1255 | + font-weight: 600; | |
| 1256 | + font-size: 40px; | |
| 1257 | + color: #dd3036; | |
| 1258 | + line-height: 1; | |
| 654 | 1259 | display: inline-block; |
| 1260 | + padding-bottom: 15px; | |
| 655 | 1261 | } |
| 656 | -/* survey */ | |
| 657 | 1262 | |
| 658 | -.webhooks-dialog .ui-dialog-titlebar { | |
| 659 | - background-color: rgb(241, 88, 42); | |
| 660 | - color: #fefefe; | |
| 1263 | +#wpreset-pro-table tr:first-child td { | |
| 1264 | + color: #000; | |
| 1265 | + font-size: 18px; | |
| 1266 | + font-weight: 800 !important; | |
| 1267 | + padding: 10px 0; | |
| 1268 | + text-align: center; | |
| 661 | 1269 | } |
| 662 | 1270 | |
| 663 | -.webhooks-footer { | |
| 1271 | +#wpreset-pro-table tr:last-child td { | |
| 1272 | + padding: 20px 0 20px 0; | |
| 1273 | + vertical-align: top; | |
| 1274 | +} | |
| 1275 | + | |
| 1276 | +#wpreset-pro-table tr:last-child td { | |
| 664 | 1277 | text-align: center; |
| 665 | 1278 | } |
| 666 | 1279 | |
| 667 | -.webhooks-dialog .plain-list li { | |
| 668 | - text-indent: -21px; | |
| 1280 | + | |
| 1281 | +#wpreset-pro-table a.button.button-buy { | |
| 1282 | + padding: 11px 40px; | |
| 1283 | + color: white; | |
| 1284 | + background: #dd3036; | |
| 1285 | + font-weight: 600; | |
| 1286 | + border: none; | |
| 1287 | + line-height: 1.5; | |
| 1288 | + height: auto; | |
| 1289 | + margin-bottom: 10px; | |
| 669 | 1290 | } |
| 670 | 1291 | |
| 671 | -#wpfooter { | |
| 672 | - background-color: #ffffff; | |
| 1292 | +#wpreset-pro-table a.button.button-buy:hover, | |
| 1293 | +#wpreset-pro-table a.button.button-buy:active, | |
| 1294 | +#wpreset-pro-table a.button.button-buy:focus { | |
| 1295 | + box-shadow: 0px 0px 10px 0px rgb(50 138 210 / 52%); | |
| 1296 | + background: #dd3036; | |
| 1297 | + color: white; | |
| 1298 | + border: none; | |
| 673 | 1299 | } |
| 1300 | + | |
| 1301 | +.wp-dialog.ui-widget-content { | |
| 1302 | + background: #fff !important; | |
| 1303 | +} | |
| 1304 | + | |
| 1305 | +#wpreset-pro-dialog { | |
| 1306 | + overflow: hidden; | |
| 1307 | +} | |
| 1308 | + | |
| 1309 | +div.ui-dialog { | |
| 1310 | + position: fixed; | |
| 1311 | +} | |
| 1312 | + | |