Changes CSS for has-tip class, removes question mark from cursor.

This commit is contained in:
ssotomayor 2014-10-10 12:03:00 -03:00
commit b693555304
2 changed files with 3 additions and 0 deletions

View file

@ -742,6 +742,7 @@ ul.pagination li.current a:hover, ul.pagination li.current a:focus {
.has-tip {
color: #7A8C9E;
border-color: #7A8C9E;
cursor: inherit;
}
.logo {

View file

@ -55,6 +55,7 @@
<div class="large-5 medium-5 small-12 columns">
<div ng-repeat="vin in btx.vinSimple">
<small class="right m5t"
ng-class="{'has-tip': vin.valueAlt}"
data-options="disable_for_touch:true"
tooltip-popup-delay='500'
tooltip="{{vin.valueAlt|noFractionNumber}} {{alternativeIsoCode}}"
@ -77,6 +78,7 @@
<div class="large-6 medium-6 small-12 columns">
<div ng-repeat="vout in btx.voutSimple">
<small class="right m5t"
ng-class="{'has-tip': vout.valueAlt}"
data-options="disable_for_touch:true"
tooltip-popup-delay='500'
tooltip="{{vout.valueAlt|noFractionNumber}} {{alternativeIsoCode}}"