Refactor carousel components (#36425)

Co-authored-by: diondiondion <mail@diondiondion.com>
This commit is contained in:
Echo
2025-10-29 15:44:46 +01:00
committed by GitHub
parent 2a9c7d2b9e
commit e7cd5a430e
10 changed files with 591 additions and 301 deletions

View File

@@ -1362,7 +1362,7 @@
}
}
.announcements__item__content {
.announcements__content {
overflow-wrap: break-word;
overflow-y: auto;
@@ -8931,10 +8931,21 @@ noscript {
}
.announcements {
background: lighten($ui-base-color, 8%);
font-size: 13px;
display: flex;
align-items: flex-end;
width: calc(100% - 124px);
flex: 0 0 auto;
position: relative;
overflow: hidden;
@media screen and (max-width: (124px + 300px)) {
width: 100%;
}
&__root {
background: lighten($ui-base-color, 8%);
font-size: 13px;
display: flex;
align-items: flex-end;
}
&__mastodon {
width: 124px;
@@ -8945,19 +8956,16 @@ noscript {
}
}
&__container {
width: calc(100% - 124px);
flex: 0 0 auto;
position: relative;
@media screen and (max-width: (124px + 300px)) {
width: 100%;
}
&__slides {
display: flex;
flex-wrap: nowrap;
align-items: start;
}
&__item {
&__slide {
box-sizing: border-box;
width: 100%;
flex: 0 0 100%;
padding: 15px;
position: relative;
font-size: 15px;
@@ -8966,26 +8974,25 @@ noscript {
font-weight: 400;
max-height: 50vh;
overflow: hidden;
display: flex;
flex-direction: column;
}
&__range {
display: block;
font-weight: 500;
margin-bottom: 10px;
padding-inline-end: 18px;
}
&__range {
display: block;
font-weight: 500;
margin-bottom: 10px;
padding-inline-end: 18px;
}
&__unread {
position: absolute;
top: 19px;
inset-inline-end: 19px;
display: block;
background: $highlight-text-color;
border-radius: 50%;
width: 0.625rem;
height: 0.625rem;
}
&__unread {
position: absolute;
top: 19px;
inset-inline-end: 19px;
display: block;
background: $highlight-text-color;
border-radius: 50%;
width: 0.625rem;
height: 0.625rem;
}
&__pagination {
@@ -8996,6 +9003,7 @@ noscript {
inset-inline-end: 0;
display: flex;
align-items: center;
z-index: 1;
}
}
@@ -11587,4 +11595,10 @@ noscript {
height: 16px;
}
}
&__pagination {
display: flex;
align-items: center;
gap: 4px;
}
}