Merge pull request #2813 from mlorb/ml-sci-4583

Fix tables header corners [SCI-4583]
This commit is contained in:
mlorb 2020-09-02 17:55:59 +02:00 committed by GitHub
commit 54393d4641
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -8,10 +8,9 @@
word-break: initial;
thead {
background-color: $color-concrete;
tr {
th {
background-color: $color-concrete;
border-bottom: 2px solid $color-white;
border-left: 2px solid $color-white;
font-weight: bold;
@ -31,6 +30,11 @@
&:first-child {
border-left: 0;
border-top-left-radius: $border-radius-default;
}
&:last-child {
border-top-right-radius: $border-radius-default;
}
}

View file

@ -87,4 +87,8 @@
margin-right: .5em;
}
}
table > tbody > tr:first-child > td {
border-top: 0;
}
}