Add rounded corner on top of table header

This commit is contained in:
Jean-Baptiste Bellet
2022-12-05 21:33:54 +01:00
parent 896743ee34
commit d8e22a5ee7
2 changed files with 9 additions and 1 deletions

View File

@@ -26,7 +26,7 @@
= Spree.t(:price)
%th
= Spree.t(:quantity)
%th
%th.force-rounded-right
= Spree.t(:total)
%th.orders-actions.actions{ "data-hook" => "admin_order_form_line_items_header_actions" }

View File

@@ -4,6 +4,14 @@ table {
background-color: white;
}
table thead tr:first-child th:first-child {
border-top-left-radius: 3px;
}
table thead tr:first-child th:last-child,
table thead th.force-rounded-right {
border-top-right-radius: 3px;
}
table thead th {
background-color: $v2-medium-light-grey;
border: none;