Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit 8410e05

Browse files
committed
Tables: Add fullwidth table option
1 parent 5d8723e commit 8410e05

File tree

3 files changed

+48
-4
lines changed

3 files changed

+48
-4
lines changed

demos/tables.html

+36
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ <h1>CSS Chassis</h1>
1717

1818
<h2>Tables</h2>
1919

20+
<h3>Basic Table</h3>
2021
<p>Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</p>
2122

2223
<table class="table">
@@ -50,6 +51,7 @@ <h2>Tables</h2>
5051
</tbody>
5152
</table>
5253

54+
<h3>Div Table</h3>
5355
<p>Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</p>
5456

5557
<div class="table">
@@ -83,5 +85,39 @@ <h2>Tables</h2>
8385
</div>
8486
</div>
8587

88+
<h3>Full Width Table</h3>
89+
<p>Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</p>
90+
91+
<table class="table-fullwidth">
92+
<thead class="table-head">
93+
<tr class="table-row">
94+
<th class="table-heading" scope="col">ID</th>
95+
<th class="table-heading" scope="col">Product</th>
96+
<th class="table-heading" scope="col">Category</th>
97+
<th class="table-heading" scope="col">Price</th>
98+
</tr>
99+
</thead>
100+
<tbody class="table-body">
101+
<tr class="table-row">
102+
<th class="table-heading" scope="row">1</th>
103+
<td class="table-cell">T-Shirt</td>
104+
<td class="table-cell">Apparel</td>
105+
<td class="table-cell">$12.99</td>
106+
</tr>
107+
<tr class="table-row">
108+
<th class="table-heading" scope="row">2</th>
109+
<td class="table-cell">Sweat Shirt</td>
110+
<td class="table-cell">Apparel</td>
111+
<td class="table-cell">$24.99</td>
112+
</tr>
113+
<tr class="table-row">
114+
<th class="table-heading" scope="row">3</th>
115+
<td class="table-cell">Necklace</td>
116+
<td class="table-cell">Accessories</td>
117+
<td class="table-cell">$29.99</td>
118+
</tr>
119+
</tbody>
120+
</table>
121+
86122
</body>
87123
</html>

scss/atoms/tables/_mixins.scss

+6
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@
33
* Table mixins
44
* ==========================================================================
55
*/
6+
@mixin table($margin, $font-size) {
7+
display: table;
8+
margin: $margin;
9+
font-size: $font-size;
10+
text-align: left;
11+
}

scss/atoms/tables/_tables.scss

+6-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@
99
"mixins";
1010

1111
.table {
12-
display: table;
13-
margin: map-get($table-base, margin);
14-
font-size: map-get($table-base, font-size);
15-
text-align: left;
12+
@include table(map-get($table-base, margin), map-get($table-base, font-size));
13+
}
14+
15+
.table-fullwidth {
16+
width: 100%;
17+
@include table(map-get($table-base, margin), map-get($table-base, font-size));
1618
}
1719

1820
/* thead */

0 commit comments

Comments
 (0)