fix keeweb/keeweb#818: style creator syntax

This commit is contained in:
antelle 2017-12-23 13:34:02 +01:00
parent 971c3d00fe
commit d17a5c3688
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ module.exports.uninstall = function() {
}
let css = `.th-${manifest.theme.name} {\n`;
for (const el of document.querySelectorAll('input[type=color]')) {
css += el.id.replace('color-', ' --') + '-color: ' + el.value + '\n';
css += el.id.replace('color-', ' --') + '-color: ' + el.value + ';\n';
}
css += '}';
return css;