diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2021-08-25 14:54:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 14:54:34 +0200 |
commit | 742f96bdf5c0b842e68dfaf43f4ab3446e87e3df (patch) | |
tree | 8c8553f21f8175f298ace4005973d482b1f0be13 /plugins/base/frontend/src/main | |
parent | 06650909dbce632bd92d3a10c2887b69555edbfc (diff) | |
download | dokka-742f96bdf5c0b842e68dfaf43f4ab3446e87e3df.tar.gz dokka-742f96bdf5c0b842e68dfaf43f4ab3446e87e3df.tar.bz2 dokka-742f96bdf5c0b842e68dfaf43f4ab3446e87e3df.zip |
Dark mode (#2081)
Diffstat (limited to 'plugins/base/frontend/src/main')
-rw-r--r-- | plugins/base/frontend/src/main/components/assets/searchIcon.svg | 2 | ||||
-rw-r--r-- | plugins/base/frontend/src/main/components/search/search.scss | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/plugins/base/frontend/src/main/components/assets/searchIcon.svg b/plugins/base/frontend/src/main/components/assets/searchIcon.svg index 391b1cab..159f2578 100644 --- a/plugins/base/frontend/src/main/components/assets/searchIcon.svg +++ b/plugins/base/frontend/src/main/components/assets/searchIcon.svg @@ -1,3 +1,3 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"> +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> <path d="M19.64 18.36l-6.24-6.24a7.52 7.52 0 1 0-1.28 1.28l6.24 6.24zM7.5 13.4a5.9 5.9 0 1 1 5.9-5.9 5.91 5.91 0 0 1-5.9 5.9z"/> </svg>
\ No newline at end of file diff --git a/plugins/base/frontend/src/main/components/search/search.scss b/plugins/base/frontend/src/main/components/search/search.scss index 0ea6da19..b18af04e 100644 --- a/plugins/base/frontend/src/main/components/search/search.scss +++ b/plugins/base/frontend/src/main/components/search/search.scss @@ -9,7 +9,8 @@ $secondary-font-color: hsla(0, 0%, 100%, 0.6); border: none; background: var(--color-dark); - fill: var(--background-color); + fill: #fff; + fill: var(--dark-mode-and-search-icon-color); &:focus { outline: none; |