mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
0811e46b6c
[web] Implement new gallery search result GitOrigin-RevId: afc33a07b5ea533b681acf18bd31112a2f48866a
96 lines
1.8 KiB
SCSS
96 lines
1.8 KiB
SCSS
.gallery-search {
|
|
form {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: var(--spacing-04);
|
|
|
|
@include media-breakpoint-down(md) {
|
|
.form-control-wrapper {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
input {
|
|
padding-top: var(--spacing-06);
|
|
padding-right: var(--spacing-06);
|
|
padding-bottom: var(--spacing-06);
|
|
height: 48px;
|
|
|
|
@include media-breakpoint-up(md) {
|
|
width: 544px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-hits {
|
|
margin-top: var(--spacing-16);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-08);
|
|
|
|
.search-hit {
|
|
display: flex;
|
|
gap: var(--spacing-08);
|
|
|
|
.search-image {
|
|
a {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
img {
|
|
width: 185px;
|
|
box-shadow: 0 2px 4px 0 rgba(30 37 48 / 16%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-title {
|
|
margin-bottom: var(--spacing-04);
|
|
max-width: $templates-search-max-width;
|
|
|
|
a {
|
|
@include heading-md;
|
|
|
|
color: var(--content-primary);
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-highlight {
|
|
max-width: $templates-search-max-width;
|
|
}
|
|
|
|
.gallery-official {
|
|
margin-left: var(--spacing-06);
|
|
vertical-align: text-top;
|
|
}
|
|
|
|
.search-hit-tags {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding-left: 0;
|
|
display: flex;
|
|
gap: var(--spacing-04);
|
|
|
|
li a {
|
|
@include body-sm;
|
|
|
|
color: var(--color-primary-dark);
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
color: var(--green-50);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|