mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00

* Update app architecture with typesense * Update readme * Added local search * replace diagram * Update search page
33 lines
583 B
CSS
33 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;
|
|
}
|
|
}
|