From e02224f8a540409d5eaed08b0f5ef7358786473a Mon Sep 17 00:00:00 2001 From: tdtappe Date: Wed, 17 Oct 2018 07:40:03 +0200 Subject: [PATCH] Overwrite text align of dialog with 'left'. Otherwise the dialog looks strange because it inherits 'right' text align from footer. --- src/main/webapp/dialog.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/webapp/dialog.js b/src/main/webapp/dialog.js index 36db860..8d7bd28 100644 --- a/src/main/webapp/dialog.js +++ b/src/main/webapp/dialog.js @@ -45,6 +45,7 @@ translation.post = function(link,lang,onSuccess) { // instantiate the Dialog translation.createDialog = function() { var d = $("l10n-dialog"); + d.style.textAlign = 'left'; var l = this.Cookie.get("l10n-locale"); if(l==null) l=this.detectedLocale;