Now the tag hover space is the double of the tag line
parent
238df23a61
commit
c80aed16a4
|
@ -63,12 +63,12 @@ ColorizeTagsDirective = ->
|
||||||
""")
|
""")
|
||||||
kanban: _.template("""
|
kanban: _.template("""
|
||||||
<% _.each(tags, function(tag) { %>
|
<% _.each(tags, function(tag) { %>
|
||||||
<a class="kanban-tag" href="" style="background: <%- tag.color %>" title="<%- tag.name %>" />
|
<a class="kanban-tag" href="" style="border-color: <%- tag.color %>" title="<%- tag.name %>" />
|
||||||
<% }) %>
|
<% }) %>
|
||||||
""")
|
""")
|
||||||
taskboard: _.template("""
|
taskboard: _.template("""
|
||||||
<% _.each(tags, function(tag) { %>
|
<% _.each(tags, function(tag) { %>
|
||||||
<a class="taskboard-tag" href="" style="background: <%- tag.color %>" title="<%- tag.name %>" />
|
<a class="taskboard-tag" href="" style="border-color: <%- tag.color %>" title="<%- tag.name %>" />
|
||||||
<% }) %>
|
<% }) %>
|
||||||
""")
|
""")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
div.kanban-tagline(tg-colorize-tags="us.tags" tg-colorize-tags-type="kanban")
|
div.kanban-tagline(tg-colorize-tags="us.tags", tg-colorize-tags-type="kanban")
|
||||||
div.kanban-task-inner
|
div.kanban-task-inner
|
||||||
div(tg-kanban-user-avatar="us.assigned_to", ng-model="us")
|
div(tg-kanban-user-avatar="us.assigned_to", ng-model="us")
|
||||||
div.task-text
|
div.task-text
|
||||||
|
|
|
@ -28,13 +28,14 @@
|
||||||
}
|
}
|
||||||
.kanban-tagline {
|
.kanban-tagline {
|
||||||
@include table-flex();
|
@include table-flex();
|
||||||
background: $postit-hover; //Fallback
|
border-color: $postit-hover; //Fallback
|
||||||
//height: .3rem;
|
height: .6rem;
|
||||||
}
|
}
|
||||||
.kanban-tag {
|
.kanban-tag {
|
||||||
@include table-flex-child(1, 0, 0, 0);
|
@include table-flex-child(1, 0, 0, 0);
|
||||||
background: $postit-hover; //Fallback
|
border-color: $postit-hover; //Fallback
|
||||||
//height: .3rem;
|
z-index: 100;
|
||||||
|
height: .6rem;
|
||||||
}
|
}
|
||||||
.kanban-task-inner {
|
.kanban-task-inner {
|
||||||
@include table-flex();
|
@include table-flex();
|
||||||
|
@ -127,11 +128,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.kanban-tagline {
|
|
||||||
height: .3rem;
|
|
||||||
}
|
|
||||||
.kanban-tag {
|
.kanban-tag {
|
||||||
height: .3rem;
|
border-top: .3rem solid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -169,10 +167,7 @@
|
||||||
cursor: move;
|
cursor: move;
|
||||||
right: .1rem;
|
right: .1rem;
|
||||||
}
|
}
|
||||||
.kanban-tagline {
|
|
||||||
height: .2rem;
|
|
||||||
}
|
|
||||||
.kanban-tag {
|
.kanban-tag {
|
||||||
height: .2rem;
|
border-top: .2rem solid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,13 +34,15 @@
|
||||||
}
|
}
|
||||||
.taskboard-tagline {
|
.taskboard-tagline {
|
||||||
@include table-flex();
|
@include table-flex();
|
||||||
background: $gray-light; //Fallback
|
border-color: $postit-hover; //Fallback
|
||||||
height: .3rem;
|
height: .6rem;
|
||||||
}
|
}
|
||||||
.taskboard-tag {
|
.taskboard-tag {
|
||||||
@include table-flex-child(1, 0, 0, 0);
|
@include table-flex-child(1, 0, 0, 0);
|
||||||
background: $postit-hover; //Fallback
|
border-color: $postit-hover; //Fallback
|
||||||
height: .3rem;
|
z-index: 100;
|
||||||
|
height: .6rem;
|
||||||
|
border-top: .3rem solid;
|
||||||
}
|
}
|
||||||
.taskboard-task-inner {
|
.taskboard-task-inner {
|
||||||
@include table-flex();
|
@include table-flex();
|
||||||
|
|
Loading…
Reference in New Issue