Commit da78f2bd authored by Sean Roberts's avatar Sean Roberts

Branding adding highlightColor support

parent f5f034b7
......@@ -107,7 +107,8 @@
<a class="annotation-link u-strong" ng-show="vm.canCollapseBody"
ng-click="vm.toggleCollapseBody($event)"
ng-title="vm.collapseBody ? 'Show the full annotation text' : 'Show the first few lines only'"
ng-bind="vm.collapseBody ? 'More' : 'Less'"></a>
ng-bind="vm.collapseBody ? 'More' : 'Less'"
h-branding="highlightColor"></a>
</div>
<!-- / Tags -->
......
......@@ -9,11 +9,13 @@
ng-show="vm.showInlineControls()">
<span class="excerpt__toggle-link" ng-show="vm.isExpandable()">
<a ng-click="vm.toggle($event)"
title="Show the full excerpt">More</a>
title="Show the full excerpt"
h-branding="highlightColor">More</a>
</span>
<span class="excerpt__toggle-link" ng-show="vm.isCollapsible()">
<a ng-click="vm.toggle($event)"
title="Show the first few lines only">Less</a>
title="Show the first few lines only"
h-branding="highlightColor">Less</a>
</span>
</div>
</div>
......
......@@ -3,8 +3,8 @@
ng-if="vm.newStyle && vm.auth.status === 'unknown'"></span>
<span class="login-text"
ng-if="vm.newStyle && vm.auth.status === 'logged-out'">
<a href="{{vm.serviceUrl('signup')}}" target="_blank">Sign up</a>
/ <a href="" ng-click="vm.onLogin()">Log in</a>
<a href="{{vm.serviceUrl('signup')}}" target="_blank" h-branding="highlightColor">Sign up</a>
/ <a href="" ng-click="vm.onLogin()" h-branding="highlightColor">Log in</a>
</span>
<div ng-if="vm.newStyle"
class="pull-right login-control-menu"
......
......@@ -53,7 +53,7 @@
<div class="form-actions">
<div class="form-actions-message">
<a href="{{vm.serviceUrl('forgot-password')}}" target="_blank">Forgot your password?</a>
<a href="{{vm.serviceUrl('forgot-password')}}" target="_blank" h-branding="highlightColor">Forgot your password?</a>
</div>
<div class="form-actions-buttons">
<button class="btn btn-primary" type="submit" name="login"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment