2011-11-26 13:34:55 +08:00
|
|
|
//
|
2015-08-18 09:33:34 +08:00
|
|
|
// Basic Bootstrap table
|
2014-12-19 14:59:47 +08:00
|
|
|
//
|
2011-05-04 09:09:25 +08:00
|
|
|
|
2012-01-18 15:39:18 +08:00
|
|
|
.table {
|
2011-05-04 09:09:25 +08:00
|
|
|
width: 100%;
|
2014-06-09 07:54:05 +08:00
|
|
|
max-width: 100%;
|
2014-12-05 07:25:57 +08:00
|
|
|
margin-bottom: $spacer;
|
|
|
|
|
2014-12-19 14:59:47 +08:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: $table-cell-padding;
|
|
|
|
vertical-align: top;
|
2015-11-15 15:24:48 +08:00
|
|
|
border-top: $table-border-width solid $table-border-color;
|
2012-01-18 15:39:18 +08:00
|
|
|
}
|
2014-12-19 14:59:47 +08:00
|
|
|
|
|
|
|
thead th {
|
2012-02-11 15:07:32 +08:00
|
|
|
vertical-align: bottom;
|
2015-11-15 15:24:48 +08:00
|
|
|
border-bottom: (2 * $table-border-width) solid $table-border-color;
|
2012-01-18 15:39:18 +08:00
|
|
|
}
|
2014-12-19 14:59:47 +08:00
|
|
|
|
|
|
|
tbody + tbody {
|
2015-11-15 15:24:48 +08:00
|
|
|
border-top: (2 * $table-border-width) solid $table-border-color;
|
2012-01-18 15:39:18 +08:00
|
|
|
}
|
2012-12-09 04:57:21 +08:00
|
|
|
|
2014-12-19 14:59:47 +08:00
|
|
|
.table {
|
|
|
|
background-color: $body-bg;
|
|
|
|
}
|
2012-01-12 01:43:13 +08:00
|
|
|
}
|
|
|
|
|
2011-11-01 10:37:10 +08:00
|
|
|
|
2014-12-19 14:59:47 +08:00
|
|
|
//
|
2013-07-24 01:48:30 +08:00
|
|
|
// Condensed table w/ half padding
|
2014-12-19 14:59:47 +08:00
|
|
|
//
|
2011-11-01 10:37:10 +08:00
|
|
|
|
2014-09-18 13:14:27 +08:00
|
|
|
.table-sm {
|
2014-12-19 14:59:47 +08:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: $table-sm-cell-padding;
|
2011-09-09 01:47:05 +08:00
|
|
|
}
|
2011-11-01 10:37:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-24 01:48:30 +08:00
|
|
|
// Bordered version
|
2013-08-19 12:43:05 +08:00
|
|
|
//
|
|
|
|
// Add borders all around the table and between all the columns.
|
2011-11-01 10:37:10 +08:00
|
|
|
|
2012-01-15 13:28:47 +08:00
|
|
|
.table-bordered {
|
2015-11-15 15:24:48 +08:00
|
|
|
border: $table-border-width solid $table-border-color;
|
2014-12-19 14:59:47 +08:00
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
2015-11-15 15:24:48 +08:00
|
|
|
border: $table-border-width solid $table-border-color;
|
2012-07-20 12:06:42 +08:00
|
|
|
}
|
2014-12-19 14:59:47 +08:00
|
|
|
|
|
|
|
thead {
|
|
|
|
th,
|
|
|
|
td {
|
2015-11-15 15:24:48 +08:00
|
|
|
border-bottom-width: (2 * $table-border-width);
|
2013-08-18 05:15:33 +08:00
|
|
|
}
|
|
|
|
}
|
2011-05-04 09:09:25 +08:00
|
|
|
}
|
|
|
|
|
2011-06-30 15:15:37 +08:00
|
|
|
|
2013-07-24 01:48:30 +08:00
|
|
|
// Zebra-striping
|
2013-08-19 12:43:05 +08:00
|
|
|
//
|
2011-11-30 14:35:03 +08:00
|
|
|
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
2013-08-19 12:43:05 +08:00
|
|
|
|
2013-11-07 10:32:35 +08:00
|
|
|
.table-striped {
|
2015-01-20 06:48:12 +08:00
|
|
|
tbody tr:nth-of-type(odd) {
|
2014-12-03 06:02:35 +08:00
|
|
|
background-color: $table-bg-accent;
|
2011-11-30 14:35:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-24 01:48:30 +08:00
|
|
|
// Hover effect
|
2013-08-19 12:43:05 +08:00
|
|
|
//
|
2012-02-05 18:28:42 +08:00
|
|
|
// Placed here since it has to come after the potential zebra striping
|
2013-08-19 12:43:05 +08:00
|
|
|
|
2013-11-07 10:32:35 +08:00
|
|
|
.table-hover {
|
2015-01-01 17:05:01 +08:00
|
|
|
tbody tr {
|
|
|
|
@include hover {
|
|
|
|
background-color: $table-bg-hover;
|
|
|
|
}
|
2012-02-05 18:28:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 14:35:03 +08:00
|
|
|
|
2013-07-24 01:48:30 +08:00
|
|
|
// Table backgrounds
|
2013-08-19 12:43:05 +08:00
|
|
|
//
|
2013-07-24 13:27:49 +08:00
|
|
|
// Exact selectors below required to override `.table-striped` and prevent
|
|
|
|
// inheritance to nested tables.
|
2012-08-08 13:50:49 +08:00
|
|
|
|
2013-08-19 12:43:05 +08:00
|
|
|
// Generate the contextual variants
|
2014-12-03 06:02:35 +08: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);
|
2013-08-19 12:43:05 +08:00
|
|
|
|
|
|
|
|
2016-05-12 07:28:28 +08:00
|
|
|
// Inverse styles
|
2013-08-19 12:43:05 +08:00
|
|
|
//
|
2016-08-09 11:35:58 +08:00
|
|
|
// Same table markup, but inverted color scheme: dark background and light text.
|
2014-07-14 14:45:34 +08:00
|
|
|
|
2014-12-19 14:59:47 +08:00
|
|
|
.thead-inverse {
|
|
|
|
th {
|
2014-07-14 14:45:34 +08:00
|
|
|
color: #fff;
|
2016-04-18 09:56:09 +08:00
|
|
|
background-color: $table-bg-inverse;
|
2014-07-14 14:45:34 +08:00
|
|
|
}
|
|
|
|
}
|
2016-05-12 07:28:28 +08:00
|
|
|
|
2014-12-19 14:59:47 +08:00
|
|
|
.thead-default {
|
|
|
|
th {
|
2016-04-18 09:56:09 +08:00
|
|
|
color: $table-head-color;
|
|
|
|
background-color: $table-head-bg;
|
2014-07-14 14:45:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-14 15:23:46 +08:00
|
|
|
.table-inverse {
|
2016-04-18 09:56:09 +08:00
|
|
|
color: $body-bg;
|
|
|
|
background-color: $table-bg-inverse;
|
2014-07-14 15:23:46 +08:00
|
|
|
|
2014-12-19 14:59:47 +08:00
|
|
|
th,
|
2015-01-20 07:52:40 +08:00
|
|
|
td,
|
|
|
|
thead th {
|
2016-04-18 09:56:09 +08:00
|
|
|
border-color: $body-bg;
|
2014-07-14 15:23:46 +08:00
|
|
|
}
|
2016-05-12 07:28:28 +08:00
|
|
|
|
|
|
|
&.table-bordered {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
.table-responsive {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2016-10-06 21:21:05 +08:00
|
|
|
min-height: 0%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
|
2016-05-12 07:28:28 +08:00
|
|
|
overflow-x: auto;
|
|
|
|
|
|
|
|
// TODO: find out if we need this still.
|
|
|
|
//
|
|
|
|
// border: $table-border-width solid $table-border-color;
|
|
|
|
// -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057
|
2016-11-26 17:44:06 +08:00
|
|
|
|
|
|
|
// Prevent double border on horizontal scroll due to use of `display: block;`
|
|
|
|
&.table-bordered {
|
|
|
|
border: 0;
|
|
|
|
}
|
2014-07-14 15:23:46 +08:00
|
|
|
}
|
2014-08-06 08:45:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
.table-reflow {
|
|
|
|
thead {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2014-12-19 14:59:47 +08:00
|
|
|
th,
|
|
|
|
td {
|
2015-11-15 15:24:48 +08:00
|
|
|
border-top: $table-border-width solid $table-border-color;
|
|
|
|
border-left: $table-border-width solid $table-border-color;
|
2014-12-19 14:59:47 +08:00
|
|
|
|
|
|
|
&:last-child {
|
2015-11-15 15:24:48 +08:00
|
|
|
border-right: $table-border-width solid $table-border-color;
|
2014-08-06 08:45:24 +08:00
|
|
|
}
|
2014-12-19 14:59:47 +08:00
|
|
|
}
|
2014-08-06 08:45:24 +08:00
|
|
|
|
2014-12-19 14:59:47 +08:00
|
|
|
thead,
|
|
|
|
tbody,
|
|
|
|
tfoot {
|
2014-08-06 08:45:24 +08:00
|
|
|
&:last-child {
|
2016-02-07 04:28:18 +08:00
|
|
|
tr:last-child th,
|
|
|
|
tr:last-child td {
|
|
|
|
border-bottom: $table-border-width solid $table-border-color;
|
2014-08-06 08:45:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
float: left;
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
display: block !important;
|
2015-11-15 15:24:48 +08:00
|
|
|
border: $table-border-width solid $table-border-color;
|
2014-08-06 08:45:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|