| @@ -20,16 +20,8 @@ | ||
| 20 | 20 | #frm_custom_applications_placeholder { |
| 21 | 21 | position: relative; |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | -.frm-admin-page-applications #frm_top_bar { | |
| 25 | - background: #fff; | |
| 26 | -} | |
| 27 | - | |
| 28 | -.frm-admin-page-applications #wpbody { | |
| 29 | - background: var(--sidebar-color); | |
| 30 | -} | |
| 31 | - | |
| 32 | 24 | .frm-admin-page-applications #wpcontent { |
| 33 | 25 | padding-left: 0; |
| 34 | 26 | } |
| 35 | 27 | |
| @@ -47,15 +39,11 @@ | ||
| 47 | 39 | padding-bottom: 0; |
| 48 | 40 | } |
| 49 | 41 | |
| 50 | 42 | .frm-application-card { |
| 51 | - border-radius: var(--small-radius); | |
| 52 | - background: #FFFFFF; | |
| 53 | 43 | grid-column: span 3/span 3; /* treat as frm3 */ |
| 54 | - padding: 10px 0; | |
| 55 | - display: flex; | |
| 56 | 44 | flex-direction: column; |
| 57 | - box-shadow: var(--box-shadow-sm); | |
| 45 | + gap: 0; | |
| 58 | 46 | } |
| 59 | 47 | |
| 60 | 48 | .frm-application-template-card { |
| 61 | 49 | cursor: pointer; |
| @@ -64,31 +52,40 @@ | ||
| 64 | 52 | .frm-application-template-card:hover { |
| 65 | 53 | box-shadow: var(--box-shadow-lg); |
| 66 | 54 | } |
| 67 | 55 | |
| 68 | -.frm-application-template-card:hover h4 { | |
| 56 | +.frm-application-template-card:hover h3 { | |
| 69 | 57 | color: var(--primary-500); |
| 70 | 58 | } |
| 71 | 59 | |
| 72 | 60 | /* Card title */ |
| 73 | -.frm-application-card h4 { | |
| 74 | - display: inline-block; | |
| 75 | - max-width: 100%; | |
| 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 | +} | |
| 71 | + | |
| 72 | +.frm-application-card h3 .frmsvg { | |
| 73 | + width: 11px; | |
| 74 | + height: 13px; | |
| 75 | +} | |
| 76 | + | |
| 77 | +.frm-application-card h3 .frm-inner-text { | |
| 78 | + max-width: calc( 100% - 50px ); | |
| 76 | 79 | overflow: hidden; |
| 77 | 80 | white-space: nowrap; |
| 78 | 81 | text-overflow: ellipsis; |
| 79 | - margin: 0; | |
| 80 | 82 | } |
| 81 | 83 | |
| 82 | -.frm-locked-application-template h4 { | |
| 83 | - opacity: 0.85; | |
| 84 | - max-width: calc( 100% - 30px ); | |
| 84 | +.frm-application-card h3 .frm-meta-tag { | |
| 85 | + margin: 0; | |
| 85 | 86 | } |
| 86 | 87 | |
| 87 | -.frm-application-card h4 .frmsvg { | |
| 88 | - margin-right: var(--gap-xs); | |
| 89 | -} | |
| 90 | - | |
| 91 | 88 | #frm_application_templates_grid .frm-application-card .frm-button-secondary { |
| 92 | 89 | display: flex; |
| 93 | 90 | flex-direction: row; |
| 94 | 91 | } |
| @@ -109,19 +106,15 @@ | ||
| 109 | 106 | } |
| 110 | 107 | |
| 111 | 108 | /* Card description */ |
| 112 | 109 | .frm-application-card > div:first-child > div { |
| 113 | - font-size: 12px; | |
| 110 | + font-size: var(--text-xs); | |
| 114 | 111 | } |
| 115 | 112 | |
| 116 | -.frm-application-card > div { | |
| 117 | - padding: 0 10px; | |
| 118 | -} | |
| 119 | - | |
| 120 | 113 | .frm-application-item-count { |
| 121 | - font-size: 11px; | |
| 122 | - color: var(--medium-grey); | |
| 123 | - margin-top: 4px; | |
| 114 | + font-size: var(--text-xs); | |
| 115 | + color: var(--grey-500); | |
| 116 | + margin-top: var(--gap-xs); | |
| 124 | 117 | } |
| 125 | 118 | |
| 126 | 119 | #frm_view_application_modal .frm_warning_style { |
| 127 | 120 | border: none aliceblue; |
| @@ -188,18 +181,14 @@ | ||
| 188 | 181 | .frm-admin-page-applications #frm_bs_dropdown .install-now { |
| 189 | 182 | vertical-align: bottom; |
| 190 | 183 | } |
| 191 | 184 | |
| 192 | -.frm-application-card svg + h4 { | |
| 193 | - margin-left: 10px; | |
| 194 | -} | |
| 195 | - | |
| 196 | 185 | #frm_application_category_filter { |
| 197 | - display: inline-block; | |
| 186 | + display: inline-block; | |
| 198 | 187 | } |
| 199 | 188 | |
| 200 | 189 | #frm_application_category_filter > a { |
| 201 | - padding: 0 8px; | |
| 190 | + padding: 0 8px; | |
| 202 | 191 | } |
| 203 | 192 | |
| 204 | 193 | #frm_application_category_filter > a:first-child { |
| 205 | 194 | padding-left: 0; |