diff options
author | Philipp A. <flying-sheep@web.de> | 2015-05-03 17:40:11 +0200 |
---|---|---|
committer | Philipp A. <flying-sheep@web.de> | 2015-05-03 17:40:11 +0200 |
commit | a96cabaf70938df3fdb9f258758f743f398a14e5 (patch) | |
tree | 7150871df1c7ff2e038b50d57be10e19600ff1ab /css/theme | |
parent | 07197b1eae80a264fd9ff7dc68316ae60e5ace29 (diff) | |
download | perl-software-in-gnu-guix-a96cabaf70938df3fdb9f258758f743f398a14e5.tar perl-software-in-gnu-guix-a96cabaf70938df3fdb9f258758f743f398a14e5.tar.gz |
Fixed last header having a border-bottom
`<tbody/>` is automatically inserted, so we can guarantee that this affects all ths and tds in the last row of the table *body* and the head is left untouched
Diffstat (limited to 'css/theme')
-rw-r--r-- | css/theme/template/theme.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/css/theme/template/theme.scss b/css/theme/template/theme.scss index d1be10a..b5069d3 100644 --- a/css/theme/template/theme.scss +++ b/css/theme/template/theme.scss @@ -199,8 +199,9 @@ body { border-bottom: 1px solid; } -.reveal table tr:last-child td { - border-bottom: none; +.reveal table tbody tr:last-child th, +.reveal table tbody tr:last-child td { + border-bottom: none; } .reveal sup { |