diff --git a/src/css/dialogs-create-palette.css b/src/css/dialogs-create-palette.css index 3f4856ee..6988b98a 100644 --- a/src/css/dialogs-create-palette.css +++ b/src/css/dialogs-create-palette.css @@ -85,6 +85,19 @@ cursor : pointer; } +@-moz-document url-prefix() { + .create-palette-color, .create-palette-new-color, .colors-list-drop-proxy{ + margin : 7px 0 0 7px; + } +} + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .create-palette-color, .create-palette-new-color, .colors-list-drop-proxy{ + margin : 7px 0 0 7px; + } +} + + .create-palette-color { border:1px solid #2c2c2c; transition : border-color 0.2s; diff --git a/src/js/controller/ProgressBarController.js b/src/js/controller/ProgressBarController.js index 5ddb07bd..2681982b 100644 --- a/src/js/controller/ProgressBarController.js +++ b/src/js/controller/ProgressBarController.js @@ -39,7 +39,7 @@ var width = this.progressBar.offsetWidth; var progressWidth = width - ((progress * width) / 100); this.progressBar.style.backgroundPosition = (-progressWidth) + 'px 0'; - this.progressBarStatus.innerText = progress + '%'; + this.progressBarStatus.innerHTML = progress + '%'; } };