Skip to content

Commit

Permalink
Changing expand/collapse buttons (MID-3505)
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Jul 19, 2017
1 parent 5541246 commit edaeaed
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Expand Up @@ -97,8 +97,8 @@ public class GuiStyleConstants {
public static final String CLASS_APPROVAL_OUTCOME_ICON_REJECTED_COLORED = "fa fa-times text-danger";
public static final String CLASS_APPROVAL_OUTCOME_ICON_IN_PROGRESS_COLORED = "fa fa-clock-o text-info";

public static final String CLASS_ICON_EXPAND = "fa fa-plus";
public static final String CLASS_ICON_COLLAPSE = "fa fa-minus";
public static final String CLASS_ICON_EXPAND = "fa fa-chevron-left";
public static final String CLASS_ICON_COLLAPSE = "fa fa-chevron-down";
public static final String CLASS_ICON_SORT_AMOUNT_ASC = "fa fa-sort-amount-asc";
public static final String CLASS_ICON_SORT_ALPHA_ASC = "fa fa-sort-alpha-asc";
public static final String CLASS_ICON_SHOW_EMPTY_FIELDS = "fa fa-square-o";
Expand Down
@@ -1,5 +1,5 @@
<!--
~ Copyright (c) 2010-2014 Evolveum
~ Copyright (c) 2010-2017 Evolveum
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
Expand All @@ -26,8 +26,8 @@
<wicket:message key="OperationResultPanel.showTask"/>
</a>
<div class="box-tools pull-right">
<div wicket:id="showAll" class="btn btn-box-tool fa fa-plus"></div>
<div wicket:id="hideAll" class="btn btn-box-tool fa fa-minus"></div>
<div wicket:id="showAll" class="btn btn-box-tool fa fa-chevron-left"></div>
<div wicket:id="hideAll" class="btn btn-box-tool fa fa-chevron-down"></div>
<div wicket:id="downloadXml" class="btn btn-box-tool fa fa-download"></div>
<div wicket:id="close" data-widget="remove" class="btn btn-box-tool fa fa-times"></div>
</div>
Expand Down
Expand Up @@ -33,7 +33,7 @@
</div>
</div>
<div class="box-tools pull-right">
<button wicket:id="expand" class="btn btn-box-tool"><i class="fa fa-plus"></i></button>
<button wicket:id="expand" class="btn btn-box-tool"><i class="fa fa-chevron-left"></i></button>
</div>
</div>

Expand Down
Expand Up @@ -34,7 +34,7 @@
</div>
</div>
<div class="box-tools pull-right">
<button wicket:id="expand" class="btn btn-box-tool"><i class="fa fa-plus"></i></button>
<button wicket:id="expand" class="btn btn-box-tool"><i class="fa fa-chevron-left"></i></button>
</div>
</div>
<div class="box-body" wicket:id="body">
Expand Down
Expand Up @@ -31,7 +31,7 @@
</div>
</div>
<div class="box-tools pull-right">
<button wicket:id="expand" class="btn btn-box-tool"><i class="fa fa-plus"></i></button>
<button wicket:id="expand" class="btn btn-box-tool"><i class="fa fa-chevron-left"></i></button>
</div>
</wicket:panel>
</html>
Expand Up @@ -35,7 +35,7 @@
<div class="box-header with-border">
<wicket:message key="ChangePasswordPanel.accountsTable.header"/>
<div class="box-tools pull-right">
<button class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-plus"></i></button>
<button class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-chevron-down"></i></button>
</div>
</div>
<div class="box-body">
Expand Down

0 comments on commit edaeaed

Please sign in to comment.