codemirror
7 months ago
datatables
7 months ago
admin-menu-organizer.css
7 months ago
admin-page.css
7 months ago
content-order.css
7 months ago
gutenberg-content-duplication.css
7 months ago
hide-admin-notices.css
7 months ago
image-sizes-panel.css
7 months ago
jBox.all.min.css
7 months ago
list-table.css
7 months ago
list-tables-content-order.css
7 months ago
maintenance.css
7 months ago
media-categories-frontend.css
7 months ago
media-replace-frontend.css
7 months ago
media-replace.css
7 months ago
select2.min.css
7 months ago
settings-wpeditor.css
7 months ago
wp-admin.css
7 months ago
image-sizes-panel.css
74 lines
| 1 | /* Adapted from https://plugins.trac.wordpress.org/browser/image-sizes-panel/tags/0.4/admin/css/admin.css */ |
| 2 | |
| 3 | #image_sizes .inside { |
| 4 | margin: 0px; |
| 5 | padding: 0px; |
| 6 | } |
| 7 | |
| 8 | #image_sizes table { |
| 9 | border: none; |
| 10 | border-collapse: collapse; |
| 11 | width: 100%; |
| 12 | } |
| 13 | |
| 14 | #image_sizes table th { |
| 15 | display: none; |
| 16 | } |
| 17 | |
| 18 | #image_sizes table td { |
| 19 | border-bottom: 1px solid #eee; |
| 20 | padding: 6px 12px; |
| 21 | text-align: left; |
| 22 | vertical-align: top; |
| 23 | } |
| 24 | |
| 25 | #image_sizes table .size .name { |
| 26 | font-weight: bold; |
| 27 | display: block; |
| 28 | max-width: 135px; |
| 29 | min-width: 1px; |
| 30 | overflow: hidden; |
| 31 | text-overflow: ellipsis; |
| 32 | white-space: nowrap; |
| 33 | } |
| 34 | |
| 35 | #image_sizes table .dim { |
| 36 | padding-left: 0px; |
| 37 | text-align: right; |
| 38 | white-space: nowrap; |
| 39 | } |
| 40 | |
| 41 | #image_sizes table td.copy { |
| 42 | padding-right: 0px; |
| 43 | width: 20px; |
| 44 | } |
| 45 | |
| 46 | #image_sizes table td .copy-url-button { |
| 47 | width: 20px; |
| 48 | height: 20px; |
| 49 | display: flex; |
| 50 | justify-content: center; |
| 51 | align-items: center; |
| 52 | } |
| 53 | |
| 54 | #image_sizes table td .copy-url-button:hover { |
| 55 | cursor: pointer; |
| 56 | } |
| 57 | |
| 58 | #image_sizes table td .copy-url-button:hover svg g { |
| 59 | stroke: #135e96; |
| 60 | } |
| 61 | |
| 62 | #image_sizes .image-size-row { |
| 63 | position: relative; |
| 64 | } |
| 65 | |
| 66 | #image_sizes .image-size-row .url-copied { |
| 67 | position: absolute; |
| 68 | top: 4px; |
| 69 | left: 40px; |
| 70 | background: #fff; |
| 71 | border: 1px solid #ccc; |
| 72 | padding: 2px 8px; |
| 73 | border-radius: 3px; |
| 74 | } |