mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
18 lines
301 B
CSS
18 lines
301 B
CSS
|
.collapse {
|
||
|
border-collapse: collapse;
|
||
|
border-spacing: 0;
|
||
|
}
|
||
|
|
||
|
.striped:nth-child(odd) {
|
||
|
border-bottom: 1px solid var(--whitegrey);
|
||
|
}
|
||
|
|
||
|
.striped:nth-child(even) {
|
||
|
background-color: var(--whitegrey-l2);
|
||
|
border-bottom: 1px solid var(--whitegrey);
|
||
|
}
|
||
|
|
||
|
th, td {
|
||
|
vertical-align: top;
|
||
|
}
|