| 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-border-icon > svg { |
| 27 |
width: 24px; |
| 28 |
} |
| 29 |
|
| 30 |
.frm-card-lock-icon svg { |
| 31 |
width: 13px; |
| 32 |
height: 13px; |
| 33 |
color: var(--grey-800); |
| 34 |
} |
| 35 |
|
| 36 |
.plugin-card-activecampaign-wordpress-plugin .frm-border-icon svg { |
| 37 |
color: #004cff; |
| 38 |
} |
| 39 |
|
| 40 |
.plugin-card-aweber .frm-border-icon svg { |
| 41 |
color: #246be8; |
| 42 |
} |
| 43 |
|
| 44 |
.plugin-card-campaign-monitor .frm-border-icon svg { |
| 45 |
color: #7856ff; |
| 46 |
} |
| 47 |
|
| 48 |
.plugin-card-constant-contact .frm-border-icon svg { |
| 49 |
color: #1856ed; |
| 50 |
} |
| 51 |
|
| 52 |
.plugin-card-getresponse-wordpress-plugin .frm-border-icon svg { |
| 53 |
color: #00baff; |
| 54 |
} |
| 55 |
|
| 56 |
.plugin-card-google-sheets .frm-border-icon svg { |
| 57 |
color: #34a853; |
| 58 |
} |
| 59 |
|
| 60 |
.plugin-card-hubspot-wordpress .frm-border-icon svg { |
| 61 |
color: #ff7a59; |
| 62 |
} |
| 63 |
|
| 64 |
.plugin-card-mailchimp .frm-border-icon svg { |
| 65 |
color: #000; |
| 66 |
} |
| 67 |
|
| 68 |
.plugin-card-mailpoet-newsletters .frm-border-icon svg { |
| 69 |
color: #fe5301; |
| 70 |
} |
| 71 |
|
| 72 |
.plugin-card-paypal-standard .frm-border-icon svg { |
| 73 |
color: #0070e0; |
| 74 |
} |
| 75 |
|
| 76 |
.plugin-card-zapier .frm-border-icon svg { |
| 77 |
color: #ff4a00; |
| 78 |
} |
| 79 |
|
| 80 |
.plugin-card-twilio .frm-border-icon svg { |
| 81 |
color: #f22f46; |
| 82 |
} |
| 83 |
|
| 84 |
.plugin-card-n8n .frm-border-icon svg { |
| 85 |
color: #ea4b71; |
| 86 |
} |
| 87 |
|
| 88 |
.plugin-card-formidable-pro.frm-addon-active .frm_toggle_block { |
| 89 |
pointer-events: none; |
| 90 |
} |
| 91 |
|
| 92 |
#frm-addons-page .frm-addon-button { |
| 93 |
display: none; |
| 94 |
} |
| 95 |
|
| 96 |
.frm-addon-error { |
| 97 |
border-radius: 0; |
| 98 |
background-color: var(--error-100); |
| 99 |
left: 0; |
| 100 |
right: 0; |
| 101 |
} |
| 102 |
|
| 103 |
.frm-addon-error p { |
| 104 |
color: var(--grey-900); |
| 105 |
} |
| 106 |
|
| 107 |
.frm_loading_button ~ .frm_toggle { |
| 108 |
pointer-events: none; |
| 109 |
} |
| 110 |
|
| 111 |
.frm_loading_button ~ .frm_toggle .frm_toggle_slider { |
| 112 |
opacity: 0.7; |
| 113 |
background: linear-gradient(90deg, var(--grey-200) 25%, var(--grey-300) 50%, var(--grey-200) 75%); |
| 114 |
background-size: 400% 100%; |
| 115 |
animation: skeleton-animation 3s infinite ease-in-out; |
| 116 |
} |
| 117 |
|
| 118 |
@keyframes skeleton-animation { |
| 119 |
|
| 120 |
0% { |
| 121 |
background-position: 0% 0%; |
| 122 |
} |
| 123 |
|
| 124 |
50% { |
| 125 |
background-position: 100% 100%; |
| 126 |
} |
| 127 |
|
| 128 |
100% { |
| 129 |
background-position: 0% 0%; |
| 130 |
} |
| 131 |
} |
| 132 |
|