replace google name classes

This commit is contained in:
jacr13 2022-01-24 16:49:06 +01:00
parent dfeddd5d5c
commit 2aff5ac7ef
2 changed files with 20 additions and 20 deletions

View File

@ -114,20 +114,20 @@ header {
overflow: hidden; overflow: hidden;
} }
.bRsWnc { .desktop-tab-div-2 {
border-top: 1px solid #dadce0; border-top: 1px solid #dadce0;
height: 39px; height: 39px;
overflow: hidden; overflow: hidden;
} }
.N6RWV { .desktop-tab-div-3 {
height: 51px; height: 51px;
overflow-scrolling: touch; overflow-scrolling: touch;
overflow-x: auto; overflow-x: auto;
overflow-y: hidden; overflow-y: hidden;
} }
.Pg70bf { .header {
height: 39px; height: 39px;
display: box; display: box;
display: flex; display: flex;
@ -135,7 +135,7 @@ header {
width: 100%; width: 100%;
} }
.Uv67qb { .desktop-header-tab {
box-pack: justify; box-pack: justify;
font-size: 12px; font-size: 12px;
line-height: 37px; line-height: 37px;
@ -143,13 +143,13 @@ header {
justify-content: space-between; justify-content: space-between;
} }
span.OXXup { span.desktop-tab-span {
border-bottom: 2px solid #4285f4; border-bottom: 2px solid #4285f4;
color: #4285f4; color: #4285f4;
font-weight: bold; font-weight: bold;
} }
.Uv67qb a, .Uv67qb span { .desktop-header-tab a, .desktop-header-tab span {
color: #70757a; color: #70757a;
display: block; display: block;
flex: none; flex: none;
@ -158,7 +158,7 @@ span.OXXup {
text-transform: uppercase; text-transform: uppercase;
} }
.Uv67qb a, .Uv67qb span { .desktop-header-tab a, .desktop-header-tab span {
color: #70757a; color: #70757a;
display: block; display: block;
flex: none; flex: none;
@ -173,19 +173,19 @@ a {
tap-highlight-color: rgba(0, 0, 0, .10); tap-highlight-color: rgba(0, 0, 0, .10);
} }
.Pg70bf input { .header input {
margin: 2px 4px 2px 8px; margin: 2px 4px 2px 8px;
} }
a.eZt8xd:visited { a.desktop-tab-a:visited {
color: #70757a; color: #70757a;
} }
.FElbsf { .desktop-tab-div-end {
border-left: 1px solid rgba(0, 0, 0, 0.12); border-left: 1px solid rgba(0, 0, 0, 0.12);
} }
.noHIxc { .mobile-input {
display: block; display: block;
font-size: 16px; font-size: 16px;
padding: 0 0 0 8px; padding: 0 0 0 8px;

View File

@ -1,7 +1,7 @@
{% if mobile %} {% if mobile %}
<header> <header>
<div class="bz1lBb header-div"> <div class="header-div">
<form class="search-form Pg70bf" <form class="search-form header"
id="search-form" id="search-form"
method="{{ 'GET' if config.get_only else 'POST' }}"> method="{{ 'GET' if config.get_only else 'POST' }}">
<a class="logo-link mobile-logo" href="home"> <a class="logo-link mobile-logo" href="home">
@ -18,7 +18,7 @@
autocomplete="off" autocomplete="off"
autocorrect="off" autocorrect="off"
spellcheck="false" spellcheck="false"
class="noHIxc" class="mobile-input"
name="q" name="q"
type="text" type="text"
value="{{ clean_query(query) }}" value="{{ clean_query(query) }}"
@ -69,17 +69,17 @@
</header> </header>
<div> <div>
<div class="desktop-tab-div"> <div class="desktop-tab-div">
<div class="bRsWnc"> <div class="desktop-tab-div-2">
<div class="N6RWV"> <div class="desktop-tab-div-3">
<div class="Pg70bf Uv67qb"> <div class="header desktop-header-tab">
{% for tab_id, tab_content in tabs.items() %} {% for tab_id, tab_content in tabs.items() %}
{% if tab_content['selected'] %} {% if tab_content['selected'] %}
<span class="OXXup">{{ tab_content['name'] }}</span> <span class="desktop-tab-span">{{ tab_content['name'] }}</span>
{% else %} {% else %}
<a class="eZt8xd" href="{{ tab_content['href'] }}">{{ tab_content['name'] }}</a> <a class="desktop-tab-a" href="{{ tab_content['href'] }}">{{ tab_content['name'] }}</a>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
<div class="FElbsf"></div> <div class="desktop-tab-div-end"></div>
</div> </div>
</div> </div>
</div> </div>