mirror of https://github.com/searxng/searxng.git
[mod] UI: add favicon's border- and background color to the definitons
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
7ab577a1fb
commit
5ded9ada82
|
@ -123,6 +123,9 @@
|
||||||
--color-loading-indicator: rgba(255, 255, 255, 0.2);
|
--color-loading-indicator: rgba(255, 255, 255, 0.2);
|
||||||
--color-loading-indicator-gap: #fff;
|
--color-loading-indicator-gap: #fff;
|
||||||
--color-line-number: #64708d;
|
--color-line-number: #64708d;
|
||||||
|
// Favicons Colors
|
||||||
|
--color-favicon-background-color: #ddd;
|
||||||
|
--color-favicon-border-color: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark-themes() {
|
.dark-themes() {
|
||||||
|
@ -235,6 +238,9 @@
|
||||||
--color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);
|
--color-toolkit-loader-borderleft: rgba(0, 0, 0, 0);
|
||||||
--color-doc-code: #ddd;
|
--color-doc-code: #ddd;
|
||||||
--color-doc-code-background: #4d5a6f;
|
--color-doc-code-background: #4d5a6f;
|
||||||
|
// Favicons Colors
|
||||||
|
--color-favicon-background-color: #ddd;
|
||||||
|
--color-favicon-border-color: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.black-themes() {
|
.black-themes() {
|
||||||
|
|
|
@ -383,7 +383,7 @@ html.no-js #clear_search.hide_if_nojs {
|
||||||
height: 1.8rem;
|
height: 1.8rem;
|
||||||
width: 1.8rem;
|
width: 1.8rem;
|
||||||
border-radius: 20%;
|
border-radius: 20%;
|
||||||
background-color: #ddd;
|
background-color: var(--color-favicon-background-color);
|
||||||
border: 1px solid #ccc;
|
border: 1px solid var(--color-favicon-border-color);
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue