123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .table {
-
- > thead,
- > tbody,
- > tfoot {
- > tr {
- > th,
- > td {
- border-top: 1px solid @box-border-color;
- }
- }
- }
-
- > thead > tr > th {
- border-bottom: 2px solid @box-border-color;
- }
-
- tr td .progress {
- margin-top: 5px;
- }
- }
- .table-bordered {
- border: 1px solid @box-border-color;
- > thead,
- > tbody,
- > tfoot {
- > tr {
- > th,
- > td {
- border: 1px solid @box-border-color;
- }
- }
- }
- > thead > tr {
- > th,
- > td {
- border-bottom-width: 2px;
- }
- }
- }
- .table.no-border {
- &,
- td,
- th {
- border: 0;
- }
- }
- table.text-center {
- &, td, th {
- text-align: center;
- }
- }
- .table.align {
- th {
- text-align: left;
- }
- td {
- text-align: right;
- }
- }
|