vikunja-frontend/src/styles/components/labels.scss

30 lines
443 B
SCSS
Raw Normal View History

2021-10-18 14:33:59 +02:00
// FIXME: adapt lables.vue so that it can be used for this aswell
2019-03-07 20:48:40 +01:00
.labels-list {
a, a:hover {
2019-03-07 20:48:40 +01:00
text-decoration: none;
}
.tag {
2021-01-17 10:55:04 +01:00
margin: .5rem 0 .5rem .5rem;
background: var(--grey-200);
2019-03-07 20:48:40 +01:00
2021-10-18 14:33:59 +02:00
// FIXME: only used in ListLabels.vue
&.disabled {
2019-03-07 20:48:40 +01:00
opacity: 0.7;
&, a {
cursor: default;
}
2019-03-07 20:48:40 +01:00
}
}
2021-01-18 21:33:21 +01:00
.multiselect .tag {
margin: 0 0 0 .5rem;
}
2019-12-19 23:09:23 +01:00
}
.tasks .task span.tag span {
width: auto;
}
2021-01-18 21:33:21 +01:00