mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Permalinks: Remove floating on Permalinks settings screen.
This changeset replaces floating elements with `flex` CSS positioning, while the markup stays the same to keep the elements' semantic value. Follow-up to [53706]. Props sabernhardt, kebbet, audrasjb. Fixes #56673. See #55498. git-svn-id: https://develop.svn.wordpress.org/trunk@55103 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e4e15d1d8b
commit
b0f853f580
@ -1082,9 +1082,18 @@ table.form-table td .updated p {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure .available-structure-tags ul {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin: 8px 0 0;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure .available-structure-tags li {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin: 6px 5px 0 0;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure .available-structure-tags li:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure .structure-selection .row {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user