diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-25 23:22:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-25 23:22:05 -0500 |
commit | 92e9f69c8069644c544301a51fbbd351e799e99d (patch) | |
tree | 621bea652f78ab9e5b6850512ababeece243f908 /ext/fg/js/popup.js | |
parent | c6c4631817247c44f788b1ffa2bc1d9f644802eb (diff) |
Popup style updates (#1066)
* Replace compactGlossaries option with new glossaryLayoutMode option
* Update attributes
* Update attributes
* Update color definitions
* Fix default theme scrollbar
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 00afb773..b3af3d6f 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -186,8 +186,10 @@ class Popup extends EventDispatcher { } updateTheme() { - this._frame.dataset.yomichanTheme = this._options.general.popupOuterTheme; - this._frame.dataset.yomichanSiteColor = this._getSiteColor(); + const {popupTheme, popupOuterTheme} = this._options.general; + this._frame.dataset.theme = popupTheme; + this._frame.dataset.outerTheme = popupOuterTheme; + this._frame.dataset.siteColor = this._getSiteColor(); } async setCustomOuterCss(css, useWebExtensionApi) { |