umami/src/components/common/FilterLink.module.css

38 lines
427 B
CSS
Raw Normal View History

2022-04-10 12:51:43 +02:00
.row {
display: flex;
align-items: center;
2023-04-24 04:52:44 +02:00
gap: 10px;
2022-04-10 12:51:43 +02:00
}
2023-04-26 06:18:03 +02:00
.row.inactive {
color: var(--base500);
2021-11-22 07:00:14 +01:00
}
2023-04-26 06:18:03 +02:00
.row.inactive img {
opacity: 0.35;
}
.row.active {
color: var(--base900);
2021-11-22 07:00:14 +01:00
font-weight: 600;
}
.row .link {
display: none;
2023-04-20 20:08:56 +02:00
margin-inline-start: 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;
}