umami/components/common/FilterLink.module.css

33 lines
368 B
CSS
Raw Normal View History

2022-04-10 12:51:43 +02:00
.row {
display: flex;
align-items: center;
}
.row .inactive {
2021-11-22 07:00:14 +01:00
color: var(--gray500);
}
2022-04-10 12:51:43 +02:00
.row .active {
2021-11-22 07:00:14 +01:00
color: var(--gray900);
font-weight: 600;
}
.row .link {
display: none;
2022-04-10 12:51:43 +02:00
margin-left: 20px;
2021-11-22 07:00:14 +01:00
}
.row .label {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.row:hover .link {
display: block;
}
.icon {
cursor: pointer;
}