| 1 |
/* woocommerce styles */ |
| 2 |
.emailkit-open-new-form-editor-modal { |
| 3 |
background-color: #227BFF; |
| 4 |
border: none; |
| 5 |
font-size: 14px; |
| 6 |
font-weight: 500; |
| 7 |
line-height: 35px; |
| 8 |
color: #fff; |
| 9 |
border-radius: 4px; |
| 10 |
padding: 1px 23px 2px; |
| 11 |
-webkit-box-sizing: border-box; |
| 12 |
box-sizing: border-box; |
| 13 |
cursor: pointer; |
| 14 |
transition: all .3s; |
| 15 |
} |
| 16 |
|
| 17 |
.emailkit-open-new-form-editor-modal:hover { |
| 18 |
background: #1168E9; |
| 19 |
} |
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
.emailkit-slider-loader { |
| 24 |
pointer-events: none; |
| 25 |
position: relative; |
| 26 |
background-color: #659ef3; |
| 27 |
} |
| 28 |
|
| 29 |
.emailkit-slider-loader::after { |
| 30 |
content: ""; |
| 31 |
display: inline-block; |
| 32 |
width: 8px; |
| 33 |
height: 8px; |
| 34 |
border: 3px solid #e6e6e6f1; |
| 35 |
border-radius: 50%; |
| 36 |
border-top-color: #210d0d00; |
| 37 |
position: absolute; |
| 38 |
bottom: 3px; |
| 39 |
left: 3px; |
| 40 |
z-index: 9999999999999; |
| 41 |
animation: spin 1s ease-in-out infinite; |
| 42 |
-webkit-animation: spin 1s ease-in-out infinite; |
| 43 |
} |
| 44 |
|
| 45 |
.emailkit-woocom-wrap .emailkit-slider-loader::after { |
| 46 |
left: 5px; |
| 47 |
top: 32%; |
| 48 |
bottom: auto; |
| 49 |
} |
| 50 |
|
| 51 |
.emailkit-woocom-wrap .emailkit-woocom-btn:disabled { |
| 52 |
background-color: #7aa2de; |
| 53 |
cursor: not-allowed; |
| 54 |
} |
| 55 |
|
| 56 |
.emailkit-woocom-wrap .emailkit-woocom-btn:disabled:hover { |
| 57 |
background-color: #7aa2de; |
| 58 |
} |
| 59 |
|
| 60 |
|
| 61 |
/* woocommerce styles */ |
| 62 |
|
| 63 |
/* button styles in metform plugin */ |
| 64 |
#emailkit-metform-button-wrap { |
| 65 |
display: flex; |
| 66 |
align-items: center; |
| 67 |
gap: 8px; |
| 68 |
margin: 20px 0; |
| 69 |
} |
| 70 |
|
| 71 |
#emailkit-metform-button-wrap .metform-go-to-emailkit-builder-btn { |
| 72 |
background: unset; |
| 73 |
flex: 1; |
| 74 |
padding: 14px; |
| 75 |
border: 1px dashed #0D1427; |
| 76 |
border-radius: 4px; |
| 77 |
background-color: #fff; |
| 78 |
font-size: 16px; |
| 79 |
font-weight: 500; |
| 80 |
color: #0D1427; |
| 81 |
cursor: pointer; |
| 82 |
display: flex; |
| 83 |
align-items: center; |
| 84 |
justify-content: center; |
| 85 |
gap: 8px; |
| 86 |
transition: all 0.3s ease; |
| 87 |
} |
| 88 |
|
| 89 |
#emailkit-metform-button-wrap .info-tooltip { |
| 90 |
display: flex; |
| 91 |
justify-content: center; |
| 92 |
align-items: center; |
| 93 |
border-radius: 4px; |
| 94 |
border: 1px solid #D6D7D9; |
| 95 |
background: #FFF; |
| 96 |
padding: 14px; |
| 97 |
transition: all 0.3s ease; |
| 98 |
position: relative; |
| 99 |
} |
| 100 |
|
| 101 |
#emailkit-metform-button-wrap .info-tooltip:hover { |
| 102 |
border: 1px solid #00000000; |
| 103 |
background: #DBDFFA; |
| 104 |
|
| 105 |
} |
| 106 |
|
| 107 |
#emailkit-metform-button-wrap .metform-go-to-emailkit-builder-btn:hover { |
| 108 |
border: 1px solid #0D1427; |
| 109 |
} |
| 110 |
|
| 111 |
.emailkit-upgrade-notice { |
| 112 |
background-color: #fff6cc; |
| 113 |
padding: 22px 20px; |
| 114 |
border-radius: 8px; |
| 115 |
display: flex; |
| 116 |
justify-content: space-between; |
| 117 |
align-items: center; |
| 118 |
font-family: Arial, sans-serif; |
| 119 |
font-size: 14px; |
| 120 |
margin: 16px 0; |
| 121 |
} |
| 122 |
|
| 123 |
.emailkit-upgrade-notice .emailkit-upgrade-text { |
| 124 |
color: #0D1427; |
| 125 |
} |
| 126 |
|
| 127 |
.upgrade-button { |
| 128 |
text-decoration: none; |
| 129 |
background-color: white; |
| 130 |
border: 1px solid #e0e0e0; |
| 131 |
border-radius: 5px; |
| 132 |
padding: 8px 16px; |
| 133 |
font-weight: bold; |
| 134 |
color: #1a1a1a; |
| 135 |
cursor: pointer; |
| 136 |
font-size: 14px; |
| 137 |
display: flex; |
| 138 |
align-items: center; |
| 139 |
gap: 6px; |
| 140 |
transition: all 0.3s ease; |
| 141 |
box-shadow: 0px 1px 3px 0px rgba(13, 20, 39, 0.06); |
| 142 |
} |
| 143 |
|
| 144 |
.upgrade-button:hover { |
| 145 |
border-radius: 4px; |
| 146 |
background-color: #3970FF; |
| 147 |
color: #fff; |
| 148 |
} |
| 149 |
|
| 150 |
.upgrade-button svg path { |
| 151 |
transition: all 0.3s ease; |
| 152 |
} |
| 153 |
|
| 154 |
.upgrade-button:hover svg path { |
| 155 |
stroke: #fff; |
| 156 |
} |
| 157 |
|
| 158 |
#dummy-emailkit-metform-button-wrap { |
| 159 |
display: flex; |
| 160 |
align-items: center; |
| 161 |
gap: 8px; |
| 162 |
margin: 20px 0; |
| 163 |
} |
| 164 |
|
| 165 |
#dummy-emailkit-metform-button-wrap .dummy-emailkit-metform-btn { |
| 166 |
background: unset; |
| 167 |
flex: 1; |
| 168 |
padding: 14px; |
| 169 |
border-radius: 4px; |
| 170 |
border: 1px solid #E6E9ED; |
| 171 |
background-color: #fff; |
| 172 |
font-size: 16px; |
| 173 |
font-weight: 500; |
| 174 |
color: #9D9EA1; |
| 175 |
cursor: pointer; |
| 176 |
display: flex; |
| 177 |
align-items: center; |
| 178 |
justify-content: center; |
| 179 |
gap: 8px; |
| 180 |
cursor: not-allowed !important; |
| 181 |
opacity: 0.6; |
| 182 |
} |
| 183 |
|
| 184 |
#dummy-emailkit-metform-button-wrap .dummy-emailkit-metform-btn svg path { |
| 185 |
stroke: #9D9EA1; |
| 186 |
} |
| 187 |
|
| 188 |
#dummy-emailkit-metform-button-wrap .dummy-info-tooltip { |
| 189 |
border: 1px solid #D6D7D9; |
| 190 |
border-radius: 4px; |
| 191 |
padding: 14px; |
| 192 |
cursor: not-allowed !important; |
| 193 |
opacity: 0.6; |
| 194 |
display: flex; |
| 195 |
justify-content: center; |
| 196 |
align-items: center; |
| 197 |
} |
| 198 |
|
| 199 |
|
| 200 |
|
| 201 |
.metform-info-tooltip-text { |
| 202 |
position: absolute; |
| 203 |
bottom: 121%; |
| 204 |
right: 0; |
| 205 |
background-color: #0b1120; |
| 206 |
color: white; |
| 207 |
padding: 12px 16px; |
| 208 |
border-radius: 8px; |
| 209 |
font-size: 12px; |
| 210 |
line-height: 1.5; |
| 211 |
white-space: normal; |
| 212 |
width: 260px; |
| 213 |
opacity: 0; |
| 214 |
visibility: hidden; |
| 215 |
transition: opacity 0.3s ease; |
| 216 |
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); |
| 217 |
z-index: 1000; |
| 218 |
} |
| 219 |
|
| 220 |
.metform-info-tooltip-text::after { |
| 221 |
content: ""; |
| 222 |
position: absolute; |
| 223 |
top: 100%; |
| 224 |
right: 18px; |
| 225 |
border-width: 6px; |
| 226 |
border-style: solid; |
| 227 |
border-color: #0b1120 transparent transparent transparent; |
| 228 |
} |
| 229 |
|
| 230 |
#emailkit-metform-button-wrap .info-tooltip:hover .metform-info-tooltip-text { |
| 231 |
opacity: 1; |
| 232 |
visibility: visible; |
| 233 |
} |