Fixing the hover on the groups

This commit is contained in:
Zsolt
2017-10-26 12:58:36 +02:00
parent a0a3b7e9c9
commit 87c311d6e7
2 changed files with 6 additions and 2 deletions

View File

@@ -187,4 +187,8 @@
font-size: 14px;
color: @gray-6;
margin-left: auto;
}
.umb-help-list-item:hover .umb-help-list-item__group-title {
text-decoration: underline;
}

View File

@@ -16,8 +16,8 @@
<div class="umb-help-list">
<a href="" class="umb-help-list-item flex items-center justify-between" style="padding: 5px 20px;" ng-click="value.open = !value.open">
<h5><i style="margin-right: 2px;" ng-class="{'icon-navigation-right': !value.open, 'icon-navigation-down': value.open}"></i>{{key}}</h5>
<a href="" class="umb-help-list-item flex items-center justify-between" style="padding: 5px 20px;text-decoration: none;" ng-click="value.open = !value.open">
<h5 class="umb-help-list-item__group-title"><i style="margin-right: 2px;text-decoration: none;" ng-class="{'icon-navigation-right': !value.open, 'icon-navigation-down': value.open}"></i>{{key}}</h5>
<umb-progress-circle
percentage="{{value.completedPercentage}}"
size="40"