mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
f91f423ae4
[web] Standardize CSS for badge links lists GitOrigin-RevId: f0684cdd9b246c6fe1ab4b3c43121fa331933a66
125 lines
2.6 KiB
SCSS
125 lines
2.6 KiB
SCSS
.gallery-search {
|
|
margin-bottom: var(--spacing-16);
|
|
|
|
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 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-08);
|
|
|
|
.search-hits-loading,
|
|
.search-hits-empty,
|
|
.search-hit:first-of-type {
|
|
margin-top: var(--spacing-16);
|
|
}
|
|
|
|
.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 {
|
|
@include shadow-md;
|
|
|
|
width: 185px;
|
|
border-radius: var(--border-radius-base);
|
|
position: relative;
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
width: 35vw;
|
|
}
|
|
|
|
&::before {
|
|
content: '';
|
|
background: var(--neutral-90);
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: var(--border-radius-base);
|
|
transition: opacity 0.15s ease-in-out;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
&::before {
|
|
opacity: 0.08;
|
|
transition: opacity 0.15s ease-in-out;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-title {
|
|
margin-bottom: var(--spacing-04);
|
|
max-width: $templates-search-max-width;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
a {
|
|
@include heading-md;
|
|
|
|
line-clamp: 2;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow-y: hidden;
|
|
color: var(--content-primary);
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-highlight {
|
|
max-width: $templates-search-max-width;
|
|
}
|
|
|
|
.search-author {
|
|
display: block;
|
|
|
|
& + .badge-link-list {
|
|
margin-top: var(--spacing-06);
|
|
}
|
|
}
|
|
|
|
.gallery-official {
|
|
margin-left: var(--spacing-06);
|
|
vertical-align: text-top;
|
|
}
|
|
}
|
|
}
|
|
}
|