components
5 years ago
jquery-confirm
8 years ago
jquery-ui
8 years ago
mixins
5 years ago
perfect-scrollbar
7 years ago
utility
5 years ago
variables
5 years ago
_animation.scss
6 years ago
_backbone.scss
6 years ago
_clearings.scss
6 years ago
_colors.scss
5 years ago
_confirm.scss
4 years ago
_containers.scss
5 years ago
_fonts.scss
5 years ago
_grid.scss
5 years ago
activation-rtl.css
3 years ago
activation.css
3 years ago
activation.css.map
5 years ago
activation.scss
3 years ago
admin-rtl.css
2 years ago
admin.css
2 years ago
admin.css.map
4 years ago
admin.scss
2 years ago
deactivation-feedback-rtl.css
3 years ago
deactivation-feedback.css
3 years ago
deactivation-feedback.scss
3 years ago
everest-forms-rtl.css
3 years ago
everest-forms.css
3 years ago
everest-forms.css.map
4 years ago
everest-forms.scss
3 years ago
flatpickr-rtl.css
4 years ago
flatpickr.css
4 years ago
flatpickr.css.map
5 years ago
flatpickr.scss
6 years ago
menu-rtl.css
2 years ago
menu.css
2 years ago
menu.css.map
5 years ago
menu.scss
2 years ago
select2-rtl.css
4 years ago
select2.css
4 years ago
select2.css.map
5 years ago
select2.scss
5 years ago
_confirm.scss
161 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 | margin-bottom: 0; |
| 32 | overflow: initial; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | div.jconfirm-content { |
| 37 | font-size: 16px; |
| 38 | color: #555; |
| 39 | line-height: 1.5; |
| 40 | |
| 41 | p { |
| 42 | margin: 0 0 16px; |
| 43 | font-size: 16px; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | input[type='text']='text'] { |
| 48 | width: 99%; |
| 49 | padding: 10px; |
| 50 | box-shadow: none; |
| 51 | margin: 20px auto 0 auto; |
| 52 | border: 1px solid #d6d6d6; |
| 53 | } |
| 54 | |
| 55 | #evf-embed-shortcode { |
| 56 | margin: 20px 0; |
| 57 | text-align: center; |
| 58 | font-size: 24px; |
| 59 | padding: 8px 5px; |
| 60 | } |
| 61 | |
| 62 | #evf-embed-shortcode:disabled { |
| 63 | color: #333; |
| 64 | } |
| 65 | |
| 66 | button.btn-confirm { |
| 67 | background-color: $blue; |
| 68 | color: $color-white; |
| 69 | outline: none; |
| 70 | |
| 71 | &:hover { |
| 72 | background-color: transparentize($blue, 0.2); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | .error { |
| 77 | color: $red; |
| 78 | display: none; |
| 79 | } |
| 80 | |
| 81 | div.jconfirm-title-c .jconfirm-icon-c { |
| 82 | -webkit-transition: none !important; |
| 83 | transition: none !important; |
| 84 | -webkit-transform: none !important; |
| 85 | -ms-transform: none !important; |
| 86 | transform: none !important; |
| 87 | font-size: 45px !important; |
| 88 | |
| 89 | .dashicons { |
| 90 | height: inherit; |
| 91 | width: inherit; |
| 92 | font-size: 60px; |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | // Customize jsconfirm styles |
| 100 | .everest-forms-jsconfirm { |
| 101 | &.jconfirm-modern { |
| 102 | .jconfirm-box { |
| 103 | width: 500px !important; |
| 104 | padding: 20px 30px 15px !important; |
| 105 | border-radius: 4px !important; |
| 106 | |
| 107 | .jconfirm-title-c { |
| 108 | font-size: 20px !important; |
| 109 | font-weight: 400 !important; |
| 110 | padding-bottom: 0 !important; |
| 111 | line-height: 1.4 !important; |
| 112 | |
| 113 | .jconfirm-icon-c { |
| 114 | margin: 0 !important; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | .jconfirm-content { |
| 119 | margin-bottom: 0 !important; |
| 120 | |
| 121 | input[type='text']='text'] { |
| 122 | margin: 5px 2px 2px; |
| 123 | padding: 5px 10px; |
| 124 | |
| 125 | &:focus { |
| 126 | border-color: #007cba; |
| 127 | box-shadow: 0 0 0 1px #007cba; |
| 128 | } |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | .jconfirm-buttons { |
| 133 | text-align: right; |
| 134 | |
| 135 | .everest-forms-btn { |
| 136 | font-weight: 400; |
| 137 | text-transform: none; |
| 138 | } |
| 139 | } |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | &--align-left { |
| 144 | &.jconfirm-modern { |
| 145 | .jconfirm-box { |
| 146 | .jconfirm-title-c { |
| 147 | text-align: left !important; |
| 148 | } |
| 149 | |
| 150 | .jconfirm-content { |
| 151 | text-align: left !important; |
| 152 | } |
| 153 | |
| 154 | .jconfirm-buttons { |
| 155 | text-align: right !important; |
| 156 | } |
| 157 | } |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 |