Hide line below search bar in dark themes

The results return an empty div with a background color set (not sure
why, not generated on Whoogle's side). This unsets the background color
so that at least it isn't visible.
main
Ben Busby 2024-09-30 11:57:12 -06:00
parent a016a1bcf4
commit 5eb609d0b2
No known key found for this signature in database
GPG Key ID: B9B7231E01D924A1
3 changed files with 9 additions and 0 deletions

View File

@ -15,6 +15,7 @@ class GClasses:
result_class_a = 'ZINbbc' result_class_a = 'ZINbbc'
result_class_b = 'luh4td' result_class_b = 'luh4td'
scroller_class = 'idg8be' scroller_class = 'idg8be'
line_tag = 'BsXmcf'
result_classes = { result_classes = {
result_class_a: ['Gx5Zad'], result_class_a: ['Gx5Zad'],

View File

@ -70,6 +70,10 @@ select {
border-radius: 8px !important; border-radius: 8px !important;
} }
.BsXmcf {
background-color: unset !important;
}
.KP7LCb { .KP7LCb {
box-shadow: 0 0 0 0 !important; box-shadow: 0 0 0 0 !important;
} }

View File

@ -45,6 +45,10 @@ select {
box-shadow: 0 1px 6px rgba(32,33,36,0.28) !important; box-shadow: 0 1px 6px rgba(32,33,36,0.28) !important;
} }
.BsXmcf {
background-color: unset !important;
}
.BVG0Nb { .BVG0Nb {
background-color: var(--whoogle-result-bg) !important; background-color: var(--whoogle-result-bg) !important;
} }