Add search bar to channel page.

Closes #1923

(cherry picked from commit e93d8bee22)
This commit is contained in:
syeopite 2021-04-10 03:05:48 -07:00
parent e0fdf5bcf7
commit 070ccd745f
No known key found for this signature in database
GPG key ID: 6FA616E5A5294A82
2 changed files with 31 additions and 1 deletions

View file

@ -164,6 +164,13 @@ img.thumbnail {
top: -0.7em;
}
.search-button {
border: none;
color: #3E4446;
background: transparent;
font-size: 1.1em;
}
/*
* Navbar
*/
@ -442,6 +449,13 @@ body.dark-theme {
color: inherit;
}
.dark-theme .search-button {
border: none;
color: #B0ADA4;
background: transparent;
font-size: 1.1em;
}
.dark-theme .pure-menu-link:hover, .dark-theme .pure-menu-link:active {
background-color: rgb(34, 36, 38)
}
@ -540,3 +554,8 @@ p,
/* Center the "invidious" logo on the search page */
#logo > h1 { text-align: center; }
#content-navigation {
margin-bottom: 0.5em;
}