add helper text to theme settings

This commit is contained in:
zombieFox 2021-08-21 13:17:23 +01:00
parent 34a967b0b6
commit dacc257f3d

View File

@ -1018,13 +1018,17 @@ themeSetting.shade = (parent) => {
applyCSSVar('theme.shade.blur');
data.save();
}
}),
blurHelper: new Control_helperText({
text: ['Not supported by all browsers.']
})
};
parent.appendChild(
node('div', [
themeSetting.control.shade.opacity.wrap(),
themeSetting.control.shade.blur.wrap()
themeSetting.control.shade.blur.wrap(),
themeSetting.control.shade.blurHelper.wrap()
])
);