fixed style of context input label

This commit is contained in:
Massimiliano Assante 2020-07-21 18:28:10 +02:00
parent e4bce60c5c
commit d67c94d2a2
1 changed files with 1 additions and 1 deletions

View File

@ -483,7 +483,7 @@ public class Commands {
public static void setStatusScope(final String scope) {
try {
Text scopeInfo = (Text) WidgetsRegistry.getWidget(UIIdentifiers.STATUS_SCOPE_INFO_ID);
scopeInfo.setText("<input type=\"text\" style=\"width: 350px; border: 1px solid gray;\" value=\""+scope+"\" id=\"contextToCopy\"></input>");
scopeInfo.setText("<input type=\"text\" style=\"padding: 0; height: 18px; width: 350px; border: 1px solid gray;\" value=\""+scope+"\" id=\"contextToCopy\"></input>");
ProxyRegistry.getProxyInstance().setCurrentScope(scope, new AsyncCallback<Void>() {