jquery-confirm
8 years ago
jquery-ui
8 years ago
perfect-scrollbar
7 years ago
_animation.scss
7 years ago
_backbone.scss
7 years ago
_clearings.scss
6 years ago
_confirm.scss
6 years ago
_fonts.scss
7 years ago
_mixins.scss
7 years ago
_variables.scss
6 years ago
activation-rtl.css
6 years ago
activation.css
6 years ago
activation.scss
6 years ago
admin-rtl.css
6 years ago
admin.css
6 years ago
admin.scss
6 years ago
everest-forms-rtl.css
6 years ago
everest-forms.css
6 years ago
everest-forms.scss
6 years ago
flatpickr.css
7 years ago
flatpickr.scss
8 years ago
menu-rtl.css
7 years ago
menu.css
7 years ago
menu.scss
7 years ago
select2.css
6 years ago
select2.scss
6 years ago
_confirm.scss
97 lines
| 1 | /** |
| 2 | * _confirm.scss |
| 3 | * Styling applied to jQuery-confirm JS alert library. |
| 4 | */ |
| 5 | |
| 6 | /** |
| 7 | * Styling begins |
| 8 | */ |
| 9 | div.jconfirm { |
| 10 | |
| 11 | *, |
| 12 | *::before, |
| 13 | *::after { |
| 14 | -webkit-box-sizing: border-box; |
| 15 | -moz-box-sizing: border-box; |
| 16 | box-sizing: border-box; |
| 17 | } |
| 18 | |
| 19 | &.jconfirm-modern { |
| 20 | div.jconfirm-box-container div.jconfirm-box { |
| 21 | border-radius: 0; |
| 22 | box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); |
| 23 | } |
| 24 | |
| 25 | .jconfirm-box { |
| 26 | div.jconfirm-content-pane { |
| 27 | margin-bottom: 20px; |
| 28 | display: block; |
| 29 | |
| 30 | .jconfirm-content { |
| 31 | overflow: initial; |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | div.jconfirm-content { |
| 36 | font-size: 16px; |
| 37 | color: #555; |
| 38 | line-height: 1.5; |
| 39 | |
| 40 | p { |
| 41 | margin: 0 0 16px; |
| 42 | font-size: 16px; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | input[type="text"]="text""] { |
| 47 | width: 99%; |
| 48 | padding: 10px; |
| 49 | box-shadow: none; |
| 50 | margin: 20px auto 0 auto; |
| 51 | border: 1px solid #d6d6d6; |
| 52 | } |
| 53 | |
| 54 | #evf-embed-shortcode { |
| 55 | margin: 20px 0; |
| 56 | text-align: center; |
| 57 | font-size: 24px; |
| 58 | padding: 8px 5px; |
| 59 | } |
| 60 | |
| 61 | #evf-embed-shortcode:disabled { |
| 62 | color: #333; |
| 63 | } |
| 64 | |
| 65 | button.btn-confirm { |
| 66 | background-color: $blue; |
| 67 | color: $color-white; |
| 68 | outline: none; |
| 69 | |
| 70 | &:hover { |
| 71 | background-color: transparentize($blue, 0.2); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | .error { |
| 76 | color: $red; |
| 77 | display: none; |
| 78 | } |
| 79 | |
| 80 | div.jconfirm-title-c .jconfirm-icon-c { |
| 81 | -webkit-transition: none !important; |
| 82 | transition: none !important; |
| 83 | -webkit-transform: none !important; |
| 84 | -ms-transform: none !important; |
| 85 | transform: none !important; |
| 86 | font-size: 45px !important; |
| 87 | |
| 88 | .dashicons { |
| 89 | height: inherit; |
| 90 | width: inherit; |
| 91 | font-size: 60px; |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | } |
| 97 |