| 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_note_style2 { |
| 132 |
margin-right: var(--gap-md); |
| 133 |
margin-left: var(--gap-md); |
| 134 |
padding: 10px; |
| 135 |
border-radius: 8px; |
| 136 |
display: flex; |
| 137 |
justify-content: space-between; |
| 138 |
align-items: center; |
| 139 |
} |
| 140 |
|
| 141 |
#frm_view_application_modal .frm_warning_style span { |
| 142 |
flex: 1; |
| 143 |
} |
| 144 |
|
| 145 |
#frm_view_application_modal .frm_warning_style a:focus { |
| 146 |
box-shadow: none; |
| 147 |
} |
| 148 |
|
| 149 |
.frm-application-card-image-wrapper { |
| 150 |
min-height: 130px; |
| 151 |
display: flex; |
| 152 |
align-items: center; |
| 153 |
align-self: center; |
| 154 |
} |
| 155 |
|
| 156 |
.frm-flex { |
| 157 |
flex: 1; |
| 158 |
} |
| 159 |
|
| 160 |
.frm-application-modal-details { |
| 161 |
padding: 25px var(--gap-md); |
| 162 |
} |
| 163 |
|
| 164 |
.frm-admin-page-applications .ui-widget-overlay { |
| 165 |
position: fixed; |
| 166 |
width: 100%; |
| 167 |
height: 100%; |
| 168 |
top: 0; |
| 169 |
left: 0; |
| 170 |
right: 0; |
| 171 |
bottom: 0; |
| 172 |
background: var(--grey-border); |
| 173 |
z-index: 2; |
| 174 |
} |
| 175 |
|
| 176 |
#frm_view_application_modal .frm-application-image-wrapper { |
| 177 |
background-color: #F6F7FB; |
| 178 |
padding: 20px var(--gap-md) 15px; |
| 179 |
} |
| 180 |
|
| 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 |
.frm-application-modal-label { |
| 196 |
opacity: 0.65; |
| 197 |
margin-bottom: 5px; |
| 198 |
} |
| 199 |
|
| 200 |
.frm-admin-page-applications #frm_bs_dropdown .install-now { |
| 201 |
vertical-align: bottom; |
| 202 |
} |
| 203 |
|
| 204 |
#frm_application_category_filter { |
| 205 |
display: inline-block; |
| 206 |
} |
| 207 |
|
| 208 |
#frm_application_category_filter > a { |
| 209 |
padding: 0 8px; |
| 210 |
} |
| 211 |
|
| 212 |
#frm_application_category_filter > a:first-child { |
| 213 |
padding-left: 0; |
| 214 |
} |
| 215 |
|
| 216 |
#frm_application_category_filter > a:last-child { |
| 217 |
padding-right: 0; |
| 218 |
} |
| 219 |
|
| 220 |
.frm-admin-page-applications #frm_top_bar h1 { |
| 221 |
width: auto; |
| 222 |
} |
| 223 |
|
| 224 |
.frm-admin-page-applications #frm_top_bar .install-now { |
| 225 |
vertical-align: bottom; |
| 226 |
} |
| 227 |
|
| 228 |
.frm-application-templates-nav .frm-search { |
| 229 |
margin-top: 0; |
| 230 |
} |
| 231 |
|
| 232 |
.frm-application-templates-nav.wrap { |
| 233 |
margin-right: 0; |
| 234 |
} |
| 235 |
|
| 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; |
| 252 |
position: absolute; |
| 253 |
top: 0; |
| 254 |
left: 0; |
| 255 |
width: 100%; |
| 256 |
} |
| 257 |
|
| 258 |
#frm_custom_applications_placeholder img { |
| 259 |
margin-right: 5px; |
| 260 |
float: left; |
| 261 |
} |
| 262 |
|
| 263 |
#frm_custom_applications_placeholder div a { |
| 264 |
margin-top: var(--gap-md); |
| 265 |
} |
| 266 |
|
| 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) { |
| 288 |
.frm-application-card { |
| 289 |
grid-column: span 6/span 6; /* treat as frm6 */ |
| 290 |
} |
| 291 |
} |
| 292 |
|
| 293 |
@media only screen and (max-width: 600px) { |
| 294 |
#frm_application_category_filter { |
| 295 |
display: block; |
| 296 |
margin-left: 0; |
| 297 |
} |
| 298 |
|
| 299 |
.frm-application-card { |
| 300 |
grid-column: span 12/span 12; /* treat as frm12 */ |
| 301 |
} |
| 302 |
} |
| 303 |
|