added color to icon in password match label [ci skip]

This commit is contained in:
Tobias Hagemann
2019-09-02 14:49:33 +02:00
parent e41ddedce7
commit 6513fc6ed4
4 changed files with 20 additions and 12 deletions

View File

@@ -116,10 +116,6 @@
-fx-fill: TEXT_FILL;
}
.glyph-icon-white {
-fx-fill: white;
}
.glyph-icon-primary {
-fx-fill: PRIMARY_BG;
}
@@ -128,6 +124,14 @@
-fx-fill: SECONDARY_BG;
}
.glyph-icon-white {
-fx-fill: white;
}
.glyph-icon-red {
-fx-fill: RED_5;
}
/*******************************************************************************
* *
* Main Window *

View File

@@ -116,10 +116,6 @@
-fx-fill: TEXT_FILL;
}
.glyph-icon-white {
-fx-fill: white;
}
.glyph-icon-primary {
-fx-fill: PRIMARY_BG;
}
@@ -128,6 +124,14 @@
-fx-fill: SECONDARY_BG;
}
.glyph-icon-white {
-fx-fill: white;
}
.glyph-icon-red {
-fx-fill: RED_5;
}
/*******************************************************************************
* *
* Main Window *

View File

@@ -37,8 +37,8 @@
<Label text="%addvaultwizard.new.reenterPassword" labelFor="$reenterField"/>
<SecPasswordField fx:id="reenterField"/>
<HBox fx:id="passwordMatchBox" spacing="6" alignment="BASELINE_RIGHT">
<FontAwesome5IconView fx:id="checkmark" styleClass="glyph-icon-secondary" glyph="CHECK"/>
<FontAwesome5IconView fx:id="cross" styleClass="glyph-icon-secondary" glyph="TIMES"/>
<FontAwesome5IconView fx:id="checkmark" styleClass="glyph-icon-primary" glyph="CHECK"/>
<FontAwesome5IconView fx:id="cross" styleClass="glyph-icon-red" glyph="TIMES"/>
<Label fx:id="passwordMatchLabel" styleClass="label-secondary" labelFor="$reenterField"/>
</HBox>

View File

@@ -38,8 +38,8 @@
<Label labelFor="$reenterPasswordField" text="%changepassword.reenterNewPassword"/>
<SecPasswordField fx:id="reenterPasswordField"/>
<HBox fx:id="passwordMatchBox" spacing="6" alignment="BASELINE_RIGHT">
<FontAwesome5IconView fx:id="checkmark" styleClass="glyph-icon-secondary" glyph="CHECK"/>
<FontAwesome5IconView fx:id="cross" styleClass="glyph-icon-secondary" glyph="TIMES"/>
<FontAwesome5IconView fx:id="checkmark" styleClass="glyph-icon-primary" glyph="CHECK"/>
<FontAwesome5IconView fx:id="cross" styleClass="glyph-icon-red" glyph="TIMES"/>
<Label fx:id="passwordMatchLabel" styleClass="label-secondary" labelFor="$reenterPasswordField"/>
</HBox>