mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #20722 from overleaf/mf-bs5-blog-post-style
[web] Implement boostrap-5 blog post style GitOrigin-RevId: b9dbe4952726e4260a0fcb95c8e54d7bd2db0415
This commit is contained in:
parent
1c39f0d795
commit
163966bbb6
6 changed files with 61 additions and 7 deletions
4
services/web/app/views/_mixins/previous_page_link.pug
Normal file
4
services/web/app/views/_mixins/previous_page_link.pug
Normal file
|
@ -0,0 +1,4 @@
|
|||
mixin previous-page-link(href, text)
|
||||
a.previous-page-link(href=href)
|
||||
i.material-symbols.material-symbols-rounded(aria-hidden="true") arrow_left_alt
|
||||
| #{text}
|
|
@ -25,3 +25,4 @@
|
|||
@import 'beta-badges';
|
||||
@import 'list-group';
|
||||
@import 'select';
|
||||
@import 'link';
|
||||
|
|
|
@ -25,18 +25,50 @@
|
|||
}
|
||||
}
|
||||
|
||||
.blog-post-container {
|
||||
@include media-breakpoint-up(lg) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.blog-post {
|
||||
@include media-breakpoint-up(lg) {
|
||||
margin-right: var(--spacing-09);
|
||||
}
|
||||
|
||||
.blog-title {
|
||||
margin-bottom: var(--spacing-04);
|
||||
}
|
||||
|
||||
.blog-date {
|
||||
display: block;
|
||||
margin-bottom: var(--spacing-08);
|
||||
}
|
||||
|
||||
.blog-content {
|
||||
> *:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.blog-footer-tags {
|
||||
margin-top: var(--spacing-12);
|
||||
}
|
||||
}
|
||||
|
||||
.tags {
|
||||
margin-top: var(--margin-md);
|
||||
|
||||
.tags-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
gap: var(--spacing-05);
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
li {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
padding: 0 var(--spacing-04) var(--spacing-04) 0;
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
a {
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
.previous-page-link {
|
||||
@include body-sm;
|
||||
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
color: var(--neutral-90);
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
&:visited {
|
||||
color: var(--neutral-90);
|
||||
}
|
||||
|
||||
i {
|
||||
margin-right: var(--spacing-02);
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
}
|
|
@ -427,10 +427,6 @@
|
|||
.tags-list {
|
||||
padding: 0 var(--spacing-05);
|
||||
margin-bottom: 0 !important;
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-register-container {
|
||||
|
|
|
@ -174,6 +174,7 @@
|
|||
"automatic_user_registration_uppercase": "Automatic user registration",
|
||||
"back": "Back",
|
||||
"back_to_account_settings": "Back to account settings",
|
||||
"back_to_all_posts": "Back to all posts",
|
||||
"back_to_configuration": "Back to configuration",
|
||||
"back_to_editor": "Back to editor",
|
||||
"back_to_log_in": "Back to log in",
|
||||
|
|
Loading…
Reference in a new issue