Improve article header consistency
This commit is contained in:
parent
dcf921dc8d
commit
6a0147d2e7
4 changed files with 15 additions and 10 deletions
|
@ -48,7 +48,7 @@ body {
|
|||
|
||||
|
||||
// Fix empty dd tags in horizontal dl, see https://github.com/twitter/bootstrap/issues/4062
|
||||
.dl-horizontal {
|
||||
.dl-horizontal {
|
||||
dd { .clearfix(); }
|
||||
}
|
||||
|
||||
|
@ -119,6 +119,9 @@ table {
|
|||
td:first-child {
|
||||
text-align: left;
|
||||
}
|
||||
small {
|
||||
color: inherit; // keep it readable instead of gray
|
||||
}
|
||||
}
|
||||
th.numeric, td.numeric {
|
||||
text-align: right;
|
||||
|
@ -129,7 +132,7 @@ table {
|
|||
th.left, td.left { text-align: left; }
|
||||
th.right, td.right { text-align: right; }
|
||||
th.center, td.center { text-align: center; }
|
||||
|
||||
|
||||
td.main_info {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
%tbody{id: "oa_#{order_article.id}"}
|
||||
- if not defined?(heading) or heading
|
||||
%tr.list-heading
|
||||
%th.name{:colspan => "4"}>
|
||||
= order_article.article.name + ' '
|
||||
= "(#{order_article.article.unit}, #{number_to_currency order_article.price.fc_price}"
|
||||
- pkg_info = pkg_helper(order_article.price)
|
||||
= ", #{pkg_info}".html_safe unless pkg_info.blank?
|
||||
)
|
||||
%th{:colspan => "4"}>
|
||||
%h4.name.pull-left
|
||||
= order_article.article.name
|
||||
%small
|
||||
= "(#{order_article.article.unit}, #{number_to_currency order_article.price.fc_price}"
|
||||
- pkg_info = pkg_helper(order_article.price)
|
||||
= ", #{pkg_info}".html_safe unless pkg_info.blank?
|
||||
)
|
||||
- for goa in order_article.group_order_articles.ordered
|
||||
= render 'shared/articles_by/article_single_goa', goa: goa, edit: (edit rescue nil)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
%table.table.table-hover.list#articles_by_articles
|
||||
%table.table.table-condensed.table-hover.list#articles_by_articles
|
||||
%thead.list-heading
|
||||
%tr
|
||||
%th{:style => 'width:70%'}= Ordergroup.model_name.human
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
%table.table.table-hover.list#articles_by_groups
|
||||
%table.table.table-condensed.table-hover.list#articles_by_groups
|
||||
%thead.list-heading
|
||||
%tr
|
||||
%th{:style => "width:40%"}= heading_helper Article, :name
|
||||
|
|
Loading…
Reference in a new issue