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

@ -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;
}