Don't show underline when hovering on task titles

It's unnecessary, given that the whole card is supposed to be clicked.

Change-Id: I31c076f0b860904d948c0c31c944f6cfab7b0567
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane 2017-10-11 14:55:24 +01:00 committed by Adam Coldrick
parent 09332833aa
commit 8c5a329b1c
3 changed files with 15 additions and 5 deletions

View File

@ -27,7 +27,7 @@
<div class="col-xs-1">
<i class="fa fa-sb-story text-muted"></i>
</div>
<div class="col-xs-10">
<div class="col-xs-10 title">
<button type="button" class="close" title="Remove"
ng-click="removeCard(lane.worklist, item); $event.stopPropagation();">
&times;
@ -56,7 +56,7 @@
<div class="col-xs-1">
<i class="fa fa-tasks text-muted"></i>
</div>
<div class="col-xs-10">
<div class="col-xs-10 title">
<button type="button" class="close" title="Remove"
ng-click="removeCard(lane.worklist, item); $event.stopPropagation()">
&times;

View File

@ -24,7 +24,7 @@
<div class="col-xs-1">
<i class="fa fa-sb-story text-muted"></i>
</div>
<div class="col-xs-10">
<div class="col-xs-10 title">
<a>
{{item.story.title}}
</a>
@ -49,7 +49,7 @@
<div class="col-xs-1">
<i class="fa fa-tasks text-muted"></i>
</div>
<div class="col-xs-10">
<div class="col-xs-10 title">
<a>
{{item.task.title}}
</a>

View File

@ -150,6 +150,7 @@
text-align: left;
border-radius: @border-radius-base;
border: 1px solid #bbb;
& user-typeahead > .form-group {
margin-bottom: 0px;
margin-top: 0px;
@ -157,6 +158,15 @@
padding: 0px;
}
}
& .title > a {
cursor: inherit;
&:hover {
color: @link-color;
text-decoration: none;
}
}
}
.kanban-card-due {
@ -188,7 +198,7 @@
.kanban-card-readonly {
.kanban-card;
cursor: inherit;
cursor: default;
}