Fixed #35001 -- Fixed position of related widget action icons in admin for some screen sizes.

This commit is contained in:
Tom Carrick 2023-12-01 14:03:04 +01:00 committed by GitHub
parent 0f83133a35
commit dec8aa68f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View File

@ -670,10 +670,10 @@ input[type="submit"], button {
.selector {
flex-direction: column;
gap: 10px 0;
}
.selector-available, .selector-chosen {
margin-bottom: 0;
flex: 1 1 auto;
}

View File

@ -3,7 +3,7 @@
.selector {
display: flex;
flex-grow: 1;
gap: 10px;
gap: 0 10px;
}
.selector select {
@ -15,7 +15,6 @@
.selector-available, .selector-chosen {
text-align: center;
margin-bottom: 5px;
display: flex;
flex-direction: column;
flex: 1 1;
@ -88,6 +87,7 @@
width: 22px;
background-color: var(--selected-bg);
border-radius: 10px;
margin: 0;
padding: 0;
transform: translateY(-17px);
}
@ -151,7 +151,7 @@ a.selector-chooseall, a.selector-clearall {
display: inline-block;
height: 16px;
text-align: left;
margin: 1px auto 3px;
margin: 0 auto;
overflow: hidden;
font-weight: bold;
line-height: 16px;
@ -580,8 +580,10 @@ ul.timelist, .timelist li {
/* RELATED WIDGET WRAPPER */
.related-widget-wrapper {
display: flex;
gap: 10px;
gap: 0 10px;
flex-grow: 1;
flex-wrap: wrap;
margin-bottom: 5px;
}
.related-widget-wrapper-link {