| 1 |
/*!****************************************************************************************************************************************************************************************************************************************!*\ |
| 2 |
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/editor.scss ***! |
| 3 |
\****************************************************************************************************************************************************************************************************************************************/ |
| 4 |
.wp-block-create-block-tiered-pricing-block table { |
| 5 |
border-collapse: collapse; |
| 6 |
} |
| 7 |
|
| 8 |
/** |
| 9 |
* Tiered Pricing Options |
| 10 |
*/ |
| 11 |
.tiered-pricing-options { |
| 12 |
margin: 20px 0; |
| 13 |
} |
| 14 |
|
| 15 |
.tiered-pricing-option { |
| 16 |
transition: all 0.3s; |
| 17 |
display: flex; |
| 18 |
justify-content: space-between; |
| 19 |
align-items: center; |
| 20 |
padding: 10px; |
| 21 |
border: 1px solid #E5E5E5; |
| 22 |
border-radius: 3px; |
| 23 |
gap: 10px; |
| 24 |
margin-bottom: 10px; |
| 25 |
} |
| 26 |
|
| 27 |
.tiered-pricing-option__pricing { |
| 28 |
text-align: right; |
| 29 |
margin-left: auto; |
| 30 |
font-weight: bold; |
| 31 |
} |
| 32 |
|
| 33 |
.tiered-pricing-option-checkbox { |
| 34 |
width: 18px; |
| 35 |
height: 18px; |
| 36 |
border-radius: 50%; |
| 37 |
position: relative; |
| 38 |
box-sizing: border-box; |
| 39 |
border: 1px solid #E5E5E5; |
| 40 |
} |
| 41 |
|
| 42 |
.tiered-pricing--active .tiered-pricing-option-checkbox::after { |
| 43 |
content: ""; |
| 44 |
width: 12px; |
| 45 |
height: 12px; |
| 46 |
position: absolute; |
| 47 |
border-radius: 50%; |
| 48 |
left: 2px; |
| 49 |
top: 2px; |
| 50 |
} |
| 51 |
|
| 52 |
.tiered-pricing-option-price { |
| 53 |
display: flex; |
| 54 |
gap: 5px; |
| 55 |
align-items: center; |
| 56 |
justify-content: right; |
| 57 |
} |
| 58 |
|
| 59 |
.tiered-pricing-option-price__original { |
| 60 |
font-size: 0.9em; |
| 61 |
font-weight: normal; |
| 62 |
} |
| 63 |
|
| 64 |
.tiered-pricing-option-total { |
| 65 |
font-size: 0.8em; |
| 66 |
display: none; |
| 67 |
justify-content: right; |
| 68 |
align-items: center; |
| 69 |
gap: 5px; |
| 70 |
} |
| 71 |
|
| 72 |
.tiered-pricing-option-total__original_total { |
| 73 |
font-weight: normal; |
| 74 |
font-size: 0.9em; |
| 75 |
} |
| 76 |
|
| 77 |
/** |
| 78 |
* END Tiered Pricing Options styles |
| 79 |
*/ |
| 80 |
/** |
| 81 |
* Tiered pricing select |
| 82 |
*/ |
| 83 |
.tiered-pricing-dropdown { |
| 84 |
margin: 20px 0; |
| 85 |
width: 100%; |
| 86 |
max-width: 800px; |
| 87 |
position: relative; |
| 88 |
} |
| 89 |
|
| 90 |
.tiered-pricing-dropdown__list { |
| 91 |
box-sizing: border-box; |
| 92 |
position: absolute; |
| 93 |
max-height: 300px; |
| 94 |
overflow-y: auto; |
| 95 |
border: 1px solid; |
| 96 |
border-top: none; |
| 97 |
width: 100%; |
| 98 |
background: white; |
| 99 |
display: none; |
| 100 |
z-index: 999; |
| 101 |
} |
| 102 |
.tiered-pricing-dropdown__list ul { |
| 103 |
margin: 0; |
| 104 |
padding: 0; |
| 105 |
list-style: none; |
| 106 |
} |
| 107 |
|
| 108 |
.tiered-pricing-dropdown__select-box { |
| 109 |
border-radius: 3px; |
| 110 |
cursor: pointer; |
| 111 |
border: 1px solid; |
| 112 |
padding: 5px; |
| 113 |
align-items: center; |
| 114 |
display: flex; |
| 115 |
background: #fff; |
| 116 |
} |
| 117 |
|
| 118 |
.tiered-pricing-dropdown__select-box--active { |
| 119 |
border-radius: 3px 3px 0 0; |
| 120 |
} |
| 121 |
|
| 122 |
.tiered-pricing-dropdown__select-box-arrow { |
| 123 |
width: 25px; |
| 124 |
margin-left: auto; |
| 125 |
height: 25px; |
| 126 |
display: flex; |
| 127 |
transition: all 0.2s; |
| 128 |
} |
| 129 |
|
| 130 |
.tiered-pricing-dropdown__select-box--active .tiered-pricing-dropdown__select-box-arrow { |
| 131 |
transform: rotate(180deg); |
| 132 |
} |
| 133 |
|
| 134 |
.tiered-pricing-dropdown-option__pricing { |
| 135 |
margin-left: auto; |
| 136 |
font-weight: bold; |
| 137 |
} |
| 138 |
|
| 139 |
.tiered-pricing-option-price { |
| 140 |
margin-left: auto; |
| 141 |
} |
| 142 |
|
| 143 |
.tiered-pricing-dropdown-option { |
| 144 |
justify-content: space-between; |
| 145 |
align-items: center; |
| 146 |
box-sizing: border-box; |
| 147 |
padding: 10px; |
| 148 |
display: flex; |
| 149 |
width: 100%; |
| 150 |
} |
| 151 |
|
| 152 |
.tiered-pricing-dropdown-option-price__original { |
| 153 |
font-weight: normal; |
| 154 |
} |
| 155 |
|
| 156 |
/** |
| 157 |
End tiered pricing select styles |
| 158 |
*/ |
| 159 |
|
| 160 |
/*# sourceMappingURL=index.css.map*/ |