Merge branch 'develop' into nord_dark_theme
This commit is contained in:
commit
a6728a415a
|
@ -73,10 +73,6 @@ class Filter:
|
|||
|
||||
theme_colors = self.parse_theme_colors()
|
||||
page = page.replace('fff', theme_colors['background-color'].replace("#",""))
|
||||
if self.dark:
|
||||
page = page.replace('202124', 'ddd').replace('1967D2', '3b85ea')
|
||||
page = page.replace('<footer>', '<footer class="dark">')
|
||||
|
||||
return page
|
||||
|
||||
def encrypt_path(self, msg, is_element=False):
|
||||
|
@ -96,6 +92,7 @@ class Filter:
|
|||
self.fix_question_section()
|
||||
self.update_styling(soup)
|
||||
|
||||
|
||||
for img in [_ for _ in soup.find_all('img') if 'src' in _.attrs]:
|
||||
self.update_element_src(img, 'image/png')
|
||||
|
||||
|
@ -187,7 +184,9 @@ class Filter:
|
|||
def update_link(self, link):
|
||||
# Replace href with only the intended destination (no "utm" type tags)
|
||||
href = link['href'].replace('https://www.google.com', '')
|
||||
if '/advanced_search' in href:
|
||||
if '/advanced_search' in href or 'tbm=shop' in href:
|
||||
# TODO: The "Shopping" tab requires further filtering (see #136)
|
||||
# Temporarily removing all links to that tab for now.
|
||||
link.decompose()
|
||||
return
|
||||
elif self.new_tab:
|
||||
|
|
|
@ -5,9 +5,7 @@
|
|||
<a class="logo-link mobile-logo"
|
||||
href="/"
|
||||
style="display:flex; justify-content:center; align-items:center; color:#685e79; font-size:18px; ">
|
||||
<span class="V6gwVd">Wh</span><span class="iWkuvd">o</span><span class="cDrQ7">o</span><span
|
||||
class="V6gwVd">g</span><span class="ntlR9">l</span><span
|
||||
class="iWkuvd tJ3Myc">e</span>
|
||||
<span style="color: #685e79">Whoogle</span>
|
||||
</a>
|
||||
<div class="H0PQec" style="width: 100%;">
|
||||
<div class="sbc esbc autocomplete">
|
||||
|
@ -25,9 +23,7 @@
|
|||
<header>
|
||||
<div class="logo-div">
|
||||
<a class="logo-link" href="/">
|
||||
<span class="V6gwVd logo-letter">Wh</span><span class="iWkuvd logo-letter">o</span><span
|
||||
class="cDrQ7 logo-letter">o</span><span class="V6gwVd logo-letter">g</span><span
|
||||
class="ntlR9 logo-letter">l</span><span class="iWkuvd tJ3Myc logo-letter">e</span>
|
||||
<span style="color: #685e79">Whoogle</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="search-div">
|
||||
|
|
Loading…
Reference in New Issue
Block a user