| 1 |
/** |
| 2 |
* Add-Ons Page Styles |
| 3 |
* |
| 4 |
* This file includes all CSS rules specifically for the Add-Ons page. |
| 5 |
*/ |
| 6 |
|
| 7 |
/** |
| 8 |
* Page General Styles |
| 9 |
* |
| 10 |
* This section defines the basic typography and layout styles for the Form Templates page. |
| 11 |
*/ |
| 12 |
#frm-addons-page .frm-upgrade-bar { |
| 13 |
display: none; |
| 14 |
} |
| 15 |
|
| 16 |
.frm-list-grid-layout { |
| 17 |
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); |
| 18 |
} |
| 19 |
|
| 20 |
#post-body-content[data-category="active-addons"] .frm-addons-request-addon, |
| 21 |
#post-body-content[data-category="available-addons"] .frm-addons-request-addon { |
| 22 |
display: none; |
| 23 |
} |
| 24 |
|
| 25 |
/* Card */ |
| 26 |
#frm-addons-page .frm-card-item { |
| 27 |
padding: var(--gap-sm) var(--gap-md); |
| 28 |
gap: 12px; |
| 29 |
border-color: var(--grey-300); |
| 30 |
box-shadow: var(--box-shadow-sm); |
| 31 |
transition: box-shadow 200ms ease-in-out; |
| 32 |
} |
| 33 |
|
| 34 |
#frm-addons-page .frm-card-item:hover { |
| 35 |
box-shadow: var(--box-shadow-md); |
| 36 |
} |
| 37 |
|
| 38 |
.frm-card-item p, |
| 39 |
.frm-card-item h3 { |
| 40 |
margin: 0; |
| 41 |
} |
| 42 |
|
| 43 |
.frm-border-icon > svg { |
| 44 |
width: 24px; |
| 45 |
} |
| 46 |
|
| 47 |
.frm-card-lock-icon svg { |
| 48 |
width: 13px; |
| 49 |
height: 13px; |
| 50 |
color: var(--grey-800); |
| 51 |
} |
| 52 |
|
| 53 |
.plugin-card-activecampaign-wordpress-plugin .frm-border-icon svg { |
| 54 |
color: #004cff; |
| 55 |
} |
| 56 |
|
| 57 |
.plugin-card-aweber .frm-border-icon svg { |
| 58 |
color: #246be8; |
| 59 |
} |
| 60 |
|
| 61 |
.plugin-card-campaign-monitor .frm-border-icon svg { |
| 62 |
color: #7856FF; |
| 63 |
} |
| 64 |
|
| 65 |
.plugin-card-constant-contact .frm-border-icon svg { |
| 66 |
color: #1856ed; |
| 67 |
} |
| 68 |
|
| 69 |
.plugin-card-getresponse-wordpress-plugin .frm-border-icon svg { |
| 70 |
color: #00baff; |
| 71 |
} |
| 72 |
|
| 73 |
.plugin-card-google-sheets .frm-border-icon svg { |
| 74 |
color: #34a853; |
| 75 |
} |
| 76 |
|
| 77 |
.plugin-card-hubspot-wordpress .frm-border-icon svg { |
| 78 |
color: #ff7a59; |
| 79 |
} |
| 80 |
|
| 81 |
.plugin-card-mailchimp .frm-border-icon svg { |
| 82 |
color: #000; |
| 83 |
} |
| 84 |
|
| 85 |
.plugin-card-mailpoet-newsletters .frm-border-icon svg { |
| 86 |
color: #fe5301; |
| 87 |
} |
| 88 |
|
| 89 |
.plugin-card-paypal-standard .frm-border-icon svg { |
| 90 |
color: #0070e0; |
| 91 |
} |
| 92 |
|
| 93 |
.plugin-card-zapier .frm-border-icon svg { |
| 94 |
color: #ff4a00; |
| 95 |
} |
| 96 |
|
| 97 |
.plugin-card-twilio .frm-border-icon svg { |
| 98 |
color: #F22F46; |
| 99 |
} |
| 100 |
|
| 101 |
.plugin-card-n8n .frm-border-icon svg { |
| 102 |
color: #EA4B71; |
| 103 |
} |
| 104 |
|
| 105 |
.plugin-card-formidable-pro.frm-addon-active .frm_toggle_block { |
| 106 |
pointer-events: none; |
| 107 |
} |
| 108 |
|
| 109 |
#frm-addons-page .frm-addon-button { |
| 110 |
display: none; |
| 111 |
} |
| 112 |
|
| 113 |
.frm-addon-error { |
| 114 |
border-radius: 0; |
| 115 |
background-color: var(--error-100); |
| 116 |
left: 0; |
| 117 |
right: 0; |
| 118 |
} |
| 119 |
|
| 120 |
.frm-addon-error p { |
| 121 |
color: var(--grey-900); |
| 122 |
} |
| 123 |
|
| 124 |
.frm_loading_button ~ .frm_toggle { |
| 125 |
pointer-events: none; |
| 126 |
} |
| 127 |
|
| 128 |
.frm_loading_button ~ .frm_toggle .frm_toggle_slider { |
| 129 |
opacity: 0.7; |
| 130 |
background: linear-gradient( |
| 131 |
90deg, |
| 132 |
var(--grey-200) 25%, |
| 133 |
var(--grey-300) 50%, |
| 134 |
var(--grey-200) 75% |
| 135 |
); |
| 136 |
background-size: 400% 100%; |
| 137 |
animation: skeleton-animation 3s infinite ease-in-out; |
| 138 |
} |
| 139 |
|
| 140 |
@keyframes skeleton-animation { |
| 141 |
0% { |
| 142 |
background-position: 0% 0%; |
| 143 |
} |
| 144 |
50% { |
| 145 |
background-position: 100% 100%; |
| 146 |
} |
| 147 |
100% { |
| 148 |
background-position: 0% 0%; |
| 149 |
} |
| 150 |
} |
| 151 |
|