Skip to content

Commit 2ebc0d5

Browse files
author
Keenan Payne
committed
Merge pull request #94 from ConciseCSS/release-v3.2.0
Release v3.2.0
2 parents 2d9e181 + b349752 commit 2ebc0d5

File tree

5 files changed

+55
-5
lines changed

5 files changed

+55
-5
lines changed

dist/concise.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,9 @@ table {
765765
table thead {
766766
background-color: #f5f5f5;
767767
text-align: left; }
768+
table tfoot {
769+
background-color: #fbfbfb;
770+
border-top: 1px solid #e0e0e0; }
768771
table th,
769772
table td {
770773
border-right: 1px solid #e0e0e0;
@@ -860,6 +863,22 @@ small,
860863
font-size: 75%;
861864
vertical-align: text-bottom; }
862865

866+
sup,
867+
sub {
868+
font-size: 75%;
869+
line-height: 0;
870+
position: relative;
871+
vertical-align: baseline; }
872+
873+
sup {
874+
top: -0.5em; }
875+
876+
sub {
877+
bottom: -0.25em; }
878+
879+
s {
880+
text-decoration: line-through; }
881+
863882
p {
864883
margin-bottom: 20px; }
865884

@@ -934,6 +953,9 @@ kbd {
934953
padding: 2px 6px 0;
935954
white-space: nowrap; }
936955

956+
samp {
957+
vertical-align: bottom; }
958+
937959
address {
938960
font-style: normal; }
939961

dist/concise.min.css

Lines changed: 0 additions & 1 deletion
Large diffs are not rendered by default.

src/core/layout/_tables.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ table {
2323
text-align: left;
2424
}
2525

26+
tfoot {
27+
background-color: lighten(getColor(background, light), 2.5%);
28+
border-top: 1px solid getColor(base, lines);
29+
}
30+
2631
th,
2732
td {
2833
border-right: 1px solid getColor(base, lines);
@@ -71,7 +76,7 @@ table {
7176
border: 3px solid white;
7277
border-radius: 8px;
7378
}
74-
79+
7580
table { margin-bottom: 0; }
7681
}
7782

src/core/layout/_type.scss

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,25 @@ strong,
1515
.bold { font-weight: bold; }
1616

1717
small,
18-
.small {
19-
font-size: 75%;
18+
.small {
19+
font-size: 75%;
2020
vertical-align: text-bottom;
2121
}
2222

23+
sup,
24+
sub {
25+
font-size: 75%;
26+
line-height: 0;
27+
position: relative;
28+
vertical-align: baseline;
29+
}
30+
31+
sup { top: -0.5em; }
32+
33+
sub { bottom: -0.25em; }
34+
35+
s { text-decoration: line-through; }
36+
2337

2438
//
2539
// Paragraphs
@@ -124,6 +138,8 @@ kbd {
124138
white-space: nowrap;
125139
}
126140

141+
samp { vertical-align: bottom; }
142+
127143

128144
//
129145
// Addresses

test/test.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h6>Heading 6 <small>Helper text</small></h6>
2525

2626
<p>Lorem <strong>ipsum</strong> <em>dolor</em> sit <abbr title="Abbreviation">amet</abbr>, <code>sadipscing</code> <kbd>elitr</kbd>, sed diam <a href="">nonumy</a> eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>
2727

28-
<p class="text--justify">At <b>vero</b> <i>eos</i> et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>
28+
<p class="text--justify">At <b>vero</b> <i>eos</i> et accusam <sub>et</sub> justo <sup>duo</sup> dolores et ea rebum. <s>Stet clita</s> kasd gubergren, no sea <var>takimata</var> sanctus <samp>est Lorem ipsum dolor sit amet</samp>. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>
2929

3030
<p class="text--left">Left text</p>
3131

@@ -167,6 +167,14 @@ <h6>Heading 6 <small>Helper text</small></h6>
167167
</tr>
168168
</thead>
169169

170+
<tfoot>
171+
<tr>
172+
<td><strong>Total Users:</strong></td>
173+
<td>2</td>
174+
<td></td>
175+
</tr>
176+
</tfoot>
177+
170178
<tbody>
171179
<tr>
172180
<td>1</td>

0 commit comments

Comments
 (0)