46fa43d67f
Co-authored-by: Adrian Simmons <adrian@perlucida.co.uk> Co-authored-by: Dominik Pschenitschni <mail@celement.de> Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/954 Reviewed-by: dpschen <dpschen@noreply.kolaente.de> Reviewed-by: konrad <k@knt.li> Co-authored-by: adrinux <adrian@perlucida.co.uk> Co-committed-by: adrinux <adrian@perlucida.co.uk>
29 lines
443 B
SCSS
29 lines
443 B
SCSS
// FIXME: adapt lables.vue so that it can be used for this aswell
|
|
.labels-list {
|
|
a, a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.tag {
|
|
margin: .5rem 0 .5rem .5rem;
|
|
background: var(--grey-200);
|
|
|
|
// FIXME: only used in ListLabels.vue
|
|
&.disabled {
|
|
opacity: 0.7;
|
|
|
|
&, a {
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
|
|
.multiselect .tag {
|
|
margin: 0 0 0 .5rem;
|
|
}
|
|
}
|
|
|
|
.tasks .task span.tag span {
|
|
width: auto;
|
|
}
|
|
|