diff --git a/backend/app/assets/stylesheets/spree/backend/shared/_tables.scss b/backend/app/assets/stylesheets/spree/backend/shared/_tables.scss index ad39866d57f..c6c79090b40 100644 --- a/backend/app/assets/stylesheets/spree/backend/shared/_tables.scss +++ b/backend/app/assets/stylesheets/spree/backend/shared/_tables.scss @@ -1,10 +1,8 @@ table { - width: 100%; - margin-bottom: 15px; - border-collapse: separate; + // Extend all tables with Bootstrap's default table style + @extend .table; th, td { - padding: 7px 5px; border-right: 1px solid $color-border; border-bottom: 1px solid $color-border; vertical-align: middle; @@ -128,14 +126,16 @@ table { } + th, td.actions, td.no-wrap, .state { + white-space: nowrap; + } + thead { th { - padding: 10px; border-top: 1px solid $color-border; border-bottom: none; background-color: $color-tbl-thead; text-align: center; - font-size: 90%; font-weight: $font-weight-bold; } } diff --git a/backend/app/views/spree/admin/style_guide/topics/tables/_building_tables.html.erb b/backend/app/views/spree/admin/style_guide/topics/tables/_building_tables.html.erb index 7e88dcfec95..f4a1680b3e9 100644 --- a/backend/app/views/spree/admin/style_guide/topics/tables/_building_tables.html.erb +++ b/backend/app/views/spree/admin/style_guide/topics/tables/_building_tables.html.erb @@ -3,6 +3,7 @@ Item Description + Long Item Text Price Quantity Total @@ -14,27 +15,45 @@ - + Ruby on Rails Bag
SKU: ROR-00012 + + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nihil illinc huc pervenit. + Sed quae tandem ista ratio est? Ergo ita: non posse honeste vivi, nisi honeste vivatur? + Scisse enim te quis coarguere possit? Duo Reges: constructio interrete. + Sic, et quidem diligentius saepiusque ista loquemur inter nos agemusque communiter. + Sed in rebus apertissimis nimium longi sumus. + Quod si ita se habeat, non possit beatam praestare vitam sapientia. + Etenim nec iustitia nec amicitia esse omnino poterunt, nisi ipsae per se expetuntur. + $22.99 - 1 x on hand + 1 x on hand $22.99 - UPS Ground (USD) + UPS Ground (USD) $5.00 - No tracking details provided. + No tracking details provided. <%- end %> +

+ Tables are the primary UI element in the Solidus admin. + By default the content of all table headers have text wrapping disabled. +

+

+ For cases where also data cells need to have text wrapping disabled we provide + the .no-wrap class. +

+
<%= snippet %>