Minor style improvements and fix scss attribute order errors
parent
c80aed16a4
commit
246df0cc86
|
@ -28,13 +28,12 @@
|
||||||
}
|
}
|
||||||
.kanban-tagline {
|
.kanban-tagline {
|
||||||
@include table-flex();
|
@include table-flex();
|
||||||
border-color: $postit-hover; //Fallback
|
border-color: $postit-hover;
|
||||||
height: .6rem;
|
height: .6rem;
|
||||||
}
|
}
|
||||||
.kanban-tag {
|
.kanban-tag {
|
||||||
@include table-flex-child(1, 0, 0, 0);
|
@include table-flex-child(1, 0, 0, 0);
|
||||||
border-color: $postit-hover; //Fallback
|
border-color: $postit-hover;
|
||||||
z-index: 100;
|
|
||||||
height: .6rem;
|
height: .6rem;
|
||||||
}
|
}
|
||||||
.kanban-task-inner {
|
.kanban-task-inner {
|
||||||
|
@ -135,7 +134,7 @@
|
||||||
|
|
||||||
.kanban-task-minimized {
|
.kanban-task-minimized {
|
||||||
.kanban-task-inner {
|
.kanban-task-inner {
|
||||||
padding: .3rem;
|
padding: 0 .3rem;
|
||||||
}
|
}
|
||||||
.avatar {
|
.avatar {
|
||||||
@include table-flex-child($flex-basis: 40px);
|
@include table-flex-child($flex-basis: 40px);
|
||||||
|
|
|
@ -34,20 +34,19 @@
|
||||||
}
|
}
|
||||||
.taskboard-tagline {
|
.taskboard-tagline {
|
||||||
@include table-flex();
|
@include table-flex();
|
||||||
border-color: $postit-hover; //Fallback
|
border-color: $postit-hover;
|
||||||
height: .6rem;
|
height: .6rem;
|
||||||
}
|
}
|
||||||
.taskboard-tag {
|
.taskboard-tag {
|
||||||
@include table-flex-child(1, 0, 0, 0);
|
@include table-flex-child(1, 0, 0, 0);
|
||||||
border-color: $postit-hover; //Fallback
|
border-top: .3rem solid $postit-hover;
|
||||||
z-index: 100;
|
|
||||||
height: .6rem;
|
height: .6rem;
|
||||||
border-top: .3rem solid;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
.taskboard-task-inner {
|
.taskboard-task-inner {
|
||||||
@include table-flex();
|
@include table-flex();
|
||||||
min-height: 7.5rem;
|
min-height: 7rem;
|
||||||
padding: 1rem .5rem;
|
padding: .5rem;
|
||||||
}
|
}
|
||||||
.taskboard-user-avatar {
|
.taskboard-user-avatar {
|
||||||
.avatar {
|
.avatar {
|
||||||
|
|
Loading…
Reference in New Issue