jquery-confirm
8 years ago
jquery-ui
8 years ago
perfect-scrollbar
7 years ago
_animation.scss
6 years ago
_backbone.scss
6 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
6 years ago
flatpickr.scss
7 years ago
menu-rtl.css
6 years ago
menu.css
6 years ago
menu.scss
6 years ago
select2.css
6 years ago
select2.scss
6 years ago
menu.scss
312 lines
| 1 | /** |
| 2 | * menu.scss |
| 3 | * Styles applied to dashboard menu items added via EverestForms. |
| 4 | * Adds icons to top level menu items, etc. |
| 5 | */ |
| 6 | |
| 7 | /** |
| 8 | * Imports |
| 9 | */ |
| 10 | @import 'mixins'; |
| 11 | @import 'variables'; |
| 12 | @import 'fonts'; |
| 13 | |
| 14 | /** |
| 15 | * Styling begins. |
| 16 | */ |
| 17 | #evf-modal-wrap { |
| 18 | display: none; |
| 19 | background-color: #fff; |
| 20 | -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); |
| 21 | box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); |
| 22 | width: 500px; |
| 23 | height: 250px; |
| 24 | overflow: hidden; |
| 25 | margin-left: -250px; |
| 26 | margin-top: -125px; |
| 27 | position: fixed; |
| 28 | top: 50%; |
| 29 | left: 50%; |
| 30 | z-index: 100105; |
| 31 | -webkit-transition: height 0.2s, margin-top 0.2s; |
| 32 | transition: height 0.2s, margin-top 0.2s; |
| 33 | |
| 34 | #evf-modal { |
| 35 | height: 100%; |
| 36 | position: relative; |
| 37 | |
| 38 | #evf-modal-title { |
| 39 | background: #fcfcfc; |
| 40 | border-bottom: 1px solid #dfdfdf; |
| 41 | height: 36px; |
| 42 | font-size: 18px; |
| 43 | font-weight: 600; |
| 44 | line-height: 36px; |
| 45 | padding: 0 36px 0 16px; |
| 46 | top: 0; |
| 47 | right: 0; |
| 48 | left: 0; |
| 49 | } |
| 50 | |
| 51 | #evf-modal-close { |
| 52 | color: #666; |
| 53 | padding: 0; |
| 54 | position: absolute; |
| 55 | top: 0; |
| 56 | right: 0; |
| 57 | width: 36px; |
| 58 | height: 36px; |
| 59 | text-align: center; |
| 60 | background: 0 0; |
| 61 | border: none; |
| 62 | cursor: pointer; |
| 63 | |
| 64 | &:hover, |
| 65 | &:focus { |
| 66 | color: #2ea2cc; |
| 67 | } |
| 68 | |
| 69 | &:focus { |
| 70 | outline: 0; |
| 71 | box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8); |
| 72 | } |
| 73 | |
| 74 | &::before { |
| 75 | content: '\f158'; |
| 76 | font: normal 20px/36px dashicons; |
| 77 | vertical-align: top; |
| 78 | speak: none; |
| 79 | width: 36px; |
| 80 | height: 36px; |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | #evf-modal-inner { |
| 85 | padding: 0 16px 50px; |
| 86 | |
| 87 | #evf-modal-notice { |
| 88 | padding: 10px; |
| 89 | color: #31708f; |
| 90 | background-color: #d9edf7; |
| 91 | border: 1px solid #bce8f1; |
| 92 | } |
| 93 | |
| 94 | #evf-modal-options { |
| 95 | padding: 8px 0 12px; |
| 96 | |
| 97 | .evf-modal-inline { |
| 98 | margin: 0; |
| 99 | padding: 0 20px 0 0; |
| 100 | display: inline-block; |
| 101 | } |
| 102 | |
| 103 | #evf-modal-select-form { |
| 104 | max-width: 100%; |
| 105 | margin-bottom: 1em; |
| 106 | } |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | .submitbox { |
| 111 | padding: 8px 16px; |
| 112 | background: #fcfcfc; |
| 113 | border-top: 1px solid #dfdfdf; |
| 114 | position: absolute; |
| 115 | bottom: 0; |
| 116 | left: 0; |
| 117 | right: 0; |
| 118 | |
| 119 | #evf-modal-cancel { |
| 120 | float: left; |
| 121 | line-height: 25px; |
| 122 | } |
| 123 | |
| 124 | #evf-modal-update { |
| 125 | float: right; |
| 126 | line-height: 23px; |
| 127 | |
| 128 | #evf-modal-submit { |
| 129 | float: right; |
| 130 | margin-bottom: 0; |
| 131 | } |
| 132 | } |
| 133 | } |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | #evf-modal-backdrop { |
| 138 | display: none; |
| 139 | position: fixed; |
| 140 | top: 0; |
| 141 | left: 0; |
| 142 | right: 0; |
| 143 | bottom: 0; |
| 144 | min-height: 360px; |
| 145 | background: #000; |
| 146 | opacity: 0.7; |
| 147 | filter: alpha(opacity=70); |
| 148 | z-index: 100100; |
| 149 | } |
| 150 | |
| 151 | @media screen and (max-width: 782px) { |
| 152 | #evf-modal-wrap { |
| 153 | height: 280px; |
| 154 | margin-top: -140px; |
| 155 | } |
| 156 | #evf-modal-inner { |
| 157 | padding: 0 16px 60px; |
| 158 | } |
| 159 | #evf-modal-cancel { |
| 160 | line-height: 32px; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | @media screen and (max-width: 520px) { |
| 165 | #evf-modal-wrap { |
| 166 | width: auto; |
| 167 | margin-left: 0; |
| 168 | left: 10px; |
| 169 | right: 10px; |
| 170 | max-width: 500px; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | @media screen and (max-height: 520px) { |
| 175 | #evf-modal-wrap { |
| 176 | -webkit-transition: none; |
| 177 | transition: none; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | @media screen and (max-height: 290px) { |
| 182 | #evf-modal-wrap { |
| 183 | height: auto; |
| 184 | margin-top: 0; |
| 185 | top: 10px; |
| 186 | bottom: 10px; |
| 187 | } |
| 188 | #evf-modal-inner { |
| 189 | overflow: auto; |
| 190 | height: -webkit-calc(100% - 92px); |
| 191 | height: calc(100% - 92px); |
| 192 | padding-bottom: 2px; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Fonts icons. |
| 198 | */ |
| 199 | [class^='evf-icon-']^='evf-icon-'], |
| 200 | [class*=' evf-icon-']*=' evf-icon-'] { |
| 201 | /* use !important to prevent issues with browser extensions that change fonts */ |
| 202 | font-family: EverestForms !important; |
| 203 | speak: none; |
| 204 | font-style: normal; |
| 205 | font-weight: normal; |
| 206 | font-variant: normal; |
| 207 | text-transform: none; |
| 208 | line-height: 1; |
| 209 | |
| 210 | /* Enable Ligatures ================ */ |
| 211 | letter-spacing: 0; |
| 212 | -webkit-font-feature-settings: 'liga'; |
| 213 | -moz-font-feature-settings: 'liga=1'; |
| 214 | -moz-font-feature-settings: 'liga'; |
| 215 | -ms-font-feature-settings: 'liga' 1; |
| 216 | font-feature-settings: 'liga'; |
| 217 | -webkit-font-variant-ligatures: discretionary-ligatures; |
| 218 | font-variant-ligatures: discretionary-ligatures; |
| 219 | |
| 220 | /* Better Font Rendering =========== */ |
| 221 | -webkit-font-smoothing: antialiased; |
| 222 | -moz-osx-font-smoothing: grayscale; |
| 223 | } |
| 224 | |
| 225 | .evf-icon-captcha::before { |
| 226 | content: '\e004'; |
| 227 | } |
| 228 | .evf-icon-password::before { |
| 229 | content: '\e004'; |
| 230 | } |
| 231 | .evf-icon-email::before { |
| 232 | content: '\e005'; |
| 233 | } |
| 234 | .evf-icon-map-marker::before { |
| 235 | content: '\e007'; |
| 236 | } |
| 237 | .evf-icon-flag::before { |
| 238 | content: '\e00a'; |
| 239 | } |
| 240 | .evf-icon-first-name::before { |
| 241 | content: '\e00d'; |
| 242 | } |
| 243 | .evf-icon-last-name::before { |
| 244 | content: '\e00e'; |
| 245 | } |
| 246 | .evf-icon-text::before { |
| 247 | content: '\e00f'; |
| 248 | } |
| 249 | .evf-icon-paragraph::before { |
| 250 | content: '\e010'; |
| 251 | } |
| 252 | .evf-icon-dropdown::before { |
| 253 | content: '\e011'; |
| 254 | } |
| 255 | .evf-icon-checkbox::before { |
| 256 | content: '\e012'; |
| 257 | } |
| 258 | .evf-icon-multiple-choices::before { |
| 259 | content: '\e013'; |
| 260 | } |
| 261 | .evf-icon-multiple-choices-radio::before { |
| 262 | content: '\e014'; |
| 263 | } |
| 264 | .evf-icon-number::before { |
| 265 | content: '\e015'; |
| 266 | } |
| 267 | .evf-icon-website::before { |
| 268 | content: '\e016'; |
| 269 | } |
| 270 | .evf-icon-calendar::before { |
| 271 | content: '\e017'; |
| 272 | } |
| 273 | .evf-icon-single-item::before { |
| 274 | content: '\e018'; |
| 275 | } |
| 276 | .evf-icon-file-upload::before { |
| 277 | content: '\e019'; |
| 278 | } |
| 279 | .evf-icon-hidden::before { |
| 280 | content: '\e01a'; |
| 281 | } |
| 282 | .evf-icon-phone::before { |
| 283 | content: '\e01b'; |
| 284 | } |
| 285 | .evf-icon-custom-html::before { |
| 286 | content: '\e01c'; |
| 287 | } |
| 288 | .evf-icon-section-divider::before { |
| 289 | content: '\e01d'; |
| 290 | } |
| 291 | .evf-icon-payment::before { |
| 292 | content: '\e01f'; |
| 293 | } |
| 294 | .evf-icon-total::before { |
| 295 | content: '\e020'; |
| 296 | } |
| 297 | .evf-icon-img-upload::before { |
| 298 | content: '\e022'; |
| 299 | } |
| 300 | .evf-icon-star::before { |
| 301 | content: '\e024'; |
| 302 | } |
| 303 | .evf-icon-likert::before { |
| 304 | content: '\e025'; |
| 305 | } |
| 306 | .evf-icon-scale-rating::before { |
| 307 | content: '\e026'; |
| 308 | } |
| 309 | .evf-icon-signature::before { |
| 310 | content: '\e028'; |
| 311 | } |
| 312 |