Simplify help bubbles

This commit is contained in:
Johannes Zellner
2016-12-12 11:26:47 +01:00
parent 79f1cd16a3
commit a372853777
2 changed files with 8 additions and 7 deletions
+6 -5
View File
@@ -151,12 +151,13 @@ html {
margin-top: 0; margin-top: 0;
} }
sup { .help {
top: -1.3em;
}
sup.help a {
color: #757c82; color: #757c82;
font-size: 14px;
&:hover {
color: $navbar-default-link-hover-color;
}
} }
h1, h2, h3 { h1, h2, h3 {
+2 -2
View File
@@ -280,7 +280,7 @@
<div> <div>
<div class="text-left"> <div class="text-left">
<h1> <h1>
Users <sup class="help" style="font-size: 14px;" ng-show="mailConfig.enabled"><a href="" ng-click="showUserHelp()"><i class="fa fa-question-circle"></i></a></sup> <button class="btn btn-primary btn-outline pull-right" ng-click="useradd.show()"><i class="fa fa-user-plus"></i> New User</button> Users <sup ng-show="mailConfig.enabled"><a href="" class="help" ng-click="showUserHelp()"><i class="fa fa-question-circle"></i></a></sup> <button class="btn btn-primary btn-outline pull-right" ng-click="useradd.show()"><i class="fa fa-user-plus"></i> New User</button>
</h1> </h1>
</div> </div>
</div> </div>
@@ -339,7 +339,7 @@
<div> <div>
<div class="text-left"> <div class="text-left">
<h1> <h1>
Groups <sup style="font-size: 14px;" class="help" ng-show="mailConfig.enabled"><a href="" ng-click="showGroupHelp()"><i class="fa fa-question-circle"></i></a></sup> <button class="btn btn-primary btn-outline pull-right" ng-click="groupAdd.show()"><i class="fa fa-plus"></i> New Group</button> Groups <sup ng-show="mailConfig.enabled"><a href="" class="help" ng-click="showGroupHelp()"><i class="fa fa-question-circle"></i></a></sup> <button class="btn btn-primary btn-outline pull-right" ng-click="groupAdd.show()"><i class="fa fa-plus"></i> New Group</button>
</h1> </h1>
</div> </div>
</div> </div>