use pointer cursor and margin-left

Signed-off-by: Xheni Myrtaj <myrtajxheni@gmail.com>
This commit is contained in:
Xheni Myrtaj 2018-04-10 17:36:52 +02:00
parent a49310f7df
commit 67e3117aa4
2 changed files with 5 additions and 1 deletions

View File

@ -288,6 +288,10 @@ propertygroup {
margin-right: 8px;
opacity: .5;
}
#info{
cursor:pointer;
margin-left: 8px;
}
}
/* GRID SETTINGS */
@include generate-grid-span(1);

View File

@ -1,7 +1,7 @@
<h3 class="propertyGroup__title">
<i ng-class="ctrl.getIconClass()"></i>
{{ctrl.getReadableName()}}
<i ng-class="ctrl.getInfoClass()" tooltip-append-to-body="true" tooltip-placement="right" uib-tooltip="{{ctrl.getInfoText()}}"></i>
<i ng-class="ctrl.getInfoClass()" id="info" tooltip-append-to-body="true" tooltip-placement="right" uib-tooltip="{{ctrl.getInfoText()}}"></i>
</h3>
<detailsItem ng-repeat="property in ctrl.properties" name="ctrl.name" data="property" model="ctrl.contact" index="$index"
class="details-item-{{ctrl.name}}" ng-class="{ 'failed': ctrl.contact.failedProps.indexOf(ctrl.name) !== -1 }"></detailsItem>