mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
d6b0f45fb7
Conflicts: Gruntfile.js dist/css/bootstrap-theme.css dist/css/bootstrap-theme.css.map dist/css/bootstrap-theme.min.css dist/css/bootstrap.css dist/css/bootstrap.css.map dist/css/bootstrap.min.css docs/_includes/components/dropdowns.html docs/_includes/components/media.html docs/_includes/components/navs.html docs/_includes/components/progress-bars.html docs/_includes/components/responsive-embed.html docs/_includes/css/buttons.html docs/_includes/css/forms.html docs/_includes/css/less.html docs/_includes/css/overview.html docs/_includes/css/responsive-utilities.html docs/_includes/customizer-variables.html docs/_includes/getting-started/browser-device-support.html docs/_includes/getting-started/grunt.html docs/_includes/getting-started/template.html docs/_includes/header.html docs/_includes/js/alerts.html docs/_includes/js/buttons.html docs/_includes/js/carousel.html docs/_includes/js/collapse.html docs/_includes/js/dropdowns.html docs/_includes/js/modal.html docs/_includes/js/popovers.html docs/_includes/js/scrollspy.html docs/_includes/js/tabs.html docs/_includes/js/tooltips.html docs/_includes/nav/components.html docs/_includes/nav/getting-started.html docs/_layouts/default.html docs/about.html docs/assets/css/docs.min.css docs/assets/css/src/docs.css docs/assets/js/customize.min.js docs/assets/js/docs.min.js docs/assets/js/raw-files.min.js docs/browser-bugs.html docs/components.html docs/components/navbar.md docs/css.html docs/dist/css/bootstrap-theme.css docs/dist/css/bootstrap-theme.css.map docs/dist/css/bootstrap-theme.min.css docs/dist/css/bootstrap.css docs/dist/css/bootstrap.css.map docs/dist/css/bootstrap.min.css docs/examples/blog/index.html docs/examples/carousel/index.html docs/examples/cover/index.html docs/examples/dashboard/index.html docs/examples/grid/index.html docs/examples/jumbotron-narrow/index.html docs/examples/jumbotron/index.html docs/examples/justified-nav/index.html docs/examples/navbar-fixed-top/index.html docs/examples/navbar-static-top/index.html docs/examples/navbar/index.html docs/examples/non-responsive/index.html docs/examples/offcanvas/index.html docs/examples/signin/index.html docs/examples/starter-template/index.html docs/examples/sticky-footer-navbar/index.html docs/examples/sticky-footer/index.html docs/examples/theme/index.html docs/examples/tooltip-viewport/index.html docs/getting-started.html docs/javascript.html docs/migration.html less/_animation.less less/_modal.less less/_navbar.less less/_variables.less less/glyphicons.less less/navs.less less/panels.less less/progress-bars.less
316 lines
5.6 KiB
Plaintext
316 lines
5.6 KiB
Plaintext
//
|
|
// Tables
|
|
// --------------------------------------------------
|
|
|
|
|
|
table {
|
|
background-color: @table-bg;
|
|
}
|
|
caption {
|
|
padding-top: @table-cell-padding;
|
|
padding-bottom: @table-cell-padding;
|
|
color: @text-muted;
|
|
text-align: left;
|
|
}
|
|
th {
|
|
text-align: left;
|
|
}
|
|
|
|
|
|
// Baseline styles
|
|
|
|
.table {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin-bottom: @line-height-computed;
|
|
// Cells
|
|
> thead,
|
|
> tbody,
|
|
> tfoot {
|
|
> tr {
|
|
> th,
|
|
> td {
|
|
padding: @table-cell-padding;
|
|
line-height: @line-height-base;
|
|
vertical-align: top;
|
|
border-top: 1px solid @table-border-color;
|
|
}
|
|
}
|
|
}
|
|
// Bottom align for column headings
|
|
> thead > tr > th {
|
|
vertical-align: bottom;
|
|
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 {
|
|
border-top: 2px solid @table-border-color;
|
|
}
|
|
|
|
// Nesting
|
|
// .table {
|
|
// background-color: @body-bg;
|
|
// }
|
|
}
|
|
|
|
|
|
// Condensed table w/ half padding
|
|
|
|
.table-sm {
|
|
> thead,
|
|
> tbody,
|
|
> tfoot {
|
|
> tr {
|
|
> th,
|
|
> td {
|
|
padding: @table-sm-cell-padding;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Bordered version
|
|
//
|
|
// Add borders all around the table and between all the columns.
|
|
|
|
.table-bordered {
|
|
border: 1px solid @table-border-color;
|
|
> thead,
|
|
> tbody,
|
|
> tfoot {
|
|
> tr {
|
|
> th,
|
|
> td {
|
|
border: 1px solid @table-border-color;
|
|
}
|
|
}
|
|
}
|
|
> thead > tr {
|
|
> th,
|
|
> td {
|
|
border-bottom-width: 2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Zebra-striping
|
|
//
|
|
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
|
|
|
.table-striped {
|
|
> tbody > tr:nth-child(odd) {
|
|
background-color: @table-bg-accent;
|
|
}
|
|
}
|
|
|
|
|
|
// Hover effect
|
|
//
|
|
// Placed here since it has to come after the potential zebra striping
|
|
|
|
.table-hover {
|
|
> tbody > tr:hover {
|
|
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)
|
|
float: none;
|
|
display: table-column;
|
|
}
|
|
table {
|
|
td,
|
|
th {
|
|
&[class*="col-"] {
|
|
position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
|
|
float: none;
|
|
display: table-cell;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Table backgrounds
|
|
//
|
|
// Exact selectors below required to override `.table-striped` and prevent
|
|
// inheritance to nested tables.
|
|
|
|
// Generate the contextual variants
|
|
.table-row-variant(active; @table-bg-active);
|
|
.table-row-variant(success; @state-success-bg);
|
|
.table-row-variant(info; @state-info-bg);
|
|
.table-row-variant(warning; @state-warning-bg);
|
|
.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.
|
|
|
|
.table-responsive {
|
|
overflow-x: auto;
|
|
min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
|
|
|
|
@media screen and (max-width: @screen-xs-max) {
|
|
width: 100%;
|
|
margin-bottom: (@line-height-computed * 0.75);
|
|
overflow-y: hidden;
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
border: 1px solid @table-border-color;
|
|
|
|
// 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;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.table > .thead-inverse {
|
|
> tr > th {
|
|
color: #fff;
|
|
background-color: @gray-dark;
|
|
}
|
|
}
|
|
.table > .thead-default {
|
|
> tr > th {
|
|
color: @gray;
|
|
background-color: @gray-lighter;
|
|
}
|
|
}
|
|
|
|
.table-inverse {
|
|
color: @gray-lighter;
|
|
background-color: @gray-dark;
|
|
|
|
&.table-bordered {
|
|
border: 0;
|
|
}
|
|
|
|
> thead,
|
|
> tbody {
|
|
> tr {
|
|
> th,
|
|
> td {
|
|
border-color: @gray;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.table-reflow {
|
|
|
|
thead {
|
|
float: left;
|
|
}
|
|
|
|
tbody {
|
|
display: block;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
> thead,
|
|
> tbody,
|
|
> tfoot {
|
|
> tr {
|
|
> th,
|
|
> td {
|
|
border-top: 1px solid @table-border-color;
|
|
border-left: 1px solid @table-border-color;
|
|
|
|
&:last-child {
|
|
border-right: 1px solid @table-border-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
> tr:last-child {
|
|
> th,
|
|
> td {
|
|
border-bottom: 1px solid @table-border-color;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
tr {
|
|
float: left;
|
|
|
|
th,
|
|
td {
|
|
display: block !important;
|
|
border: 1px solid @table-border-color;
|
|
}
|
|
}
|
|
}
|