PluginProbe ʕ •ᴥ•ʔ
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI / 1.6.3
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI v1.6.3
3.5.2 3.5.1 3.5.0 3.4.8 3.4.7 3.4.6 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.10 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.6.1 1.6.7 1.7.0 1.7.0.1 1.7.0.2 1.7.0.3 1.7.1 1.7.2 1.7.2.1 1.7.2.2 1.7.3 1.7.4 1.7.5 1.7.5.1 1.7.5.2 1.7.6 1.7.7 1.7.7.1 1.7.7.2 1.7.8 1.7.9 1.8.0 1.8.0.1 1.8.1 1.8.2 1.8.2.1 1.8.2.2 1.8.2.3 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.0.1 1.9.1 1.9.2 1.9.3 1.9.4 1.9.4.1 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.0.1 2.0.1 2.0.2 2.0.3 2.0.3.1 2.0.4 2.0.4.1 2.0.5 2.0.6 2.0.7 2.0.8 2.0.8.1 2.0.9 3.0.0 3.0.0.1 3.0.1 3.0.2 3.0.3 3.0.3.1 3.0.4 3.0.4.1 3.0.4.2 3.0.5 3.0.5.1 3.0.5.2 3.0.6 3.0.6.1 3.0.7.1 3.0.8 3.0.8.1 3.0.9 3.0.9.1 3.0.9.2 3.0.9.3 3.0.9.4 3.0.9.5 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.3.0 3.4.0 3.4.1 3.4.2 3.4.2.1 3.4.3 3.4.4 3.4.5 trunk 1.0 1.0.1 1.0.2 1.0.3
everest-forms / assets / css / _backbone.scss
everest-forms / assets / css Last commit date
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
_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