diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-10-31 11:22:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-31 11:22:12 +0100 |
| commit | e4025cd1644e749168d40f63cf6720e7764b6a7f (patch) | |
| tree | 08567818180de3cbced623307ad8bf352e0ad66a /searx/static/themes/simple/src/svg | |
| parent | a6c48062398536ac588b3932bbc4de3652416604 (diff) | |
| parent | 6782830a4ab937b5d29c6089f2839179b7a5afa0 (diff) | |
Merge pull request #460 from dalf/simple-minor-fixes
Simple theme: various fixes
Diffstat (limited to 'searx/static/themes/simple/src/svg')
| -rw-r--r-- | searx/static/themes/simple/src/svg/select-dark.svg | 4 | ||||
| -rw-r--r-- | searx/static/themes/simple/src/svg/select-light.svg | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/searx/static/themes/simple/src/svg/select-dark.svg b/searx/static/themes/simple/src/svg/select-dark.svg new file mode 100644 index 000000000..97335cea5 --- /dev/null +++ b/searx/static/themes/simple/src/svg/select-dark.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"> +<g><polygon fill="#ddd" points="128,192 256,320 384,192"/></g> +</svg>
\ No newline at end of file diff --git a/searx/static/themes/simple/src/svg/select-light.svg b/searx/static/themes/simple/src/svg/select-light.svg new file mode 100644 index 000000000..3b707f018 --- /dev/null +++ b/searx/static/themes/simple/src/svg/select-light.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"> +<g><polygon points="128,192 256,320 384,192"/></g> +</svg>
\ No newline at end of file |