Smartable/src/styles/_headings.less
Madeorsk a82da6541d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Show column sort order.
2024-07-27 18:56:10 +02:00

81 lines
1.1 KiB
Text

tr.headings
{
th
{
position: relative;
cursor: pointer;
&::before, &::after
{ // Sorting order indicator.
transition: height 0.2s ease, background 0.2s ease, top 0.2s ease, bottom 0.2s ease;
content: "";
position: absolute;
top: 0;
bottom: 0;
display: block;
margin: auto;
box-sizing: border-box;
background: var(--background-darkest);
}
&::before
{
right: calc(0.33em - 1px);
width: 2px;
height: 0;
border-radius: 2px;
}
&::after
{
right: calc(0.33em - 3px);
width: 6px;
height: 6px;
border-radius: 6px;
}
&.asc, &.desc
{
&::after, &::before
{
background: var(--primary);
}
&::before
{
height: 0.8em;
}
}
&.asc::after
{
top: 0.5em;
}
&.desc::after
{
bottom: 0.5em;
}
.order
{ // Sort order indicator.
position: relative;
top: 0;
bottom: 0;
display: block;
margin: auto 0;
padding: 0.3em 0.3em 0;
align-items: center;
justify-content: center;
color: var(--foreground-lightest);
font-size: 0.7em;
float: right;
}
}
}