0
0
Fork 0

Change design of edit media modal in web UI (#33516)

This commit is contained in:
Eugen Rochko 2025-01-21 12:34:22 +01:00 committed by GitHub
parent 4ebdfed8ea
commit 11786f1114
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
42 changed files with 919 additions and 900 deletions

View file

@ -127,9 +127,7 @@
.actions-modal ul li:not(:empty) a:focus button,
.actions-modal ul li:not(:empty) a:hover,
.actions-modal ul li:not(:empty) a:hover button,
.simple_form .block-button,
.simple_form .button,
.simple_form button {
.simple_form button:not(.button, .link-button) {
color: $white;
}
@ -142,6 +140,11 @@
border-top-color: lighten($ui-base-color, 4%);
}
.dialog-modal__content__preview {
background: #fff;
border-bottom: 1px solid var(--modal-border-color);
}
.reactions-bar__item:hover,
.reactions-bar__item:focus,
.reactions-bar__item:active {

View file

@ -85,6 +85,14 @@
outline: $ui-button-icon-focus-outline;
}
&--compact {
font-size: 14px;
line-height: normal;
font-weight: 700;
padding: 5px 12px;
border-radius: 4px;
}
&--dangerous {
background-color: var(--error-background-color);
color: var(--on-error-color);
@ -3734,58 +3742,6 @@ $ui-header-logo-wordmark-width: 99px;
}
}
.setting-text {
display: block;
box-sizing: border-box;
margin: 0;
color: $primary-text-color;
background: $ui-base-color;
padding: 7px 10px;
font-family: inherit;
font-size: 14px;
line-height: 22px;
border-radius: 4px;
border: 1px solid var(--background-border-color);
&:focus {
outline: 0;
}
&__wrapper {
background: $ui-base-color;
border: 1px solid var(--background-border-color);
margin-bottom: 10px;
border-radius: 4px;
.setting-text {
border: 0;
margin-bottom: 0;
border-radius: 0;
&:focus {
border: 0;
}
}
&__modifiers {
color: $inverted-text-color;
font-family: inherit;
font-size: 14px;
background: $white;
}
}
&__toolbar {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
@media screen and (width <= 600px) {
font-size: 16px;
}
}
.status-card {
display: flex;
align-items: center;
@ -6104,6 +6060,35 @@ a.status-card {
gap: 16px;
padding: 24px;
}
&__preview {
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
justify-content: center;
padding: 24px;
background: #000;
img {
display: block;
}
img,
.gifv video {
outline: 1px solid var(--media-outline-color);
outline-offset: -1px;
border-radius: 8px;
}
img,
.gifv video,
.video-player,
.audio-player {
max-width: 360px;
max-height: 45vh;
}
}
}
.copy-paste-text {
@ -6450,62 +6435,6 @@ a.status-card {
margin-bottom: 29px;
}
.report-modal__comment {
padding: 20px;
border-inline-end: 1px solid var(--background-border-color);
max-width: 320px;
p {
font-size: 14px;
line-height: 20px;
margin-bottom: 20px;
}
.setting-text-label {
display: block;
color: $secondary-text-color;
font-size: 14px;
font-weight: 500;
margin-bottom: 10px;
}
.setting-text {
width: 100%;
resize: none;
min-height: 100px;
max-height: 50vh;
border: 0;
@media screen and (height <= 600px) {
max-height: 20vh;
}
@media screen and (max-width: $no-columns-breakpoint) {
max-height: 20vh;
}
}
.setting-toggle {
margin-top: 20px;
margin-bottom: 24px;
&__label {
color: $inverted-text-color;
font-size: 14px;
}
}
@media screen and (width <= 480px) {
padding: 10px;
max-width: 100%;
order: 2;
.setting-toggle {
margin-bottom: 4px;
}
}
}
.actions-modal {
max-height: 80vh;
max-width: 80vw;
@ -6998,11 +6927,6 @@ a.status-card {
outline: 1px solid var(--media-outline-color);
outline-offset: -1px;
&.editable {
border-radius: 0;
height: 100%;
}
&.inactive {
audio,
.video-player__controls {
@ -7071,11 +6995,6 @@ a.status-card {
outline-offset: -1px;
z-index: 2;
&.editable {
border-radius: 0;
height: 100% !important;
}
video {
display: block;
z-index: -2;
@ -7381,6 +7300,14 @@ a.status-card {
}
.gifv {
position: relative;
canvas {
position: absolute;
width: 100%;
height: 100%;
}
video {
max-width: 100vw;
max-height: 80vh;
@ -7686,24 +7613,14 @@ noscript {
.focal-point {
position: relative;
cursor: move;
cursor: grab;
overflow: hidden;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: $base-shadow-color;
img,
video,
canvas {
display: block;
max-height: 80vh;
width: 100%;
height: auto;
margin: 0;
object-fit: contain;
background: $base-shadow-color;
&.dragging {
cursor: grabbing;
}
&__reticle {
@ -7711,54 +7628,10 @@ noscript {
width: 100px;
height: 100px;
transform: translate(-50%, -50%);
background: url('../images/reticle.png') no-repeat 0 0;
border: 2px solid #fff;
border-radius: 50%;
box-shadow: 0 0 0 9999em rgba($base-shadow-color, 0.35);
}
&__overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
inset-inline-start: 0;
}
&__preview {
position: absolute;
bottom: 10px;
inset-inline-end: 10px;
z-index: 2;
cursor: move;
transition: opacity 0.1s ease;
&:hover {
opacity: 0.5;
}
strong {
color: $primary-text-color;
font-size: 14px;
font-weight: 500;
display: block;
margin-bottom: 5px;
}
div {
border-radius: 4px;
box-shadow: 0 0 14px rgba($base-shadow-color, 0.2);
}
}
@media screen and (width <= 480px) {
img,
video {
max-height: 100%;
}
&__preview {
display: none;
}
pointer-events: none;
}
}
@ -10468,12 +10341,7 @@ noscript {
.compose-form__actions {
.button {
display: block; // Otherwise text-ellipsis doesn't work
font-size: 14px;
line-height: normal;
font-weight: 700;
flex: 1 1 auto;
padding: 5px 12px;
border-radius: 4px;
}
}

View file

@ -76,6 +76,18 @@ code {
margin-bottom: 16px;
overflow: hidden;
&:last-child {
margin-bottom: 0;
}
&__toolbar {
margin-top: 16px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
}
&.hidden {
margin: 0;
}
@ -540,6 +552,7 @@ code {
.actions {
margin-top: 30px;
display: flex;
gap: 10px;
&.actions--top {
margin-top: 0;
@ -552,9 +565,7 @@ code {
margin-bottom: 15px;
}
button,
.button,
.block-button {
button:not(.button, .link-button) {
display: block;
width: 100%;
border: 0;
@ -629,6 +640,18 @@ code {
}
.label_input {
position: relative;
&__loading-indicator {
box-sizing: border-box;
position: absolute;
top: 0;
inset-inline-start: 0;
border: 1px solid transparent;
padding: 10px 16px;
width: 100%;
}
&__wrapper {
position: relative;
}