mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Allow users to increase cancellation fees (#1622)
* Allow users to increase cancellation fees * Fix typo
This commit is contained in:
@@ -196,3 +196,34 @@ section.front-page {
|
||||
h2.subevent-head {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.cancel-fee-slider {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
||||
.slider-selection {
|
||||
background: $brand-success;
|
||||
}
|
||||
.slider-handle {
|
||||
@include slider_background-image($brand-success, darken($brand-success, 5%), mix($brand-success, darken($brand-success, 5%)));
|
||||
}
|
||||
|
||||
input {
|
||||
flex: 0;
|
||||
}
|
||||
& > div {
|
||||
flex: 1;
|
||||
font-weight: bold;
|
||||
}
|
||||
& > div:first-child {
|
||||
text-align: right;
|
||||
padding-right: 20px;
|
||||
}
|
||||
& > div:last-child {
|
||||
text-align: left;
|
||||
padding-left: 20px;
|
||||
}
|
||||
}
|
||||
#cancel-fee-custom-link {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
@import "../../pretixbase/scss/_theme.scss";
|
||||
@import "../../lightbox/css/lightbox.scss";
|
||||
@import "../../datetimepicker/_bootstrap-datetimepicker.scss";
|
||||
@import "../../slider/_bootstrap-slider.scss";
|
||||
@import "../../fontawesome/scss/font-awesome.scss";
|
||||
|
||||
@import "_theme.scss";
|
||||
|
||||
Reference in New Issue
Block a user