forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
28 lines
503 B
CSS
28 lines
503 B
CSS
.revision-current {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.revision-current td:first-of-type {
|
|
position: relative;
|
|
}
|
|
|
|
.revision-current td:first-of-type::before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 1px;
|
|
height: 100%;
|
|
}
|
|
|
|
[dir="ltr"] .revision-current td:first-of-type::before {
|
|
left: 0;
|
|
border-left: 6px solid var(--gin-color-green);
|
|
}
|
|
|
|
[dir="rtl"] .revision-current td:first-of-type::before {
|
|
right: 0;
|
|
border-right: 6px solid var(--gin-color-green);
|
|
}
|
|
|