mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 15:40:31 +08:00
Merge pull request #2813 from mlorb/ml-sci-4583
Fix tables header corners [SCI-4583]
This commit is contained in:
commit
54393d4641
2 changed files with 10 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -87,4 +87,8 @@
|
|||
margin-right: .5em;
|
||||
}
|
||||
}
|
||||
|
||||
table > tbody > tr:first-child > td {
|
||||
border-top: 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue