PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.16.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.16.1
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / css / admin / applications.css

applications.css in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.16.1, at css/admin/applications.css

260 lines 4.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .frm-application-cards-grid,
2 #frm-application-search,
3 .frm-application-card hr {
4 width: 100%;
5 }
6
7 .frm-application-card img,
8 .frm-application-image-wrapper img,
9 #frm_custom_applications_placeholder img {
10 max-width: 100%;
11 }
12
13 .frm-application-image-wrapper img {
14 background: url(../../images/applications/toolbar.png) no-repeat top center;
15 background-size: contain;
16 padding-top: 19px;
17 }
18
19 .frm-application-card > div:first-child,
20 #frm_custom_applications_placeholder {
21 position: relative;
22 }
23
24 .frm-admin-page-applications #wpcontent {
25 padding-left: 0;
26 }
27
28 .frm-application-cards-grid {
29 padding-top: var(--gap-md);
30 padding-bottom: 50px;
31 grid-gap: var(--gap-md);
32 }
33
34 .frm-application-cards-grid:last-child {
35 padding-bottom: 100px;
36 }
37
38 .frm-admin-page-applications #wpbody-content {
39 padding-bottom: 0;
40 }
41
42 .frm-application-card {
43 grid-column: span 4/span 4; /* treat as frm4 */
44 flex-direction: column;
45 gap: 0;
46 }
47
48 .frm-application-template-card {
49 cursor: pointer;
50 }
51
52 .frm-application-template-card:hover {
53 box-shadow: var(--box-shadow-lg);
54 }
55
56 .frm-application-template-card:hover h3 {
57 color: var(--primary-500);
58 }
59
60 /* Card title */
61 .frm-application-card h3 {
62 display: flex;
63 width: 100%;
64 align-items: center;
65 flex-wrap: nowrap;
66 gap: var(--gap-xs);
67 margin: 0;
68 font-size: var(--text-sm) !important;
69 font-weight: 500;
70 min-height: 28px;
71 }
72
73 .frm-application-card h3 .frmsvg {
74 width: 11px;
75 height: 13px;
76 }
77
78 .frm-application-card h3 .frm-inner-text {
79 max-width: calc( 100% - 50px );
80 overflow: hidden;
81 white-space: nowrap;
82 text-overflow: ellipsis;
83 }
84
85 .frm-application-card h3 .frm-meta-tag {
86 margin: 0;
87 }
88
89 #frm_application_templates_grid .frm-application-card .frm-button-secondary {
90 display: flex;
91 flex-direction: row;
92 }
93
94 .frm-application-card .frm-button-secondary .frmsvg {
95 width: 11px;
96 height: 11px;
97 position: relative;
98 right: 2px;
99 align-self: center;
100 }
101
102 .frm-application-card .frm-new-pill {
103 min-height: 20px;
104 font-size: var(--text-xs);
105 align-items: center;
106 }
107
108 .frm-application-card:hover .frm-new-pill{
109 display: none;
110 }
111
112 /* Use template anchor */
113 #frm_application_templates_grid .frm-application-card .frm-button-secondary {
114 display: none;
115 }
116 #frm_application_templates_grid .frm-application-card:hover .frm-button-secondary {
117 display: inline-block;
118 }
119
120 /* Card description */
121 .frm-application-card > div:first-child > div {
122 font-size: var(--text-xs);
123 }
124
125 .frm-application-item-count {
126 font-size: var(--text-xs);
127 color: var(--grey-500);
128 margin-top: var(--gap-xs);
129 }
130
131 #frm_view_application_modal .frm_warning_style {
132 border: none aliceblue;
133 margin-top: 0;
134 padding: 20px;
135 border-radius: 0;
136 display: flex;
137 }
138
139 #frm_view_application_modal .frm_warning_style span {
140 flex: 1;
141 }
142
143 #frm_view_application_modal .frm_warning_style a:focus {
144 box-shadow: none;
145 }
146
147 .frm-application-card-image-wrapper {
148 min-height: 130px;
149 display: flex;
150 align-items: center;
151 align-self: center;
152 }
153
154 .frm-flex {
155 flex: 1;
156 }
157
158 .frm-application-modal-details {
159 padding: 25px 30px;
160 }
161
162 .frm-admin-page-applications .ui-widget-overlay {
163 position: fixed;
164 width: 100%;
165 height: 100%;
166 top: 0;
167 left: 0;
168 right: 0;
169 bottom: 0;
170 background: var(--grey-border);
171 z-index: 2;
172 }
173
174 #frm_view_application_modal .frm-application-image-wrapper {
175 background-color: #F6F7FB;
176 padding: 20px 30px 15px;
177 }
178
179 #frm_view_application_modal img {
180 height: 245px;
181 }
182
183 #frm_view_application_modal .frm_modal_content {
184 flex: 1;
185 overflow-y: auto;
186 }
187
188 .frm-application-modal-label {
189 opacity: 0.65;
190 margin-bottom: 5px;
191 }
192
193 .frm-admin-page-applications #frm_bs_dropdown .install-now {
194 vertical-align: bottom;
195 }
196
197 #frm_application_category_filter {
198 display: inline-block;
199 }
200
201 #frm_application_category_filter > a {
202 padding: 0 8px;
203 }
204
205 #frm_application_category_filter > a:first-child {
206 padding-left: 0;
207 }
208
209 #frm_application_category_filter > a:last-child {
210 padding-right: 0;
211 }
212
213 .frm-admin-page-applications #frm_top_bar h1 {
214 width: auto;
215 }
216
217 .frm-admin-page-applications #frm_top_bar .install-now {
218 vertical-align: bottom;
219 }
220
221 .frm-application-templates-nav .frm-search {
222 margin-top: 0;
223 }
224
225 .frm-application-templates-nav.wrap {
226 margin-right: 0;
227 }
228
229 #frm_custom_applications_placeholder > div:first-child {
230 position: absolute;
231 }
232
233 #frm_custom_applications_placeholder > div:last-child {
234 text-align: center;
235 max-width: 500px;
236 margin: var(--gap-md) auto;
237 position: relative;
238 }
239
240 #frm_custom_applications_placeholder > div a {
241 margin-top: var(--gap-md);
242 }
243
244 @media only screen and (max-width: 1200px) {
245 .frm-application-card {
246 grid-column: span 6/span 6; /* treat as frm6 */
247 }
248 }
249
250 @media only screen and (max-width: 600px) {
251 #frm_application_category_filter {
252 display: block;
253 margin-left: 0;
254 }
255
256 .frm-application-card {
257 grid-column: span 12/span 12; /* treat as frm12 */
258 }
259 }
260