Fix unfortunate action button wrapping in admin area (#36247)

This commit is contained in:
diondiondion 2025-09-24 10:57:18 +02:00 committed by GitHub
commit 6cbc857ee0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 23 additions and 14 deletions

View file

@ -163,7 +163,7 @@ $content-width: 840px;
flex: 1 1 auto;
}
@media screen and (max-width: $content-width + $sidebar-width) {
@media screen and (max-width: ($content-width + $sidebar-width)) {
.sidebar-wrapper--empty {
display: none;
}
@ -1065,6 +1065,17 @@ a.name-tag,
}
}
&__action-bar {
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
&:not(.no-wrap) {
flex-wrap: wrap;
}
}
&__meta {
padding: 0 15px;
color: $dark-text-color;
@ -1081,10 +1092,8 @@ a.name-tag,
}
}
&__action-bar {
display: flex;
justify-content: space-between;
align-items: center;
&__actions {
margin-inline-start: auto;
}
&__permissions {