twbs--bootstrap/scss/_tables.scss

317 lines
5.6 KiB
SCSS
Raw Normal View History

//
2012-06-29 04:46:45 +00:00
// Tables
// --------------------------------------------------
2011-05-04 01:09:25 +00:00
table {
2014-12-02 22:02:35 +00:00
background-color: $table-bg;
}
caption {
2014-12-02 22:02:35 +00:00
padding-top: $table-cell-padding;
padding-bottom: $table-cell-padding;
color: $text-muted;
text-align: left;
}
th {
text-align: left;
}
// Baseline styles
2011-05-04 01:09:25 +00:00
.table {
2011-05-04 01:09:25 +00:00
width: 100%;
max-width: 100%;
2014-12-04 23:25:57 +00:00
margin-bottom: $spacer;
// Cells
> thead,
> tbody,
> tfoot {
> tr {
> th,
> td {
2014-12-02 22:02:35 +00:00
padding: $table-cell-padding;
line-height: $line-height-base;
vertical-align: top;
2014-12-02 22:02:35 +00:00
border-top: 1px solid $table-border-color;
}
}
}
// Bottom align for column headings
> thead > tr > th {
vertical-align: bottom;
2014-12-02 22:02:35 +00:00
border-bottom: 2px solid $table-border-color;
}
// Remove top border from thead by default
// > caption + thead,
// > colgroup + thead,
// > thead:first-child {
// > tr:first-child {
// > th,
// > td {
// border-top: 0;
// }
// }
// }
// Account for multiple tbody instances
> tbody + tbody {
2014-12-02 22:02:35 +00:00
border-top: 2px solid $table-border-color;
}
// Nesting
// .table {
2014-12-02 22:02:35 +00:00
// background-color: $body-bg;
// }
}
// Condensed table w/ half padding
2014-09-18 05:14:27 +00:00
.table-sm {
> thead,
> tbody,
> tfoot {
> tr {
> th,
> td {
2014-12-02 22:02:35 +00:00
padding: $table-sm-cell-padding;
}
}
}
}
// Bordered version
//
// Add borders all around the table and between all the columns.
.table-bordered {
2014-12-02 22:02:35 +00:00
border: 1px solid $table-border-color;
> thead,
> tbody,
> tfoot {
> tr {
> th,
> td {
2014-12-02 22:02:35 +00:00
border: 1px solid $table-border-color;
}
2013-07-01 12:29:41 +00:00
}
}
2013-09-20 16:06:48 +00:00
> thead > tr {
> th,
> td {
border-bottom-width: 2px;
}
}
2011-05-04 01:09:25 +00:00
}
// Zebra-striping
//
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
.table-striped {
> tbody > tr:nth-child(odd) {
2014-12-02 22:02:35 +00:00
background-color: $table-bg-accent;
}
}
// Hover effect
//
// Placed here since it has to come after the potential zebra striping
.table-hover {
> tbody > tr:hover {
2014-12-02 22:02:35 +00:00
background-color: $table-bg-hover;
}
}
// Table cell sizing
//
// Reset default table behavior
table col[class*="col-"] {
position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
display: table-column;
float: none;
}
table {
td,
th {
&[class*="col-"] {
position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
display: table-cell;
float: none;
}
}
}
// Table backgrounds
//
// Exact selectors below required to override `.table-striped` and prevent
// inheritance to nested tables.
// Generate the contextual variants
2014-12-02 22:02:35 +00:00
@include table-row-variant(active, $table-bg-active);
@include table-row-variant(success, $state-success-bg);
@include table-row-variant(info, $state-info-bg);
@include table-row-variant(warning, $state-warning-bg);
@include table-row-variant(danger, $state-danger-bg);
// Responsive tables
//
// Wrap your tables in `.table-responsive` and we'll make them mobile friendly
// by enabling horizontal scrolling. Only applies <768px. Everything above that
// will display normally.
2014-02-14 18:48:17 +00:00
.table-responsive {
2014-10-26 03:20:24 +00:00
min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
overflow-x: auto;
2014-12-02 22:02:35 +00:00
@media screen and (max-width: $screen-xs-max) {
width: 100%;
2014-12-04 23:25:57 +00:00
margin-bottom: $spacer;
overflow-y: hidden;
2014-12-02 22:02:35 +00:00
border: 1px solid $table-border-color;
-ms-overflow-style: -ms-autohiding-scrollbar;
2013-09-20 16:06:48 +00:00
// Tighten up spacing
> .table {
margin-bottom: 0;
// Ensure the content doesn't wrap
> thead,
> tbody,
> tfoot {
> tr {
> th,
> td {
white-space: nowrap;
}
}
}
}
// Special overrides for the bordered tables
> .table-bordered {
border: 0;
// Nuke the appropriate borders so that the parent can handle them
> thead,
> tbody,
> tfoot {
> tr {
> th:first-child,
> td:first-child {
border-left: 0;
}
> th:last-child,
> td:last-child {
border-right: 0;
}
}
}
// Only nuke the last row's bottom-border in `tbody` and `tfoot` since
// chances are there will be only one `tr` in a `thead` and that would
// remove the border altogether.
> tbody,
> tfoot {
> tr:last-child {
> th,
> td {
border-bottom: 0;
}
}
}
}
}
}
2014-07-14 06:45:34 +00:00
.table > .thead-inverse {
> tr > th {
color: #fff;
2014-12-02 22:02:35 +00:00
background-color: $gray-dark;
2014-07-14 06:45:34 +00:00
}
}
.table > .thead-default {
> tr > th {
2014-12-02 22:02:35 +00:00
color: $gray;
background-color: $gray-lighter;
2014-07-14 06:45:34 +00:00
}
}
2014-07-14 07:23:46 +00:00
.table-inverse {
2014-12-02 22:02:35 +00:00
color: $gray-lighter;
background-color: $gray-dark;
2014-07-14 07:23:46 +00:00
&.table-bordered {
border: 0;
}
> thead,
> tbody {
> tr {
> th,
> td {
2014-12-02 22:02:35 +00:00
border-color: $gray;
2014-07-14 07:23:46 +00:00
}
}
}
}
.table-reflow {
thead {
float: left;
}
tbody {
display: block;
white-space: nowrap;
}
> thead,
> tbody,
> tfoot {
> tr {
> th,
> td {
2014-12-02 22:02:35 +00:00
border-top: 1px solid $table-border-color;
border-left: 1px solid $table-border-color;
&:last-child {
2014-12-02 22:02:35 +00:00
border-right: 1px solid $table-border-color;
}
}
}
&:last-child {
> tr:last-child {
> th,
> td {
2014-12-02 22:02:35 +00:00
border-bottom: 1px solid $table-border-color;
}
}
}
}
tr {
float: left;
th,
td {
display: block !important;
2014-12-02 22:02:35 +00:00
border: 1px solid $table-border-color;
}
}
}