tablesaw.stackonly-base.css in Responsive Tables Filter 7
/*! Tablesaw - v3.1.1 - 2019-03-15
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2019 Filament Group; Licensed MIT */
/* Drupal module note: this replicates the full-width rendering
of tables and leaves out responsive behavior; this is to retain
full-width behavior in 'print' stylesheet context. */
.tablesaw {
width: 100%;
max-width: 100%;
empty-cells: show;
border-collapse: collapse;
border: 0;
padding: 0;
}
.tablesaw * {
box-sizing: border-box;
}
.tablesaw-stack td .tablesaw-cell-label,
.tablesaw-stack th .tablesaw-cell-label {
display: none;
}
/* Media query to show as a standard table at 560px (35em x 16px) or wider */
@media (min-width: 40em) {
.tablesaw-stack tr {
display: table-row;
}
/* Show the table header rows */
.tablesaw-stack td,
.tablesaw-stack th,
.tablesaw-stack thead td,
.tablesaw-stack thead th {
display: table-cell;
margin: 0;
}
/* Hide the labels in each cell */
.tablesaw-stack td .tablesaw-cell-label,
.tablesaw-stack th .tablesaw-cell-label {
display: none !important;
}
}
File
tablesaw/css/tablesaw.stackonly-base.css
View source
- /*! Tablesaw - v3.1.1 - 2019-03-15
- * https://github.com/filamentgroup/tablesaw
- * Copyright (c) 2019 Filament Group; Licensed MIT */
-
- /* Drupal module note: this replicates the full-width rendering
- of tables and leaves out responsive behavior; this is to retain
- full-width behavior in 'print' stylesheet context. */
-
- .tablesaw {
- width: 100%;
- max-width: 100%;
- empty-cells: show;
- border-collapse: collapse;
- border: 0;
- padding: 0;
- }
-
- .tablesaw * {
- box-sizing: border-box;
- }
-
- .tablesaw-stack td .tablesaw-cell-label,
- .tablesaw-stack th .tablesaw-cell-label {
- display: none;
- }
-
- /* Media query to show as a standard table at 560px (35em x 16px) or wider */
-
- @media (min-width: 40em) {
- .tablesaw-stack tr {
- display: table-row;
- }
-
- /* Show the table header rows */
-
- .tablesaw-stack td,
- .tablesaw-stack th,
- .tablesaw-stack thead td,
- .tablesaw-stack thead th {
- display: table-cell;
- margin: 0;
- }
-
- /* Hide the labels in each cell */
-
- .tablesaw-stack td .tablesaw-cell-label,
- .tablesaw-stack th .tablesaw-cell-label {
- display: none !important;
- }
- }