diff --git a/src/pretix/control/templates/pretixcontrol/orders/overview.html b/src/pretix/control/templates/pretixcontrol/orders/overview.html index fecf5e3c5..45494f473 100644 --- a/src/pretix/control/templates/pretixcontrol/orders/overview.html +++ b/src/pretix/control/templates/pretixcontrol/orders/overview.html @@ -32,7 +32,7 @@ {% trans "Product" %} {% trans "Canceled" %}ยน {% trans "Expired" %} - {% trans "Purchased" %} + {% trans "Purchased" %} diff --git a/src/pretix/static/pretixcontrol/scss/_orders.scss b/src/pretix/static/pretixcontrol/scss/_orders.scss index 5ff10167f..05e08e16c 100644 --- a/src/pretix/static/pretixcontrol/scss/_orders.scss +++ b/src/pretix/static/pretixcontrol/scss/_orders.scss @@ -1,4 +1,9 @@ .table-product-overview { + + td:last-child, th:last-child { + border-right: 1px solid #ddd; + } + .item.categorized td:first-child { padding-left: 20px; } @@ -9,7 +14,13 @@ padding-left: 40px; } td:not(:first-child), - th:not(:first-child) { + th:not(:first-child):not(.text-center) { + border-left: 1px solid #ddd; + padding-right: 10px !important; + padding-left: 10px !important; + } + td:not(:first-child), + th:not(:first-child):not(.text-center) { text-align: right; } span.sum-net, span.sum-gross { @@ -19,6 +30,14 @@ border-top: 2px solid #ddd; } } +@media(min-device-width: $screen-lg-min) { + .table-product-overview { + td:not(:first-child), + th:not(:first-child):not(.text-center) { + width: 150px; + } + } +} #sumtoggle { margin-top: 20px;