Skip to content

Commit ebb455c

Browse files
committed
Merge branch 'enh/request-account-with-phone' of github.com:odeimaiz/osparc-simcore into enh/request-account-with-phone
2 parents 06ccdb6 + 769e669 commit ebb455c

File tree

1 file changed

+2
-1
lines changed
  • services/static-webserver/client/source/class/osparc/ui/form

1 file changed

+2
-1
lines changed

services/static-webserver/client/source/class/osparc/ui/form/IntlTelInput.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ qx.Class.define("osparc.ui.form.IntlTelInput", {
179179
phoneInput.a.style["color"] = textColor;
180180

181181
if (this.getValue() && !this.isValidNumber()) {
182-
document.documentElement.style.setProperty('--tel-border-bottom-color', "red");
182+
const errorColor = qx.theme.manager.Color.getInstance().resolve("failed-red");
183+
document.documentElement.style.setProperty('--tel-border-bottom-color', errorColor);
183184
}
184185
}
185186
},

0 commit comments

Comments
 (0)