mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
* [A11y] use icon’s title-attribute instead of hidden text for events location and time * Fix icons with role=img * simplify css
758 lines
17 KiB
SCSS
758 lines
17 KiB
SCSS
// before variables.scss because it only affects presale, not control
|
|
$body-bg: #f5f5f5 !default;
|
|
$input-border: #949494;
|
|
|
|
$font-size-base: 0.875rem !default;/* 14px/16px = 0.875rem */
|
|
|
|
$font-size-large: ($font-size-base * 1.25) !default;
|
|
$font-size-small: ($font-size-base * .85) !default;
|
|
|
|
$font-size-h1: ($font-size-base * 2.6) !default;
|
|
$font-size-h2: ($font-size-base * 2.15) !default;
|
|
$font-size-h3: ($font-size-base * 1.7) !default;
|
|
$font-size-h4: ($font-size-base * 1.25) !default;
|
|
$font-size-h5: $font-size-base !default;
|
|
$font-size-h6: ($font-size-base * .85) !default;
|
|
|
|
$line-height-base: 1.43 !default;
|
|
$line-height-computed: ($font-size-base * $line-height-base) !default;
|
|
$line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
|
|
$line-height-small: 1.5 !default;
|
|
|
|
|
|
$padding-base-vertical: 0.4285714286rem !default;/* 6px / 14px */
|
|
$padding-base-horizontal: 0.8571428571rem !default;/* 12px / 14px */
|
|
$padding-large-vertical: 0.7142857143rem !default;/* 10px / 14px */
|
|
$padding-large-horizontal: 1.1428571429rem !default;/* 16px / 14px */
|
|
$padding-small-vertical: 0.3571428571rem !default;/* 5px / 14px */
|
|
$padding-small-horizontal: 0.7142857143rem !default;/* 10px / 14px */
|
|
$padding-xs-vertical: 0.07142857143rem !default;/* 1px / 14px */
|
|
$padding-xs-horizontal: 0.3571428571rem !default;/* 5px / 14px */
|
|
$navbar-height: 3.5714285714rem !default;/* 50px / 14px */
|
|
|
|
|
|
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2)) !default;
|
|
$input-height-large: ($font-size-large * $line-height-large) + ($padding-large-vertical * 2) !default;
|
|
$input-height-small: ($font-size-small * $line-height-small) + ($padding-small-vertical * 2) !default;
|
|
|
|
|
|
/* imports */
|
|
@import "../../pretixbase/scss/_theme_variables.scss";
|
|
@import "../../pretixbase/scss/bootstrap_vars.scss";
|
|
|
|
$headings-small-color: $text-muted;
|
|
|
|
@import "../../bootstrap/scss/_bootstrap_reduced.scss";
|
|
@import "../../pretixbase/scss/_theme.scss";
|
|
@import "../../lightbox/css/lightbox.scss";
|
|
@import "../../cropper/cropper.scss";
|
|
@import "../../datetimepicker/_bootstrap-datetimepicker.scss";
|
|
@import "../../slider/_bootstrap-slider.scss";
|
|
@import "../../fontawesome/scss/font-awesome.scss";
|
|
|
|
@import "_theme.scss";
|
|
@import "_event.scss";
|
|
@import "_cart.scss";
|
|
@import "_forms.scss";
|
|
@import "_calendar.scss";
|
|
@import "_checkout.scss";
|
|
@import "../../pretixbase/scss/webfont.scss";
|
|
|
|
html {
|
|
font-size: 1em;
|
|
}
|
|
|
|
@media (max-width: $screen-xs-max) {
|
|
/* scale everything to 1rem so older/smaller iPhones do not zoom inputs on focus */
|
|
.form-control {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
.on-focus-visible:focus, .on-focus-visible:focus-within {
|
|
height: auto;
|
|
width: auto;
|
|
overflow: auto;
|
|
clip: auto;
|
|
}
|
|
#skip-to-main {
|
|
z-index: 9999;
|
|
/* padding is needed to make focus-outline visible */
|
|
padding: 8px;
|
|
background-color: inherit;
|
|
p {
|
|
margin: 0;
|
|
}
|
|
a {
|
|
padding: .125em .5em;
|
|
display: inline-block;
|
|
color: var(--pretix-link-contrast-color);
|
|
outline-color: inherit;
|
|
}
|
|
a:active, a:hover, a:focus {
|
|
color: var(--pretix-link-hover-contrast-color);
|
|
}
|
|
}
|
|
|
|
/* fixe for bootstrap using px-values for fontsize */
|
|
.panel-title {
|
|
font-size: ($font-size-base * 1.125);
|
|
}
|
|
.lead {
|
|
font-size: ($font-size-base * 1.15);
|
|
}
|
|
small, .small {
|
|
font-size: (100% * $font-size-small / $font-size-base);
|
|
}
|
|
pre {
|
|
padding: ($line-height-computed / 2);
|
|
font-size: $font-size-base;
|
|
}
|
|
|
|
/* make all links in textflow underlined */
|
|
h1, h2, h3, h4, h5, h6, p, li {
|
|
a:not(.btn) {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
a.no-underline:link, nav li a:link {
|
|
text-decoration: none;
|
|
}
|
|
a.no-underline:hover, nav li a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.help-block a {
|
|
color: inherit;
|
|
}
|
|
|
|
|
|
/* See https://github.com/pretix/pretix/pull/761 */
|
|
.bootstrap-datetimepicker-widget table td span {
|
|
line-height: 1.8em;
|
|
}
|
|
|
|
.order-details dt {
|
|
font-weight: normal;
|
|
float: left;
|
|
margin-right: .25em;
|
|
}
|
|
.text-warning { color: $brand-warning; }
|
|
.text-info { color: $brand-info; }
|
|
.text-success { color: $brand-success; }
|
|
.text-danger { color: $brand-danger; }
|
|
h1 a, .btn {
|
|
text-decoration: none;
|
|
}
|
|
a .fa:first-child { margin-right: 0.5ch }
|
|
/*
|
|
a, .btn-link {
|
|
text-decoration: underline;
|
|
}
|
|
*/
|
|
/* bootstrap sets outline-offset with :active:focus so we need to match specifity of selector */
|
|
/* see line 26, pretix/static/bootstrap/scss/bootstrap/_buttons.scss */
|
|
button:focus, a:focus, .btn:focus, summary:focus, div:focus,
|
|
/*button:active, a:active, .btn:active, summary:active,*/
|
|
button:active:focus, a:active:focus, .btn:active:focus, summary:active:focus, div:active:focus,
|
|
button.active:focus, a.active:focus, .btn.active:focus,
|
|
input:focus, .form-control:focus, .btn-checkbox:has(input:focus),
|
|
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus,
|
|
.input-item-count-group:has(input:focus), .input-group-price:has(input:focus) {
|
|
outline: 2px solid $link-hover-color;
|
|
outline-offset: 2px;
|
|
}
|
|
input:focus, .form-control:focus {
|
|
border-color: $input-border;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
.btn-checkbox input:focus, .input-item-count-group input:focus, .input-group-price input:focus {
|
|
outline: none;
|
|
}
|
|
/* border-radius on these containers is needed for correctly rounded focus-outlines */
|
|
.input-item-count-group, .input-group-price {
|
|
border-radius: var(--pretix-border-radius-base);
|
|
}
|
|
|
|
footer {
|
|
clear: both;
|
|
padding: 10px 0;
|
|
}
|
|
footer nav {
|
|
text-align: center;
|
|
font-size: 11px;
|
|
}
|
|
footer nav ul {
|
|
display: flex;
|
|
justify-content: center;
|
|
list-style: none;
|
|
padding: 0;
|
|
flex-wrap: wrap;
|
|
}
|
|
footer nav li:not(:first-child):before {
|
|
content: "·";
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
width: 1.5em;
|
|
text-align: center;
|
|
}
|
|
footer nav .btn-link {
|
|
display: inline;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-size: 11px;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
.js-only {
|
|
display: none;
|
|
}
|
|
.locales, .loginstatus {
|
|
display: inline;
|
|
a.active {
|
|
/*border-bottom: 2px solid $brand-primary;*/
|
|
font-weight: bold;
|
|
}
|
|
img {
|
|
vertical-align: baseline;
|
|
}
|
|
}
|
|
.subnav a.active {
|
|
font-weight: bold;
|
|
}
|
|
.locales ul {
|
|
display: inline;
|
|
list-style: none;
|
|
}
|
|
.locales li {
|
|
display: inline;
|
|
}
|
|
.loginstatus a {
|
|
margin-left: 10px;
|
|
}
|
|
.huge {
|
|
font-size: 40px;
|
|
}
|
|
a:hover .panel-primary > .panel-heading {
|
|
background-color: var(--pretix-brand-primary-darken-10);
|
|
border-color: var(--pretix-brand-primary-darken-17);
|
|
}
|
|
|
|
.thank-you {
|
|
margin-bottom: 25px;
|
|
|
|
.fa {
|
|
font-size: 150px;
|
|
line-height: 170px;
|
|
display: block;
|
|
color: $brand-success;
|
|
}
|
|
|
|
h2 {
|
|
color: $brand-success;
|
|
}
|
|
}
|
|
|
|
.contains-overlay {
|
|
position: relative;
|
|
}
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: $gray-lightest;
|
|
}
|
|
.overlay-centered {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.overlay-centered .overlay-content {
|
|
max-width: 35em;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
body.loading .container {
|
|
-webkit-filter: blur(2px);
|
|
-moz-filter: blur(2px);
|
|
-ms-filter: blur(2px);
|
|
-o-filter: blur(2px);
|
|
filter: blur(2px);
|
|
}
|
|
|
|
.big-rotating-icon {
|
|
-webkit-animation: fa-spin 8s infinite linear;
|
|
animation: fa-spin 8s infinite linear;
|
|
font-size: 120px;
|
|
color: $brand-primary;
|
|
}
|
|
#loadingmodal, #ajaxerr, #popupmodal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: rgba(255, 255, 255, .7);
|
|
opacity: 0;
|
|
z-index: 900000;
|
|
visibility: hidden;
|
|
padding: 10px;
|
|
|
|
.big-icon {
|
|
margin-top: 50px;
|
|
font-size: 200px;
|
|
color: $brand-primary;
|
|
}
|
|
&#popupmodal .big-icon {
|
|
margin-top: 10px;
|
|
font-size: 100px;
|
|
color: $brand-primary;
|
|
}
|
|
|
|
.modal-card {
|
|
margin: 50px auto 0;
|
|
width: 90%;
|
|
max-width: 600px;
|
|
max-height: calc(100vh - 100px);
|
|
overflow-y: auto;
|
|
background: white;
|
|
border-radius: $border-radius-large;
|
|
box-shadow: 0 7px 14px 0 rgba(78, 50, 92, 0.1),0 3px 6px 0 rgba(0,0,0,.07);
|
|
padding: 20px;
|
|
min-height: 160px;
|
|
|
|
.modal-card-icon {
|
|
float: left;
|
|
width: 150px;
|
|
text-align: center;
|
|
}
|
|
.modal-card-content {
|
|
margin-left: 160px;
|
|
text-align: left;
|
|
h3 {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
&#cookie-consent-modal {
|
|
background: rgba(255, 255, 255, .5);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
display: none;
|
|
.modal-card-content {
|
|
margin-left: 0;
|
|
}
|
|
details {
|
|
& > summary {
|
|
list-style: none;
|
|
}
|
|
& > summary::-webkit-details-marker,
|
|
& > summary::marker {
|
|
display: none;
|
|
}
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
@media (max-width: 700px) {
|
|
#loadingmodal, #ajaxerr, #popupmodal {
|
|
.modal-card {
|
|
margin: 25px auto 0;
|
|
max-height: calc(100vh - 50px - 20px);
|
|
.modal-card-icon {
|
|
float: none;
|
|
width: 100%;
|
|
}
|
|
.modal-card-content {
|
|
text-align: center;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#ajaxerr {
|
|
background: rgba(236, 236, 236, .9);
|
|
}
|
|
|
|
.loading #loadingmodal, .ajaxerr #ajaxerr, .has-popup #popupmodal {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transition: opacity .5s ease-in-out;
|
|
-moz-transition: opacity .5s ease-in-out;
|
|
-webkit-transition: opacity .5s ease-in-out;
|
|
}
|
|
|
|
.typo-alert span[data-typosuggest] {
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.info-row {
|
|
position: relative;
|
|
min-height: 30px;
|
|
margin-bottom: 10px;
|
|
|
|
.info-row-icon {
|
|
position: absolute;
|
|
top: -5px;
|
|
left: 0;
|
|
font-size: 26px;
|
|
color: $brand-primary;
|
|
margin-top: 3px;
|
|
width: 26px;
|
|
height: auto;
|
|
.fa {
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
p {
|
|
margin-left: 40px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: $screen-md-min) {
|
|
.thank-you {
|
|
min-height: 170px;
|
|
max-width: 59em;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: 3em;
|
|
|
|
& > .fa {
|
|
float: left;
|
|
margin-right: 30px;
|
|
margin-left: 0;
|
|
}
|
|
|
|
h2 {
|
|
padding-top: 35px;
|
|
}
|
|
|
|
& > * {
|
|
margin-left: 158px;
|
|
}
|
|
}
|
|
}
|
|
@media (max-width: $screen-sm-max) {
|
|
.thank-you {
|
|
text-align: center;
|
|
}
|
|
h2 {
|
|
margin-top: 0;
|
|
}
|
|
.checkout-button-row > div {
|
|
margin-bottom: 15px;
|
|
}
|
|
.checkout-button-row > div.clearfix {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.font-normal {
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.blank-after {
|
|
margin-bottom: 1em;
|
|
}
|
|
.dl-horizontal dt {
|
|
white-space: normal;
|
|
}
|
|
.dl-inline dt, .dl-inline dd {
|
|
display: inline;
|
|
}
|
|
|
|
.collapse-indicator {
|
|
-moz-transition: all 150ms ease-in 0s;
|
|
-webkit-transition: all 150ms ease-in 0s;
|
|
-o-transition: all 150ms ease-in 0s;
|
|
transition: all 150ms ease-in 0s;
|
|
}
|
|
|
|
.panel-title a[data-toggle="collapse"], details .panel-title {
|
|
display: flex;
|
|
padding: 0.75*$line-height-computed;
|
|
margin: -0.75*$line-height-computed;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
outline: 0;
|
|
text-decoration: none;
|
|
position: relative;
|
|
padding-left: 30px;
|
|
}
|
|
|
|
.panel-title a[data-toggle="collapse"] .collapse-indicator,
|
|
details .panel-title .collapse-indicator {
|
|
/* hide old collapse indicators until they are all removed from HTML */
|
|
display: none;
|
|
}
|
|
|
|
.panel-title a[data-toggle="collapse"]::before,
|
|
details .panel-title::before {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 10px;
|
|
margin-top: -.5em;
|
|
content: "";
|
|
width: 1em;
|
|
height: 1em;
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
display: inline-block;
|
|
text-align: center;
|
|
transform: rotate(-90deg);
|
|
transition: transform 150ms ease-in 0s;
|
|
}
|
|
.panel-title a:not(.collapsed)::before,
|
|
details.details-open .panel-title::before {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
.panel-default .panel-title a[data-toggle="collapse"]:hover {
|
|
background-color: #eeeeee;
|
|
}
|
|
|
|
.panel-primary .panel-title a[data-toggle="collapse"]:hover {
|
|
background-color: var(--pretix-brand-primary-darken-10);
|
|
}
|
|
|
|
.panel-title a.h6 {
|
|
text-decoration: underline;
|
|
margin-left: .5em;
|
|
}
|
|
.panel-title a.h6 .fa {
|
|
margin-left: .25em;
|
|
margin-right: .25em;
|
|
}
|
|
|
|
.panel-subhead {
|
|
padding: 15px;
|
|
background: $table-bg-accent;
|
|
border-bottom: 1px solid $table-border-color;
|
|
}
|
|
|
|
details {
|
|
list-style: none;
|
|
}
|
|
details > summary::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
details summary {
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
}
|
|
.nojs details:not([open], .details-open) .panel-heading .collapse-indicator,
|
|
[aria-expanded=false]>.collapse-indicator {
|
|
-webkit-transform: rotate(-90deg);
|
|
-ms-transform: rotate(-90deg);
|
|
-moz-transform: rotate(-90deg);
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
.sneak-peek-container {
|
|
position: relative;
|
|
}
|
|
.sneak-peek-content {
|
|
height: 8em;
|
|
overflow: hidden;
|
|
transition: height .5s;
|
|
}
|
|
.nojs .sneak-peek-content {
|
|
height: auto;
|
|
}
|
|
.sneak-peek-trigger {
|
|
display: grid;
|
|
justify-content: center;
|
|
align-content: center;
|
|
width: 100%;
|
|
height: 4.5em;
|
|
margin: 0;
|
|
padding: 15px;
|
|
background: linear-gradient(0deg, rgba(248,248,248,.9) 44%, rgba(248,248,248,0) 100%);
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 10;
|
|
opacity: 1;
|
|
transition: opacity .5s;
|
|
}
|
|
.nojs .sneak-peek-trigger {
|
|
display: none;
|
|
}
|
|
.sneak-peek-trigger:has(button[aria-expanded="true"]) {
|
|
opacity: 0;
|
|
}
|
|
|
|
form.download-btn-form {
|
|
display: inline;
|
|
}
|
|
.alert-testmode {
|
|
margin-top: 20px;
|
|
}
|
|
h2 .label {
|
|
display: inline-block;
|
|
}
|
|
|
|
.nojs .requirejs {
|
|
display: none !important;
|
|
}
|
|
|
|
.event-list.full-width-list {
|
|
h3, h4, p {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
h3, h4 {
|
|
font-size: 1em;
|
|
line-height: 1.25rem;
|
|
font-weight: bold;
|
|
}
|
|
h4 small {
|
|
font-size: 85%;
|
|
}
|
|
}
|
|
|
|
.quotabox {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: 50px;
|
|
.progress {
|
|
height: 7px;
|
|
margin-bottom: 2px;
|
|
}
|
|
.numbers {
|
|
font-size: 10px;
|
|
color: $text-muted;
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
&.availability .progress-bar-success {
|
|
background: var(--pretix-brand-success-lighten-20);
|
|
}
|
|
&.full-width {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.nav-tabs {
|
|
border-bottom: 0px solid #ddd;
|
|
}
|
|
.tab-content {
|
|
border: 1px solid #ddd;
|
|
border-radius: 0px 5px 5px 5px;
|
|
& .tab-pane > table {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.user-select-none {
|
|
user-select: none;
|
|
}
|
|
|
|
@for $i from 0 through 100 {
|
|
.progress-bar-#{$i} { width: 1% * $i; }
|
|
}
|
|
|
|
|
|
.old-browser-warning {
|
|
background-color: #ffe761;
|
|
padding: 32px; /* 30px + 2px optical compensation */
|
|
font-size: 30px;
|
|
}
|
|
|
|
|
|
.textbubble-success, .textbubble-success-warning, .textbubble-info, .textbubble-warning, .textbubble-danger {
|
|
padding: 0 .4em;
|
|
border-radius: $border-radius-base;
|
|
font-weight: bold;
|
|
white-space: nowrap;
|
|
|
|
&:has(>.fa:first-child) {
|
|
padding-left: .25em;
|
|
}
|
|
}
|
|
.textbubble-success {
|
|
color: var(--pretix-brand-success-shade-42);
|
|
background: var(--pretix-brand-success-tint-85);
|
|
.fa {
|
|
color: var(--pretix-brand-success);
|
|
}
|
|
}
|
|
.textbubble-success-warning {
|
|
color: var(--pretix-brand-success-shade-42);
|
|
background: linear-gradient(to right, var(--pretix-brand-warning-tint-85), var(--pretix-brand-success-tint-85) 50%);
|
|
.fa {
|
|
color: var(--pretix-brand-warning);
|
|
}
|
|
}
|
|
.textbubble-info {
|
|
color: var(--pretix-brand-info-shade-42);
|
|
background: var(--pretix-brand-info-tint-85);
|
|
.fa {
|
|
color: var(--pretix-brand-info);
|
|
}
|
|
}
|
|
.textbubble-warning {
|
|
color: var(--pretix-brand-warning-shade-42);
|
|
background: var(--pretix-brand-warning-tint-85);
|
|
.fa {
|
|
color: var(--pretix-brand-warning);
|
|
}
|
|
}
|
|
.textbubble-danger {
|
|
color: var(--pretix-brand-danger-shade-42);
|
|
background: var(--pretix-brand-danger-tint-85);
|
|
.fa {
|
|
color: var(--pretix-brand-danger);
|
|
}
|
|
}
|
|
|
|
|
|
.full-width-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
& > li, & > .row {
|
|
padding: 15px 0;
|
|
}
|
|
& > li+li, & > .row + .row {
|
|
border-top: 1px solid $table-border-color;
|
|
}
|
|
}
|
|
.panel-body:has(>.full-width-list:first-child) {
|
|
padding-top: 0;
|
|
}
|
|
.panel-body:has(>.full-width-list:last-child) {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.alternating-rows .row:nth-child(even) {
|
|
background-color: $table-bg-accent;
|
|
}
|
|
|
|
|
|
.account-addresses address::first-line {
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
@import "_iframe.scss";
|
|
@import "_a11y.scss";
|
|
@import "_print.scss";
|
|
@import "../../pretixbase/scss/_rtl.scss";
|
|
@import "../../bootstrap/scss/_rtl.scss";
|
|
@import "_rtl.scss";
|