Merge remote-tracking branch 'parent/main' into upstream-20250403

This commit is contained in:
KMY 2025-04-03 08:36:36 +09:00
commit 32f5604499
265 changed files with 6227 additions and 3383 deletions

View file

@ -1952,29 +1952,21 @@ body > [data-popper-placement] {
}
.domain {
padding: 10px;
padding: 16px;
border-bottom: 1px solid var(--background-border-color);
display: flex;
align-items: center;
gap: 8px;
.domain__domain-name {
&__domain-name {
flex: 1 1 auto;
display: block;
color: $primary-text-color;
text-decoration: none;
font-size: 14px;
font-size: 15px;
line-height: 21px;
font-weight: 500;
}
}
.domain__wrapper {
display: flex;
}
.domain_buttons {
height: 18px;
padding: 10px;
white-space: nowrap;
}
.account {
padding: 16px;
border-bottom: 1px solid var(--background-border-color);
@ -7408,6 +7400,8 @@ a.status-card {
height: 100% !important;
margin: 0;
aspect-ratio: auto !important;
outline: none;
border-radius: 0;
video {
width: 100% !important;
@ -7439,6 +7433,15 @@ a.status-card {
}
}
.media-gallery__actions {
opacity: 0;
transition: opacity 0.1s ease;
&.active {
opacity: 1;
}
}
&.inactive {
video,
.video-player__controls {
@ -7589,7 +7592,7 @@ a.status-card {
inset-inline-start: 0;
top: 50%;
transform: translate(0, -50%);
background: lighten($ui-highlight-color, 8%);
background: $white;
}
&__handle {
@ -7602,7 +7605,7 @@ a.status-card {
inset-inline-start: 0;
margin-inline-start: -6px;
transform: translate(0, -50%);
background: lighten($ui-highlight-color, 8%);
background: $white;
box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2);
opacity: 0;
@ -7656,7 +7659,7 @@ a.status-card {
height: 4px;
border-radius: 4px;
top: 14px;
background: lighten($ui-highlight-color, 8%);
background: $white;
}
&__buffer {
@ -7672,7 +7675,7 @@ a.status-card {
height: 12px;
top: 10px;
margin-inline-start: -6px;
background: lighten($ui-highlight-color, 8%);
background: $white;
box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2);
.no-reduce-motion & {
@ -7681,6 +7684,7 @@ a.status-card {
&.active {
opacity: 1;
cursor: grabbing;
}
}
@ -7691,6 +7695,28 @@ a.status-card {
}
}
&__hotkey-indicator {
position: absolute;
top: 50%;
inset-inline-start: 50%;
transform: translate(-50%, -50%);
background: rgba($base-shadow-color, 0.45);
backdrop-filter: var(--background-filter);
color: $white;
border-radius: 8px;
padding: 16px 24px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 8px;
&__label {
font-size: 15px;
font-weight: 500;
}
}
&.detailed,
&.fullscreen {
.video-player__buttons {