| 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 */ |