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
_backbone.scss
139 lines
| 1 | /** |
| 2 | * Backbone modal dialog |
| 3 | */ |
| 4 | .evf-backbone-modal { |
| 5 | * { |
| 6 | box-sizing: border-box; |
| 7 | } |
| 8 | |
| 9 | .evf-backbone-modal-content { |
| 10 | position: fixed; |
| 11 | background: #fff; |
| 12 | z-index: 100000; |
| 13 | left: 50%; |
| 14 | top: 50%; |
| 15 | transform: translate(-50%, -50%); |
| 16 | width: 500px; |
| 17 | article { |
| 18 | overflow: auto; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | .select2-container { |
| 23 | width: 100% !important; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | .evf-backbone-modal-backdrop { |
| 28 | position: fixed; |
| 29 | top: 0; |
| 30 | left: 0; |
| 31 | right: 0; |
| 32 | bottom: 0; |
| 33 | min-height: 360px; |
| 34 | background: #000; |
| 35 | opacity: 0.7; |
| 36 | z-index: 99900; |
| 37 | } |
| 38 | |
| 39 | .evf-backbone-modal-main { |
| 40 | padding-bottom: 55px; |
| 41 | |
| 42 | header, |
| 43 | article { |
| 44 | display: block; |
| 45 | position: relative; |
| 46 | } |
| 47 | |
| 48 | .evf-backbone-modal-header { |
| 49 | height: auto; |
| 50 | background: #fcfcfc; |
| 51 | padding: 1em 1.5em; |
| 52 | border-bottom: 1px solid #ddd; |
| 53 | |
| 54 | h1 { |
| 55 | margin: 0; |
| 56 | font-size: 18px; |
| 57 | font-weight: 700; |
| 58 | line-height: 1.5em; |
| 59 | } |
| 60 | |
| 61 | .modal-close-link { |
| 62 | cursor: pointer; |
| 63 | color: #777; |
| 64 | height: 54px; |
| 65 | width: 54px; |
| 66 | padding: 0; |
| 67 | position: absolute; |
| 68 | top: 0; |
| 69 | right: 0; |
| 70 | text-align: center; |
| 71 | border: 0; |
| 72 | border-left: 1px solid #ddd; |
| 73 | background-color: transparent; |
| 74 | transition: color 0.1s ease-in-out, background 0.1s ease-in-out; |
| 75 | |
| 76 | &::before { |
| 77 | font: normal 22px/50px 'dashicons' !important; |
| 78 | color: #666; |
| 79 | display: block; |
| 80 | content: '\f335'; |
| 81 | font-weight: 300; |
| 82 | } |
| 83 | |
| 84 | &:hover, |
| 85 | &:focus { |
| 86 | background: #ddd; |
| 87 | border-color: #ccc; |
| 88 | color: #000; |
| 89 | } |
| 90 | |
| 91 | &:focus { |
| 92 | outline: none; |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | article { |
| 98 | padding: 1.5em; |
| 99 | |
| 100 | p { |
| 101 | margin: 1.5em 0; |
| 102 | |
| 103 | &:first-child { |
| 104 | margin-top: 0; |
| 105 | } |
| 106 | |
| 107 | &:last-child { |
| 108 | margin-bottom: 0; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | .pagination { |
| 113 | padding: 10px 0 0; |
| 114 | text-align: center; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | footer { |
| 119 | position: absolute; |
| 120 | left: 0; |
| 121 | right: 0; |
| 122 | bottom: 0; |
| 123 | z-index: 100; |
| 124 | padding: 1em 1.5em; |
| 125 | background: #fcfcfc; |
| 126 | border-top: 1px solid #dfdfdf; |
| 127 | box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1); |
| 128 | |
| 129 | .inner { |
| 130 | float: right; |
| 131 | line-height: 23px; |
| 132 | |
| 133 | .button { |
| 134 | margin-bottom: 0; |
| 135 | } |
| 136 | } |
| 137 | } |
| 138 | } |
| 139 |