2011-11-26 00:34:55 -05:00
|
|
|
//
|
2015-08-17 21:33:34 -04:00
|
|
|
// Basic Bootstrap table
|
2014-12-19 01:59:47 -05:00
|
|
|
//
|
2011-05-03 21:09:25 -04:00
|
|
|
|
2012-01-18 02:39:18 -05:00
|
|
|
.table {
|
2011-05-03 21:09:25 -04:00
|
|
|
width: 100%;
|
2014-06-08 19:54:05 -04:00
|
|
|
max-width: 100%;
|
2014-12-04 18:25:57 -05:00
|
|
|
margin-bottom: $spacer;
|
Drop Normalize, port relevant parts to Reboot (#21741)
* Get this party started by removing mention of Normalize.css
* Nuke the old comment, consolidate to a single line and number as appropriate
* Bring over styles for HTML element from Normalize to Reboot
* Move margin override for body element from Normalize to Reboot
* Drop the block reset for HTML5 elements in IE9- from Normalize given we dropped IE9 support
* Building on previous commit, do the same thing for figure, figcaption, and main
* Remove IE9- display from Normalize given our browser support
* Drop IE8 figure margin because we're IE10+
* No need for the h1 overrides because we reset these font and margin styles anyway in _type.scss already
* Drop Safari 6 b and strong normalization because we're Safari 8+
* Remove mark styles for IE9- from Normalize
* Remove old iOS audio fixes from Normalize
* Remove IE9- display for progress from Normalize
* Remove more IE9- rules from Normalize
* One more IE9- display removal for canvas element
* Move pre overrides from Normalize to Reboot
* Move over some link resets to Reboot, drop others
- Move over background-color and text-decoration
- Drop focus outline change given it affects the offset on hover of
focused links
* Move over more code element resets, consolidate with pre overrides, too
* Move over sub and sup wholesale
* Move over img normalization to Reboot
* Move over SVG override too
* - Drop dupe hidden, but add comment for it
- Move over template
- Move over summary
* Remove bulk of @viewport comment
* edit down that code comment
* consolidate html-based normalizations
* update comments
* Consolidate abbr styles
* move over more type elements
* move over hr changes
* move over form controls and more
* move over button resets
* move over firefox button changes
* move over search changes and more
* we nuke all these styles for fieldsets anyway, so outright remove them
* no need for those, we override them
* move over legend, fieldset, progress
* line break
* delete normalize file
* linting
* update comment
* clarify docs mentions of normalize and reboot
* remove normalize excludes from linter
* remove normalize excludes from cli task
* linting
* callout license since we forked part of normalize
* Improve comments, move table background reset to .table class instead of in reboot
* trailing space
2017-01-21 17:14:25 -05:00
|
|
|
background-color: $table-bg; // Reset for nesting within parents with `background-color`.
|
2014-12-04 18:25:57 -05:00
|
|
|
|
2014-12-19 01:59:47 -05:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: $table-cell-padding;
|
|
|
|
vertical-align: top;
|
2015-11-15 02:24:48 -05:00
|
|
|
border-top: $table-border-width solid $table-border-color;
|
2012-01-18 02:39:18 -05:00
|
|
|
}
|
2014-12-19 01:59:47 -05:00
|
|
|
|
|
|
|
thead th {
|
2012-02-11 02:07:32 -05:00
|
|
|
vertical-align: bottom;
|
2015-11-15 02:24:48 -05:00
|
|
|
border-bottom: (2 * $table-border-width) solid $table-border-color;
|
2012-01-18 02:39:18 -05:00
|
|
|
}
|
2014-12-19 01:59:47 -05:00
|
|
|
|
|
|
|
tbody + tbody {
|
2015-11-15 02:24:48 -05:00
|
|
|
border-top: (2 * $table-border-width) solid $table-border-color;
|
2012-01-18 02:39:18 -05:00
|
|
|
}
|
2012-12-08 15:57:21 -05:00
|
|
|
|
2014-12-19 01:59:47 -05:00
|
|
|
.table {
|
|
|
|
background-color: $body-bg;
|
|
|
|
}
|
2012-01-11 12:43:13 -05:00
|
|
|
}
|
|
|
|
|
2011-10-31 22:37:10 -04:00
|
|
|
|
2014-12-19 01:59:47 -05:00
|
|
|
//
|
2013-07-23 13:48:30 -04:00
|
|
|
// Condensed table w/ half padding
|
2014-12-19 01:59:47 -05:00
|
|
|
//
|
2011-10-31 22:37:10 -04:00
|
|
|
|
2014-09-18 01:14:27 -04:00
|
|
|
.table-sm {
|
2014-12-19 01:59:47 -05:00
|
|
|
th,
|
|
|
|
td {
|
Rename for consistency `$table-sm-cell-padding`, `$table-bg-accent`, `$table-bg-hover`, `$table-bg-active`, `$table-inverse-bg-accent`, `$table-inverse-bg-hover` to `$table-cell-padding-sm`, `$table-accent-bg`, `$table-hover-bg`, `$table-active-bg`, `$table-inverse-accent-bg`, `$table-inverse-hover-bg`, respectively (#22414)
2017-06-08 21:27:07 -04:00
|
|
|
padding: $table-cell-padding-sm;
|
2011-09-08 13:47:05 -04:00
|
|
|
}
|
2011-10-31 22:37:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-23 13:48:30 -04:00
|
|
|
// Bordered version
|
2013-08-19 00:43:05 -04:00
|
|
|
//
|
|
|
|
// Add borders all around the table and between all the columns.
|
2011-10-31 22:37:10 -04:00
|
|
|
|
2012-01-15 00:28:47 -05:00
|
|
|
.table-bordered {
|
2015-11-15 02:24:48 -05:00
|
|
|
border: $table-border-width solid $table-border-color;
|
2014-12-19 01:59:47 -05:00
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
2015-11-15 02:24:48 -05:00
|
|
|
border: $table-border-width solid $table-border-color;
|
2012-07-20 00:06:42 -04:00
|
|
|
}
|
2014-12-19 01:59:47 -05:00
|
|
|
|
|
|
|
thead {
|
|
|
|
th,
|
|
|
|
td {
|
2015-11-15 02:24:48 -05:00
|
|
|
border-bottom-width: (2 * $table-border-width);
|
2013-08-17 17:15:33 -04:00
|
|
|
}
|
|
|
|
}
|
2011-05-03 21:09:25 -04:00
|
|
|
}
|
|
|
|
|
2011-06-30 03:15:37 -04:00
|
|
|
|
2013-07-23 13:48:30 -04:00
|
|
|
// Zebra-striping
|
2013-08-19 00:43:05 -04:00
|
|
|
//
|
2011-11-30 01:35:03 -05:00
|
|
|
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
2013-08-19 00:43:05 -04:00
|
|
|
|
2013-11-06 21:32:35 -05:00
|
|
|
.table-striped {
|
2015-01-19 17:48:12 -05:00
|
|
|
tbody tr:nth-of-type(odd) {
|
Rename for consistency `$table-sm-cell-padding`, `$table-bg-accent`, `$table-bg-hover`, `$table-bg-active`, `$table-inverse-bg-accent`, `$table-inverse-bg-hover` to `$table-cell-padding-sm`, `$table-accent-bg`, `$table-hover-bg`, `$table-active-bg`, `$table-inverse-accent-bg`, `$table-inverse-hover-bg`, respectively (#22414)
2017-06-08 21:27:07 -04:00
|
|
|
background-color: $table-accent-bg;
|
2011-11-30 01:35:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-23 13:48:30 -04:00
|
|
|
// Hover effect
|
2013-08-19 00:43:05 -04:00
|
|
|
//
|
2012-02-05 05:28:42 -05:00
|
|
|
// Placed here since it has to come after the potential zebra striping
|
2013-08-19 00:43:05 -04:00
|
|
|
|
2013-11-06 21:32:35 -05:00
|
|
|
.table-hover {
|
2015-01-01 04:05:01 -05:00
|
|
|
tbody tr {
|
|
|
|
@include hover {
|
Rename for consistency `$table-sm-cell-padding`, `$table-bg-accent`, `$table-bg-hover`, `$table-bg-active`, `$table-inverse-bg-accent`, `$table-inverse-bg-hover` to `$table-cell-padding-sm`, `$table-accent-bg`, `$table-hover-bg`, `$table-active-bg`, `$table-inverse-accent-bg`, `$table-inverse-hover-bg`, respectively (#22414)
2017-06-08 21:27:07 -04:00
|
|
|
background-color: $table-hover-bg;
|
2015-01-01 04:05:01 -05:00
|
|
|
}
|
2012-02-05 05:28:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 01:35:03 -05:00
|
|
|
|
2013-07-23 13:48:30 -04:00
|
|
|
// Table backgrounds
|
2013-08-19 00:43:05 -04:00
|
|
|
//
|
2013-07-24 01:27:49 -04:00
|
|
|
// Exact selectors below required to override `.table-striped` and prevent
|
|
|
|
// inheritance to nested tables.
|
2012-08-08 01:50:49 -04:00
|
|
|
|
2017-06-28 12:36:27 -04:00
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
@include table-row-variant($color, theme-color-level($color, -9));
|
|
|
|
}
|
2013-08-19 00:43:05 -04:00
|
|
|
|
2017-07-01 16:08:49 -04:00
|
|
|
@include table-row-variant(active, $table-active-bg);
|
|
|
|
|
2013-08-19 00:43:05 -04:00
|
|
|
|
2017-08-18 21:17:05 -04:00
|
|
|
// Dark styles
|
2013-08-19 00:43:05 -04:00
|
|
|
//
|
2016-08-08 23:35:58 -04:00
|
|
|
// Same table markup, but inverted color scheme: dark background and light text.
|
2014-07-14 02:45:34 -04:00
|
|
|
|
2017-08-19 03:10:07 -04:00
|
|
|
.table {
|
|
|
|
.thead-dark {
|
|
|
|
th {
|
|
|
|
color: $table-dark-color;
|
|
|
|
background-color: $table-dark-bg;
|
|
|
|
border-color: $table-dark-border-color;
|
|
|
|
}
|
2014-07-14 02:45:34 -04:00
|
|
|
}
|
2016-05-11 19:28:28 -04:00
|
|
|
|
2017-08-19 03:10:07 -04:00
|
|
|
.thead-light {
|
|
|
|
th {
|
|
|
|
color: $table-head-color;
|
|
|
|
background-color: $table-head-bg;
|
|
|
|
border-color: $table-border-color;
|
|
|
|
}
|
2014-07-14 02:45:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-18 21:17:05 -04:00
|
|
|
.table-dark {
|
2017-08-18 21:13:56 -04:00
|
|
|
color: $table-dark-color;
|
|
|
|
background-color: $table-dark-bg;
|
2014-07-14 03:23:46 -04:00
|
|
|
|
2014-12-19 01:59:47 -05:00
|
|
|
th,
|
2015-01-19 18:52:40 -05:00
|
|
|
td,
|
|
|
|
thead th {
|
2017-08-18 21:13:56 -04:00
|
|
|
border-color: $table-dark-border-color;
|
2014-07-14 03:23:46 -04:00
|
|
|
}
|
2016-05-11 19:28:28 -04:00
|
|
|
|
|
|
|
&.table-bordered {
|
|
|
|
border: 0;
|
|
|
|
}
|
2017-03-19 20:37:00 -04:00
|
|
|
|
|
|
|
&.table-striped {
|
|
|
|
tbody tr:nth-of-type(odd) {
|
2017-08-18 21:13:56 -04:00
|
|
|
background-color: $table-dark-accent-bg;
|
2017-03-19 20:37:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.table-hover {
|
|
|
|
tbody tr {
|
|
|
|
@include hover {
|
2017-08-18 21:13:56 -04:00
|
|
|
background-color: $table-dark-hover-bg;
|
2017-03-19 20:37:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-11 19:28:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Responsive tables
|
|
|
|
//
|
2016-11-26 04:46:11 -05:00
|
|
|
// Add `.table-responsive` to `.table`s and we'll make them mobile friendly by
|
|
|
|
// enabling horizontal scrolling. Only applies <768px. Everything above that
|
2016-05-11 19:28:28 -04:00
|
|
|
// will display normally.
|
|
|
|
|
|
|
|
.table-responsive {
|
2017-03-19 19:54:03 -04:00
|
|
|
@include media-breakpoint-down(md) {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: auto;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057
|
|
|
|
|
|
|
|
// Prevent double border on horizontal scroll due to use of `display: block;`
|
|
|
|
&.table-bordered {
|
|
|
|
border: 0;
|
|
|
|
}
|
2016-11-26 04:44:06 -05:00
|
|
|
}
|
2014-07-14 03:23:46 -04:00
|
|
|
}
|