codemirror
3 years ago
datatables
3 years ago
admin-page.css
3 years ago
content-order.css
3 years ago
hide-admin-notices.css
3 years ago
jBox.all.min.css
3 years ago
list-table.css
3 years ago
maintenance.css
3 years ago
media-replace.css
3 years ago
wp-admin.css
3 years ago
content-order.css
84 lines
| 1 | /* Styling for Content Management >> Content Order pages */ |
| 2 | |
| 3 | #item-list { |
| 4 | margin-bottom: -20px; |
| 5 | } |
| 6 | #item-list li { |
| 7 | position: relative; |
| 8 | background: #fff; |
| 9 | margin-bottom: 4px; |
| 10 | border: 1px solid #c3c4c7; |
| 11 | clear: both; |
| 12 | overflow: hidden; |
| 13 | } |
| 14 | .row-content { |
| 15 | display: flex; |
| 16 | justify-content: space-between; |
| 17 | align-items: center; |
| 18 | padding: 11px 16px 9px; |
| 19 | font-size: 14px; |
| 20 | font-weight: 700; |
| 21 | cursor: move; |
| 22 | } |
| 23 | .row-content:hover { |
| 24 | background: #fff6e5; |
| 25 | } |
| 26 | .ui-sortable-placeholder { |
| 27 | border-radius: 0 !important; |
| 28 | background: #cdddd6 !important; |
| 29 | border: 1px dashed #508871 !important; |
| 30 | visibility: visible !important; |
| 31 | } |
| 32 | .row-content .dashicons.dashicons-menu { |
| 33 | position: relative; |
| 34 | top: -1px; |
| 35 | margin-right: 4px; |
| 36 | } |
| 37 | .row-content .dashicons.dashicons-menu { |
| 38 | color: #ddd; |
| 39 | } |
| 40 | .row-content:hover .dashicons.dashicons-menu { |
| 41 | color: inherit; |
| 42 | } |
| 43 | a.item-title, |
| 44 | a.item-view-link { |
| 45 | text-decoration: none; |
| 46 | } |
| 47 | a.item-title:hover, |
| 48 | a.item-view-link:hover { |
| 49 | text-decoration: underline; |
| 50 | } |
| 51 | .item-status-hidden, |
| 52 | a.item-view-link { |
| 53 | display: none; |
| 54 | } |
| 55 | .row-content:hover a.item-view-link { |
| 56 | display: inherit; |
| 57 | } |
| 58 | a.item-view-link { |
| 59 | font-weight: normal; |
| 60 | } |
| 61 | .has-child-label { |
| 62 | } |
| 63 | .updating-order-notice { |
| 64 | box-sizing: border-box; |
| 65 | position: absolute; |
| 66 | right: 4px; |
| 67 | top: 4px; |
| 68 | z-index: 10; |
| 69 | height: 32px; |
| 70 | display: flex; |
| 71 | align-items: center; |
| 72 | background: #eee; |
| 73 | padding: 6px 12px 6px 8px; |
| 74 | border: 1px solid #c3c4c7; |
| 75 | } |
| 76 | .spinner-img { |
| 77 | width: 16px; |
| 78 | height: 16px; |
| 79 | margin: 2px 6px 2px 2px; |
| 80 | } |
| 81 | .updating-order-notice .dashicons.dashicons-saved { |
| 82 | color: green; |
| 83 | margin-right: 4px; |
| 84 | } |