mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 21:10:12 +02:00
27 lines
417 B
CSS
27 lines
417 B
CSS
.name-container {
|
|
display: -webkit-inline-box;
|
|
align-self: flex-start;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
a.name-container {
|
|
width: auto;
|
|
}
|
|
|
|
.name-container.compact {
|
|
-webkit-line-clamp: 1;
|
|
}
|
|
|
|
.name-container.large {
|
|
-webkit-line-clamp: 3;
|
|
}
|
|
|
|
.active {
|
|
color: var(--theme-colors-primary);
|
|
}
|
|
|