mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
11cb7dc24c
* adding .gallery at top level * adding styling for heading and buttons * removing padding under cta-links * removing find more templates text * adding field title styling * adding .details-container for spacing between the content * adding a colon after field-title * moving tags styling into badge.scss file to make it more generic to use * moving section tag one level below to use it as a flex containe for adding gap property * adding field-description class * fixing the image width * adding some padding between the content * renaming a file to a more descriptive name * adding .gallery-abstract class in the scss file * adding colons in pug file * adding previous-page-link and its container class * moving paddings to larger screens only and adding a top margin for mobile screens] * adding some spacing above tags on mobile view when heading and tags are vertically aligned * adding styling to the badge and removing extra padding from h1 to match figma * lint:fix * swapping position of top-pick and official badges * adding path and itemPlural * removing unused top margin GitOrigin-RevId: a5c9b731b69ecfe2b752015c410e10a0fec2c704
121 lines
2 KiB
SCSS
121 lines
2 KiB
SCSS
$max-width: 160px;
|
|
|
|
.badge {
|
|
display: inline-flex;
|
|
align-items: stretch;
|
|
max-width: 100%;
|
|
line-height: var(--line-height-01);
|
|
padding: 0 var(--bs-badge-padding-x);
|
|
|
|
&:not(.badge-tag) {
|
|
max-width: $max-width;
|
|
}
|
|
}
|
|
|
|
.badge-prepend {
|
|
margin-right: var(--spacing-02);
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.material-symbols {
|
|
font-size: inherit;
|
|
}
|
|
}
|
|
|
|
.badge-close {
|
|
@include reset-button;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
padding: 0 var(--spacing-02);
|
|
border-top-right-radius: inherit;
|
|
border-bottom-right-radius: inherit;
|
|
color: inherit;
|
|
user-select: none;
|
|
|
|
.badge-close-icon {
|
|
font-size: $font-size-base;
|
|
}
|
|
}
|
|
|
|
.badge-close,
|
|
.badge-tag-content-btn {
|
|
&:hover {
|
|
background-color: var(--neutral-40);
|
|
}
|
|
}
|
|
|
|
.badge-content {
|
|
@include text-truncate;
|
|
|
|
padding: var(--bs-badge-padding-y) 0;
|
|
}
|
|
|
|
.badge-tag {
|
|
@include body-sm;
|
|
|
|
padding: 0;
|
|
color: $dark;
|
|
|
|
&:hover {
|
|
background-color: var(--neutral-30) !important;
|
|
}
|
|
}
|
|
|
|
.badge-tag-content {
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
max-width: $max-width;
|
|
padding-left: var(--bs-badge-padding-x);
|
|
padding-right: var(--bs-badge-padding-x);
|
|
border-top-left-radius: inherit;
|
|
border-bottom-left-radius: inherit;
|
|
}
|
|
|
|
.badge-tag-content-btn {
|
|
@include reset-button;
|
|
|
|
padding-left: var(--bs-badge-padding-x);
|
|
padding-right: var(--bs-badge-padding-x);
|
|
}
|
|
|
|
.badge-tag-circle {
|
|
display: block;
|
|
margin: var(--spacing-02);
|
|
width: var(--spacing-04);
|
|
height: var(--spacing-04);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.badge-premium {
|
|
background-color: var(--neutral-20);
|
|
color: var(--neutral-90);
|
|
vertical-align: middle;
|
|
margin-left: 5px;
|
|
font-weight: var(--badge-font-weight);
|
|
}
|
|
|
|
.tags {
|
|
.tags-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
display: flex;
|
|
gap: var(--spacing-05);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.badge-tag {
|
|
padding: 0 var(--bs-badge-padding-x);
|
|
}
|
|
|
|
li {
|
|
display: inline-flex;
|
|
}
|
|
|
|
a {
|
|
font-size: small;
|
|
}
|
|
}
|