File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
services/static-webserver/client/source/class/osparc/widget Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -63,9 +63,7 @@ qx.Class.define("osparc.widget.IntlTelInput", {
6363 }
6464 } ) ;
6565
66- const feedbackCheck = this . __feedbackCheck = new qx . ui . basic . Image ( ) . set ( {
67- paddingTop : 3
68- } ) ;
66+ const feedbackCheck = this . __feedbackCheck = new qx . ui . basic . Image ( ) ;
6967 feedbackCheck . exclude ( ) ;
7068 this . _add ( feedbackCheck ) ;
7169 } ,
@@ -96,8 +94,9 @@ qx.Class.define("osparc.widget.IntlTelInput", {
9694 const isValid = this . isValidNumber ( ) ;
9795 this . __feedbackCheck . set ( {
9896 toolTipText : "E.164: " + this . getNumber ( ) ,
99- source : isValid ? "@FontAwesome5Solid/check/18" : "@FontAwesome5Solid/exclamation-triangle/18" ,
100- textColor : isValid ? "text" : "failed-red"
97+ source : isValid ? "@FontAwesome5Solid/check/16" : "@FontAwesome5Solid/exclamation-triangle/16" ,
98+ textColor : isValid ? "text" : "failed-red" ,
99+ alignY : "middle" ,
101100 } ) ;
102101 this . __feedbackCheck . show ( ) ;
103102 if ( ! isValid ) {
You can’t perform that action at this time.
0 commit comments