/home/techb158/dev.balacoffee.com/resources/src/assets/styles/vendor/bootstrap
NameSizeModeActions
.github/-0755rm
mixins/-0755rm
utilities/-0755rm
.babelrc.js2980644editdlrm
.browserslistrc2050644editdlrm
.editorconfig2220644editdlrm
.eslintignore610644editdlrm
.eslintrc.json70990644editdlrm
.gitattributes3980644editdlrm
.gitignore5970644editdlrm
.stylelintignore490644editdlrm
.stylelintrc76350644editdlrm
.travis.yml7410644editdlrm
bootstrap-grid.scss6490644editdlrm
bootstrap-reboot.scss4110644editdlrm
bootstrap.scss8990644editdlrm
_alert.scss11500644editdlrm
_badge.scss9820644editdlrm
_breadcrumb.scss12780644editdlrm
_button-group.scss37400644editdlrm
_buttons.scss27800644editdlrm
_card.scss60370644editdlrm
_carousel.scss52530644editdlrm
_close.scss8730644editdlrm
_code.scss9680644editdlrm
_custom-forms.scss122620644editdlrm
_dropdown.scss38390644editdlrm
_forms.scss87570644editdlrm
_functions.scss26600644editdlrm
_grid.scss10160644editdlrm
_images.scss11460644editdlrm
_input-group.scss53590644editdlrm
_jumbotron.scss3780644editdlrm
_list-group.scss28870644editdlrm
_media.scss830644editdlrm
_mixins.scss9840644editdlrm
_modal.scss49340644editdlrm
_nav.scss20220644editdlrm
_navbar.scss65290644editdlrm
_pagination.scss18740644editdlrm
_popover.scss45360644editdlrm
_print.scss30030644editdlrm
_progress.scss8640644editdlrm
_reboot.scss115510644editdlrm
_root.scss5720644editdlrm
_tables.scss35190644editdlrm
_toasts.scss9740644editdlrm
_tooltip.scss25030644editdlrm
_transitions.scss3110644editdlrm
_type.scss21150644editdlrm
_utilities.scss4360644editdlrm
_variables.scss331880644editdlrm
Edit: /home/techb158/dev.balacoffee.com/resources/src/assets/styles/vendor/bootstrap/_tables.scss (3519B)
// // Basic Bootstrap table // .table { width: 100%; margin-bottom: $spacer; background-color: $table-bg; // Reset for nesting within parents with `background-color`. th, td { padding: $table-cell-padding; vertical-align: top; border-top: $table-border-width solid $table-border-color; } thead th { vertical-align: bottom; border-bottom: (2 * $table-border-width) solid $table-border-color; } tbody + tbody { border-top: (2 * $table-border-width) solid $table-border-color; } .table { background-color: $body-bg; } } // // Condensed table w/ half padding // .table-sm { th, td { padding: $table-cell-padding-sm; } } // Border versions // // Add or remove borders all around the table and between all the columns. .table-bordered { border: $table-border-width solid $table-border-color; th, td { border: $table-border-width solid $table-border-color; } thead { th, td { border-bottom-width: (2 * $table-border-width); } } } .table-borderless { th, td, thead th, tbody + tbody { border: 0; } } // Zebra-striping // // Default zebra-stripe styles (alternating gray and transparent backgrounds) .table-striped { tbody tr:nth-of-type(#{$table-striped-order}) { background-color: $table-accent-bg; } } // Hover effect // // Placed here since it has to come after the potential zebra striping .table-hover { tbody tr { @include hover { background-color: $table-hover-bg; } } } // Table backgrounds // // Exact selectors below required to override `.table-striped` and prevent // inheritance to nested tables. @each $color, $value in $theme-colors { @include table-row-variant($color, theme-color-level($color, -9)); } @include table-row-variant(active, $table-active-bg); // Dark styles // // Same table markup, but inverted color scheme: dark background and light text. // stylelint-disable-next-line no-duplicate-selectors .table { .thead-dark { th { color: $table-dark-color; background-color: $table-dark-bg; border-color: $table-dark-border-color; } } .thead-light { th { color: $table-head-color; background-color: $table-head-bg; border-color: $table-border-color; } } } .table-dark { color: $table-dark-color; background-color: $table-dark-bg; th, td, thead th { border-color: $table-dark-border-color; } &.table-bordered { border: 0; } &.table-striped { tbody tr:nth-of-type(odd) { background-color: $table-dark-accent-bg; } } &.table-hover { tbody tr { @include hover { background-color: $table-dark-hover-bg; } } } } // Responsive tables // // Generate series of `.table-responsive-*` classes for configuring the screen // size of where your table will overflow. .table-responsive { @each $breakpoint in map-keys($grid-breakpoints) { $next: breakpoint-next($breakpoint, $grid-breakpoints); $infix: breakpoint-infix($next, $grid-breakpoints); &#{$infix} { @include media-breakpoint-down($breakpoint) { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -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; } } } } }