Merge "Don't show underline when hovering on task titles"

This commit is contained in:
Zuul 2018-08-02 20:14:26 +00:00 committed by Gerrit Code Review
commit c895b6483f
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-sb-task 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-sb-task 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;
}