Skip to content

Commit

Permalink
MID-6271 fixing icon classes
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Apr 19, 2022
1 parent 4cae22f commit c53d265
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class GuiStyleConstants {
public static final String CLASS_SHADOW_ICON_ACCOUNT = "fa fa-male";
public static final String CLASS_SHADOW_ICON_ENTITLEMENT = "fa fa-users";
public static final String CLASS_SHADOW_ICON_GENERIC = "far fa-circle";
public static final String CLASS_SHADOW_ICON_PROTECTED = "fa fa-shield";
public static final String CLASS_SHADOW_ICON_PROTECTED = "fa fa-shield-alt";
public static final String CLASS_SHADOW_ICON_UNKNOWN = "fa fa-eye";

public static final String CLASS_ICON_DASHBOARD = CLASS_DASHBOARD_ICON;
Expand All @@ -120,7 +120,7 @@ public class GuiStyleConstants {
public static final String CLASS_ICON_SHOW_EMPTY_FIELDS = "fa fa-square-o";
public static final String CLASS_ICON_NOT_SHOW_EMPTY_FIELDS = "fa fa-square";
public static final String CLASS_ICON_SHOW_METADATA = "fa fa-asterisk";
public static final String CLASS_ICON_SUPERUSER = "fa fa-shield";
public static final String CLASS_ICON_SUPERUSER = "fa fa-shield-alt";
public static final String CLASS_ICON_NO_OBJECTS = "fa fa-times";
public static final String CLASS_ICON_ACTIVATION_ACTIVE = "fa fa-check";
public static final String CLASS_ICON_ACTIVATION_INACTIVE = "fa fa-times";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public enum GuiChannel {
USER(Channel.USER, "fa fa-keyboard-o"),
SELF_REGISTRATION(Channel.SELF_REGISTRATION, "fa fa-file-text-o"),
SELF_SERVICE(Channel.SELF_SERVICE, "fa fa-keyboard-o"),
RESET_PASSWORD(Channel.RESET_PASSWORD, "fa fa-shield"),
RESET_PASSWORD(Channel.RESET_PASSWORD, "fa fa-shield-alt"),
IMPORT(Channel.IMPORT, "fa fa-upload"),
ASYNC_UPDATE(Channel.ASYNC_UPDATE, "fa fa-gears");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ protected void createBreadcrumb() {
super.createBreadcrumb();

Breadcrumb bc = getLastBreadcrumb();
bc.setIcon(new Model<>("fa fa-shield"));
bc.setIcon(new Model<>("fa fa-shield-alt"));
}

private void initLayout() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
<label>PageSelfDashboard.credentials</label>
<description>PageSelfDashboard.credentials.description</description>
<icon>
<cssClass>fa fa-shield</cssClass>
<cssClass>fa fa-shield-alt</cssClass>
</icon>
<color>blue</color>
<authorization>http://midpoint.evolveum.com/xml/ns/public/security/authorization-ui-3#selfCredentials</authorization>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<label>Credentials</label>
<description>View/edit your credentials</description>
<icon>
<cssClass>fa fa-shield</cssClass>
<cssClass>fa fa-shield-alt</cssClass>
</icon>
<color>blue</color>
<authorization>http://midpoint.evolveum.com/xml/ns/public/security/authorization-ui-3#selfCredentials</authorization>
Expand Down

0 comments on commit c53d265

Please sign in to comment.