| @@ -20,16 +20,26 @@ | ||
| 20 | 20 | #frm_custom_applications_placeholder { |
| 21 | 21 | position: relative; |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | -.frm-admin-page-applications #wpcontent { | |
| 24 | +.formidable_page_formidable-applications #frm_top_bar { | |
| 25 | + background: #fff; | |
| 26 | +} | |
| 27 | + | |
| 28 | +.formidable_page_formidable-applications #wpbody { | |
| 29 | + background: var(--sidebar-color); | |
| 30 | +} | |
| 31 | + | |
| 32 | +.formidable_page_formidable-applications #wpcontent { | |
| 25 | 33 | padding-left: 0; |
| 26 | 34 | } |
| 27 | 35 | |
| 36 | +.frm-applications-index-content { | |
| 37 | + padding: 40px 40px 0; | |
| 38 | +} | |
| 39 | + | |
| 28 | 40 | .frm-application-cards-grid { |
| 29 | - padding-top: var(--gap-md); | |
| 30 | 41 | padding-bottom: 50px; |
| 31 | - grid-gap: var(--gap-md); | |
| 32 | 42 | } |
| 33 | 43 | |
| 34 | 44 | .frm-application-cards-grid:last-child { |
| 35 | 45 | padding-bottom: 100px; |
| @@ -34,59 +44,60 @@ | ||
| 34 | 44 | .frm-application-cards-grid:last-child { |
| 35 | 45 | padding-bottom: 100px; |
| 36 | 46 | } |
| 37 | 47 | |
| 38 | -.frm-admin-page-applications #wpbody-content { | |
| 48 | +.formidable_page_formidable-applications #wpbody-content { | |
| 39 | 49 | padding-bottom: 0; |
| 40 | 50 | } |
| 41 | 51 | |
| 42 | 52 | .frm-application-card { |
| 43 | - grid-column: span 4/span 4; /* treat as frm4 */ | |
| 53 | + border-radius: 4px; | |
| 54 | + background: #FFFFFF; | |
| 55 | + grid-column: span 3/span 3; /* treat as frm3 */ | |
| 56 | + padding: 10px 0; | |
| 57 | + display: flex; | |
| 44 | 58 | flex-direction: column; |
| 45 | - gap: 0; | |
| 46 | 59 | } |
| 47 | 60 | |
| 61 | +.frm-application-card:nth-child(4) ~ .frm-application-card { | |
| 62 | + margin-top: 20px; | |
| 63 | +} | |
| 64 | + | |
| 48 | 65 | .frm-application-template-card { |
| 49 | 66 | cursor: pointer; |
| 50 | 67 | } |
| 51 | 68 | |
| 52 | 69 | .frm-application-template-card:hover { |
| 53 | - box-shadow: var(--box-shadow-lg); | |
| 70 | + filter: drop-shadow(0px 12px 24px rgba(72, 78, 84, 0.2)); | |
| 54 | 71 | } |
| 55 | 72 | |
| 56 | -.frm-application-template-card:hover h3 { | |
| 57 | - color: var(--primary-500); | |
| 73 | +.frm-application-template-card:hover h4 { | |
| 74 | + color: var(--primary-color); | |
| 58 | 75 | } |
| 59 | 76 | |
| 60 | 77 | /* 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); | |
| 78 | +.frm-application-card h4 { | |
| 79 | + font-weight: 600; | |
| 80 | + display: inline-block; | |
| 81 | + max-width: 100%; | |
| 82 | + overflow: hidden; | |
| 83 | + white-space: nowrap; | |
| 84 | + text-overflow: ellipsis; | |
| 67 | 85 | margin: 0; |
| 68 | - font-size: var(--text-sm) !important; | |
| 69 | - font-weight: 500; | |
| 70 | - min-height: 28px; | |
| 71 | 86 | } |
| 72 | 87 | |
| 73 | -.frm-application-card h3 .frmsvg { | |
| 74 | - width: 11px; | |
| 75 | - height: 13px; | |
| 88 | +.frm-locked-application-template h4 { | |
| 89 | + opacity: 0.85; | |
| 90 | + max-width: calc( 100% - 30px ); | |
| 76 | 91 | } |
| 77 | 92 | |
| 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; | |
| 93 | +.frm-locked-application-template > div:first-child > span > .frmsvg { | |
| 94 | + position: relative; | |
| 95 | + bottom: 5px; | |
| 96 | + width: 14px; | |
| 97 | + height: 14px; | |
| 83 | 98 | } |
| 84 | 99 | |
| 85 | -.frm-application-card h3 .frm-meta-tag { | |
| 86 | - margin: 0; | |
| 87 | -} | |
| 88 | - | |
| 89 | 100 | #frm_application_templates_grid .frm-application-card .frm-button-secondary { |
| 90 | 101 | display: flex; |
| 91 | 102 | flex-direction: row; |
| 92 | 103 | } |
| @@ -98,45 +109,39 @@ | ||
| 98 | 109 | right: 2px; |
| 99 | 110 | align-self: center; |
| 100 | 111 | } |
| 101 | 112 | |
| 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 | 113 | /* Use template anchor */ |
| 113 | 114 | #frm_application_templates_grid .frm-application-card .frm-button-secondary { |
| 114 | - display: none; | |
| 115 | + position: absolute; | |
| 116 | + right: 10px; | |
| 117 | + bottom: 0; | |
| 118 | + line-height: 17px; | |
| 119 | + min-height: 17px; | |
| 120 | + height: 20px; | |
| 115 | 121 | } |
| 116 | -#frm_application_templates_grid .frm-application-card:hover .frm-button-secondary { | |
| 117 | - display: inline-block; | |
| 118 | -} | |
| 119 | 122 | |
| 120 | 123 | /* Card description */ |
| 121 | 124 | .frm-application-card > div:first-child > div { |
| 122 | - font-size: var(--text-xs); | |
| 125 | + font-size: 12px; | |
| 123 | 126 | } |
| 124 | 127 | |
| 128 | +.frm-application-card > div { | |
| 129 | + padding: 0 10px; | |
| 130 | +} | |
| 131 | + | |
| 125 | 132 | .frm-application-item-count { |
| 126 | - font-size: var(--text-xs); | |
| 127 | - color: var(--grey-500); | |
| 128 | - margin-top: var(--gap-xs); | |
| 133 | + font-size: 11px; | |
| 134 | + color: var(--medium-grey); | |
| 135 | + margin-top: 4px; | |
| 129 | 136 | } |
| 130 | 137 | |
| 131 | -#frm_view_application_modal .frm_note_style2 { | |
| 132 | - margin-right: var(--gap-md); | |
| 133 | - margin-left: var(--gap-md); | |
| 134 | - padding: 10px; | |
| 135 | - border-radius: 8px; | |
| 138 | +#frm_view_application_modal .frm_warning_style { | |
| 139 | + border: none aliceblue; | |
| 140 | + margin-top: 0; | |
| 141 | + padding: 20px; | |
| 142 | + border-radius: 0; | |
| 136 | 143 | display: flex; |
| 137 | - justify-content: space-between; | |
| 138 | - align-items: center; | |
| 139 | 144 | } |
| 140 | 145 | |
| 141 | 146 | #frm_view_application_modal .frm_warning_style span { |
| 142 | 147 | flex: 1; |
| @@ -157,12 +162,12 @@ | ||
| 157 | 162 | flex: 1; |
| 158 | 163 | } |
| 159 | 164 | |
| 160 | 165 | .frm-application-modal-details { |
| 161 | - padding: 25px var(--gap-md); | |
| 166 | + padding: 25px 30px; | |
| 162 | 167 | } |
| 163 | 168 | |
| 164 | -.frm-admin-page-applications .ui-widget-overlay { | |
| 169 | +.formidable_page_formidable-applications .ui-widget-overlay { | |
| 165 | 170 | position: fixed; |
| 166 | 171 | width: 100%; |
| 167 | 172 | height: 100%; |
| 168 | 173 | top: 0; |
| @@ -174,40 +179,30 @@ | ||
| 174 | 179 | } |
| 175 | 180 | |
| 176 | 181 | #frm_view_application_modal .frm-application-image-wrapper { |
| 177 | 182 | background-color: #F6F7FB; |
| 178 | - padding: 20px var(--gap-md) 15px; | |
| 183 | + padding: 20px 30px 15px; | |
| 179 | 184 | } |
| 180 | 185 | |
| 181 | -#frm_view_application_modal img { | |
| 182 | - height: 245px; | |
| 183 | -} | |
| 184 | - | |
| 185 | -#frm_view_application_modal .frm_modal_content { | |
| 186 | - max-height: 75vh !important; | |
| 187 | - flex: 1; | |
| 188 | - overflow-y: auto; | |
| 189 | -} | |
| 190 | - | |
| 191 | -#frm_view_application_modal .postbox { | |
| 192 | - max-height: 800px !important; | |
| 193 | -} | |
| 194 | - | |
| 195 | 186 | .frm-application-modal-label { |
| 196 | 187 | opacity: 0.65; |
| 197 | 188 | margin-bottom: 5px; |
| 198 | 189 | } |
| 199 | 190 | |
| 200 | -.frm-admin-page-applications #frm_bs_dropdown .install-now { | |
| 191 | +.formidable_page_formidable-applications #frm_bs_dropdown .install-now { | |
| 201 | 192 | vertical-align: bottom; |
| 202 | 193 | } |
| 203 | 194 | |
| 195 | +.frm-application-card svg + h4 { | |
| 196 | + margin-left: 10px; | |
| 197 | +} | |
| 198 | + | |
| 204 | 199 | #frm_application_category_filter { |
| 205 | - display: inline-block; | |
| 200 | + display: inline-block; | |
| 206 | 201 | } |
| 207 | 202 | |
| 208 | 203 | #frm_application_category_filter > a { |
| 209 | - padding: 0 8px; | |
| 204 | + padding: 0 10px; | |
| 210 | 205 | } |
| 211 | 206 | |
| 212 | 207 | #frm_application_category_filter > a:first-child { |
| 213 | 208 | padding-left: 0; |
| @@ -216,16 +211,17 @@ | ||
| 216 | 211 | #frm_application_category_filter > a:last-child { |
| 217 | 212 | padding-right: 0; |
| 218 | 213 | } |
| 219 | 214 | |
| 215 | +#frm_application_category_filter > a.frm-active-application-category { | |
| 216 | + color: var(--dark-grey); | |
| 217 | + pointer-events: none; | |
| 218 | +} | |
| 219 | + | |
| 220 | 220 | .frm-admin-page-applications #frm_top_bar h1 { |
| 221 | 221 | width: auto; |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | -.frm-admin-page-applications #frm_top_bar .install-now { | |
| 225 | - vertical-align: bottom; | |
| 226 | -} | |
| 227 | - | |
| 228 | 224 | .frm-application-templates-nav .frm-search { |
| 229 | 225 | margin-top: 0; |
| 230 | 226 | } |
| 231 | 227 | |
| @@ -232,66 +228,35 @@ | ||
| 232 | 228 | .frm-application-templates-nav.wrap { |
| 233 | 229 | margin-right: 0; |
| 234 | 230 | } |
| 235 | 231 | |
| 236 | -#frm_custom_applications_placeholder { | |
| 237 | - border-radius: 16px; | |
| 238 | - overflow: hidden; | |
| 239 | - position: relative; | |
| 240 | - margin-top: 40px; | |
| 241 | - margin-bottom: 25px; | |
| 242 | - background-color: #fff; | |
| 243 | - padding: 11px 8px; | |
| 244 | -} | |
| 245 | - | |
| 246 | -#frm_custom_applications_placeholder:before { | |
| 247 | - content: ''; | |
| 248 | - display: block; | |
| 249 | - background: linear-gradient(90deg, #1961D5 0.76%, #E8ABEF 100%); | |
| 250 | - height: 4px; | |
| 251 | - margin: auto; | |
| 232 | +#frm_custom_applications_placeholder > div:first-child { | |
| 252 | 233 | position: absolute; |
| 253 | - top: 0; | |
| 254 | - left: 0; | |
| 255 | - width: 100%; | |
| 256 | 234 | } |
| 257 | 235 | |
| 258 | -#frm_custom_applications_placeholder img { | |
| 259 | - margin-right: 5px; | |
| 260 | - float: left; | |
| 236 | +#frm_custom_applications_placeholder > div:last-child { | |
| 237 | + text-align: center; | |
| 238 | + max-width: 500px; | |
| 239 | + margin: 0 auto 20px; | |
| 240 | + position: relative; | |
| 241 | + top: 20px; | |
| 261 | 242 | } |
| 262 | 243 | |
| 263 | -#frm_custom_applications_placeholder div a { | |
| 264 | - margin-top: var(--gap-md); | |
| 244 | +#frm_custom_applications_placeholder > div a { | |
| 245 | + margin-top: 20px; | |
| 265 | 246 | } |
| 266 | 247 | |
| 267 | -#frm_custom_applications_placeholder .frm2 { | |
| 268 | - text-align: right; | |
| 269 | - padding-right: 24px; | |
| 270 | -} | |
| 271 | - | |
| 272 | -#frm_custom_applications_placeholder h3 { | |
| 273 | - font-weight: 700; | |
| 274 | - margin-bottom: 4px; | |
| 275 | -} | |
| 276 | - | |
| 277 | -.frm-application-modal-label ~ .frm-application-modal-label { | |
| 278 | - margin-top: var(--gap-md); | |
| 279 | -} | |
| 280 | - | |
| 281 | -ul.frm-application-item-list { | |
| 282 | - margin-top: 0; | |
| 283 | - list-style: disc; | |
| 284 | - list-style-position: inside; | |
| 285 | -} | |
| 286 | - | |
| 287 | -@media only screen and (max-width: 1200px) { | |
| 248 | +@media only screen and (max-width: 1050px) { | |
| 288 | 249 | .frm-application-card { |
| 289 | 250 | grid-column: span 6/span 6; /* treat as frm6 */ |
| 290 | 251 | } |
| 252 | + | |
| 253 | + .frm-application-card:nth-child(2) ~ .frm-application-card { | |
| 254 | + margin-top: 20px; | |
| 255 | + } | |
| 291 | 256 | } |
| 292 | 257 | |
| 293 | -@media only screen and (max-width: 600px) { | |
| 258 | +@media only screen and (max-width: 782px) { | |
| 294 | 259 | #frm_application_category_filter { |
| 295 | 260 | display: block; |
| 296 | 261 | margin-left: 0; |
| 297 | 262 | } |
| @@ -297,6 +262,10 @@ | ||
| 297 | 262 | } |
| 298 | 263 | |
| 299 | 264 | .frm-application-card { |
| 300 | 265 | grid-column: span 12/span 12; /* treat as frm12 */ |
| 266 | + } | |
| 267 | + | |
| 268 | + .frm-application-card:nth-child(1) ~ .frm-application-card { | |
| 269 | + margin-top: 20px; | |
| 301 | 270 | } |
| 302 | 271 | } |