frontend/src/styles/components/taskRelations.scss

45 lines
650 B
SCSS
Raw Normal View History

2020-07-24 20:20:10 +00:00
$remove-icon-width: 24px;
2019-11-24 13:16:24 +00:00
.task-relations {
&.is-narrow .columns {
display: block;
.column {
width: 100%;
}
}
.different-list {
color: $grey-500;
width: auto;
}
2019-11-24 13:16:24 +00:00
.related-tasks {
.title {
font-size: 1rem;
2019-11-24 13:16:24 +00:00
margin: 0;
}
.tasks {
margin: 0;
2020-07-24 20:20:10 +00:00
a:not(.remove) {
width: calc(100% - #{$remove-icon-width});
2019-11-24 13:16:24 +00:00
}
2020-07-24 20:20:10 +00:00
.task .tasktext {
width: calc(100% - .25rem); // Magic .25rem extra space
}
.remove {
width: $remove-icon-width;
text-align: center;
}
2019-11-24 13:16:24 +00:00
}
}
.none {
font-style: italic;
text-align: center;
}
}