mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* Update app architecture with typesense * Update readme * Added local search * replace diagram * Update search page
34 lines
583 B
CSS
34 lines
583 B
CSS
.search-icon {
|
|
background-image: var(--ifm-navbar-search-input-icon);
|
|
height: auto;
|
|
width: 24px;
|
|
cursor: pointer;
|
|
padding: 8px;
|
|
line-height: 32px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
display: none;
|
|
}
|
|
|
|
.search-icon-hidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
@media (max-width: 360px) {
|
|
.search-bar {
|
|
width: 0 !important;
|
|
background: none !important;
|
|
padding: 0 !important;
|
|
transition: none !important;
|
|
}
|
|
|
|
.search-bar-expanded {
|
|
width: 9rem !important;
|
|
}
|
|
|
|
.search-icon {
|
|
display: inline;
|
|
vertical-align: sub;
|
|
}
|
|
}
|