Add divider to user-defined CSS (#310)

main
Harsh Barsaiyan 2021-05-11 16:24:45 +00:00 committed by Ben Busby
parent 05995649f3
commit 4466bbc8f4
No known key found for this signature in database
GPG Key ID: 3B08611DF6E62ED2
3 changed files with 27 additions and 0 deletions

View File

@ -69,6 +69,18 @@ select {
background-color: var(--whoogle-dark-page-bg) !important; background-color: var(--whoogle-dark-page-bg) !important;
} }
.x54gtf {
background-color: var(--whoogle-dark-divider) !important;
}
.Q0HXG {
background-color: var(--whoogle-dark-divider) !important;
}
.LKSyXe {
background-color: var(--whoogle-dark-divider) !important;
}
#search-bar { #search-bar {
border-color: var(--whoogle-dark-element-bg) !important; border-color: var(--whoogle-dark-element-bg) !important;
color: var(--whoogle-dark-text) !important; color: var(--whoogle-dark-text) !important;

View File

@ -40,6 +40,19 @@ select {
background-color: var(--whoogle-result-bg) !important; background-color: var(--whoogle-result-bg) !important;
} }
.x54gtf {
background-color: var(--whoogle-divider) !important;
}
.Q0HXG {
background-color: var(--whoogle-divider) !important;
}
.LKSyXe {
background-color: var(--whoogle-divider) !important;
}
a:visited h3 div { a:visited h3 div {
color: var(--whoogle-result-visited) !important; color: var(--whoogle-result-visited) !important;
} }

View File

@ -11,6 +11,7 @@
--whoogle-result-title: #1967d2; --whoogle-result-title: #1967d2;
--whoogle-result-url: #0d652d; --whoogle-result-url: #0d652d;
--whoogle-result-visited: #4b11a8; --whoogle-result-visited: #4b11a8;
--whoogle-divider: #dfe1e5;
/* DARK THEME COLORS */ /* DARK THEME COLORS */
--whoogle-dark-logo: #888888; --whoogle-dark-logo: #888888;
@ -23,4 +24,5 @@
--whoogle-dark-result-title: #dddddd; --whoogle-dark-result-title: #dddddd;
--whoogle-dark-result-url: #eceff4; --whoogle-dark-result-url: #eceff4;
--whoogle-dark-result-visited: #959595; --whoogle-dark-result-visited: #959595;
--whoogle-dark-divider: #111111;
} }