Merge "Don't show underline when hovering on task titles"
This commit is contained in:
commit
c895b6483f
@ -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();">
|
||||
×
|
||||
@ -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()">
|
||||
×
|
||||
|
@ -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>
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user