diff options
Diffstat (limited to 'wp-admin/css/media-rtl.css')
-rw-r--r-- | wp-admin/css/media-rtl.css | 43 |
1 files changed, 23 insertions, 20 deletions
diff --git a/wp-admin/css/media-rtl.css b/wp-admin/css/media-rtl.css index 8dcd46e..42a195a 100644 --- a/wp-admin/css/media-rtl.css +++ b/wp-admin/css/media-rtl.css @@ -113,14 +113,8 @@ margin-left: 10px; } -.media-item-wrapper { - display: grid; - grid-template-columns: 1fr 1fr; -} - .media-item .attachment-tools { display: flex; - justify-content: flex-end; align-items: center; } @@ -191,15 +185,10 @@ display: none; } -.media-item .original { - position: relative; - min-height: 34px; -} - .media-item .progress { - float: left; + display: inline-block; height: 22px; - margin: 7px 6px; + margin: 0 6px 7px; width: 200px; line-height: 2em; padding: 0; @@ -586,15 +575,9 @@ border color while dragging a file over the uploader drop area */ } .media-frame-content .media-search-input-label { - margin: 0 0 0 .2em; vertical-align: baseline; } -.media-frame.mode-grid .media-search-input-label { - position: static; - margin: 0 0 0 .5em; -} - .attachments-browser .media-toolbar-secondary > .media-button { margin-left: 10px; } @@ -908,7 +891,7 @@ border color while dragging a file over the uploader drop area */ } .imgedit-settings { - max-width: 400px; /* Prevent reflow when help info is expanded. */ + max-width: 240px; /* Prevent reflow when help info is expanded. */ } .imgedit-group-controls > * { @@ -1374,6 +1357,12 @@ audio, video { width: 100%; margin-bottom: 20px; display: flex; + flex-wrap: nowrap; + column-gap: 0; + } + + .wp-filter p.search-box #media-search-input { + width: 100%; } } @@ -1437,3 +1426,17 @@ audio, video { max-width: 100%; } } + +@media only screen and (max-width: 375px) { + .media-item .attachment-tools { + align-items: baseline; + } + .media-item .edit-attachment.copy-to-clipboard-container { + flex-direction: column; + } + + .copy-to-clipboard-container .success { + line-height: normal; + margin-top: 10px; + } +} |