You are here

table.css in Entity Print 8

Same filename and directory in other branches
  1. 7 modules/entity_print_commerce_order/css/table.css
/* Generic table style. */
table {
  width: 100%;
  border-collapse: collapse;
}
table .form-item {
  margin: 0;
}
table thead th {
  font-size: 0.75em;
  font-weight: normal;
  background: #f4f4f4;
  text-transform: uppercase;
  text-align: left;
  padding: 10px;
  border: 1px solid #e3e3e3;
}
table tbody td {
  font-size: 0.875em;
  padding: 10px;
  border: 1px solid #e3e3e3;
  background: #FFF;
  vertical-align: middle;
}
.table--striped-table table tr.odd td {
  background: #f1f1f1;
}

File

modules/entity_print_commerce_order/css/table.css
View source
  1. /* Generic table style. */
  2. table {
  3. width: 100%;
  4. border-collapse: collapse;
  5. }
  6. table .form-item {
  7. margin: 0;
  8. }
  9. table thead th {
  10. font-size: 0.75em;
  11. font-weight: normal;
  12. background: #f4f4f4;
  13. text-transform: uppercase;
  14. text-align: left;
  15. padding: 10px;
  16. border: 1px solid #e3e3e3;
  17. }
  18. table tbody td {
  19. font-size: 0.875em;
  20. padding: 10px;
  21. border: 1px solid #e3e3e3;
  22. background: #FFF;
  23. vertical-align: middle;
  24. }
  25. .table--striped-table table tr.odd td {
  26. background: #f1f1f1;
  27. }