| 1 |
/* css/email_subscription.css */ |
| 2 |
.qchero_sliders_list_wrapper { |
| 3 |
background: #fff; |
| 4 |
padding: 20px; |
| 5 |
margin: 20px 20px 0 0; |
| 6 |
border-radius: 8px; |
| 7 |
box-shadow: 0 4px 15px rgba(0,0,0,0.05); |
| 8 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 9 |
} |
| 10 |
|
| 11 |
.sld_menu_title h2 { |
| 12 |
font-size: 22px; |
| 13 |
font-weight: 600; |
| 14 |
color: #23282d; |
| 15 |
margin: 0 0 15px 0; |
| 16 |
} |
| 17 |
|
| 18 |
.sld_menu_title_align { |
| 19 |
display: flex; |
| 20 |
justify-content: space-between; |
| 21 |
align-items: center; |
| 22 |
margin-bottom: 20px; |
| 23 |
font-size: 14px; |
| 24 |
color: #666; |
| 25 |
} |
| 26 |
|
| 27 |
.sld_menu_title_align .button-primary { |
| 28 |
background: #007cba; |
| 29 |
border-color: #007cba; |
| 30 |
border-radius: 4px; |
| 31 |
padding: 4px 12px; |
| 32 |
color: #fff; |
| 33 |
text-decoration: none; |
| 34 |
font-weight: 500; |
| 35 |
} |
| 36 |
|
| 37 |
#wpbot_submit_email_form.button-primary { |
| 38 |
background: #d63638; |
| 39 |
border-color: #d63638; |
| 40 |
color: #fff; |
| 41 |
font-weight: 500; |
| 42 |
border-radius: 4px; |
| 43 |
padding: 6px 16px; |
| 44 |
cursor: pointer; |
| 45 |
margin-bottom: 15px; |
| 46 |
transition: background 0.2s ease; |
| 47 |
border: 1px solid transparent; |
| 48 |
} |
| 49 |
#wpbot_submit_email_form.button-primary:hover { |
| 50 |
background: #b32d2f; |
| 51 |
border-color: #b32d2f; |
| 52 |
} |
| 53 |
|
| 54 |
.qchero_slider_table_area { |
| 55 |
margin-top: 15px; |
| 56 |
border: 1px solid #e5e5e5; |
| 57 |
border-radius: 6px; |
| 58 |
overflow: hidden; |
| 59 |
} |
| 60 |
|
| 61 |
.sld_payment_table { |
| 62 |
display: flex; |
| 63 |
flex-direction: column; |
| 64 |
width: 100%; |
| 65 |
} |
| 66 |
|
| 67 |
.sld_payment_row { |
| 68 |
display: flex; |
| 69 |
align-items: center; |
| 70 |
border-bottom: 1px solid #f0f0f0; |
| 71 |
background: #fff; |
| 72 |
transition: background 0.15s ease; |
| 73 |
} |
| 74 |
|
| 75 |
.sld_payment_row:hover { |
| 76 |
background: #fafafa; |
| 77 |
} |
| 78 |
|
| 79 |
.sld_payment_row.header { |
| 80 |
background: #f9f9f9; |
| 81 |
border-bottom: 2px solid #e5e5e5; |
| 82 |
font-weight: 600; |
| 83 |
color: #32373c; |
| 84 |
} |
| 85 |
|
| 86 |
.sld_payment_row.header:hover { |
| 87 |
background: #f9f9f9; |
| 88 |
} |
| 89 |
|
| 90 |
.sld_payment_cell { |
| 91 |
padding: 12px 15px; |
| 92 |
flex: 1; |
| 93 |
font-size: 13px; |
| 94 |
color: #555d66; |
| 95 |
word-break: break-word; |
| 96 |
display: flex; |
| 97 |
align-items: center; |
| 98 |
} |
| 99 |
|
| 100 |
/* Specific column sizes */ |
| 101 |
.sld_payment_cell:first-child { |
| 102 |
flex: 0 0 50px; |
| 103 |
justify-content: center; |
| 104 |
padding-right: 0; |
| 105 |
} |
| 106 |
|
| 107 |
.sld_payment_cell:nth-child(2) { |
| 108 |
flex: 0 0 120px; /* Date column width */ |
| 109 |
} |
| 110 |
|
| 111 |
.sld_payment_cell input[type="checkbox"] { |
| 112 |
margin: 0; |
| 113 |
cursor: pointer; |
| 114 |
} |
| 115 |
|
| 116 |
.sld_responsive_head { |
| 117 |
display: none; |
| 118 |
} |
| 119 |
|
| 120 |
/* Pagination Styling */ |
| 121 |
.wpbot_pagination { |
| 122 |
margin-right: 10px; |
| 123 |
font-weight: 500; |
| 124 |
} |
| 125 |
|
| 126 |
.page-numbers { |
| 127 |
background: #fff; |
| 128 |
border: 1px solid #ccc; |
| 129 |
padding: 3px 8px; |
| 130 |
text-decoration: none; |
| 131 |
margin: 0 2px; |
| 132 |
border-radius: 3px; |
| 133 |
color: #007cba; |
| 134 |
} |
| 135 |
|
| 136 |
.page-numbers.current { |
| 137 |
background: #007cba; |
| 138 |
color: #fff; |
| 139 |
border-color: #007cba; |
| 140 |
} |
| 141 |
|