diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-12 21:03:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-12 21:03:30 -0500 |
commit | 4f13de283572b2c57e7462f1030c12fe8335882e (patch) | |
tree | 15d49f2eef5e0c440ada6aa07a9f62da75c13313 /ext/fg | |
parent | 8454f52378b9410393262122c6920606e187e18f (diff) |
Move css files (#1374)
* Move bg/css/ to css/
* Move mixed/css/ to css/
Diffstat (limited to 'ext/fg')
-rw-r--r-- | ext/fg/float.html | 4 | ||||
-rw-r--r-- | ext/fg/js/popup.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/fg/float.html b/ext/fg/float.html index 18bf3f5b..0203043a 100644 --- a/ext/fg/float.html +++ b/ext/fg/float.html @@ -11,8 +11,8 @@ <link rel="icon" type="image/png" href="/images/icon48.png" sizes="48x48"> <link rel="icon" type="image/png" href="/images/icon64.png" sizes="64x64"> <link rel="icon" type="image/png" href="/images/icon128.png" sizes="128x128"> - <link rel="stylesheet" type="text/css" href="/mixed/css/material.css"> - <link rel="stylesheet" type="text/css" href="/mixed/css/display.css"> + <link rel="stylesheet" type="text/css" href="/css/material.css"> + <link rel="stylesheet" type="text/css" href="/css/display.css"> </head> <body> diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 47330090..5e15a654 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -342,7 +342,7 @@ class Popup extends EventDispatcher { useWebExtensionApi = false; parentNode = this._shadow; } - await dynamicLoader.loadStyle('yomichan-popup-outer-stylesheet', fileType, '/mixed/css/popup-outer.css', useWebExtensionApi, parentNode); + await dynamicLoader.loadStyle('yomichan-popup-outer-stylesheet', fileType, '/css/popup-outer.css', useWebExtensionApi, parentNode); } _observeFullscreen(observe) { |