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
content-order.css
156 lines
| 1 | /* Styling for Content Management >> Content Order pages */ |
| 2 | .page-header { |
| 3 | display: flex; |
| 4 | align-items: baseline; |
| 5 | justify-content: space-between; |
| 6 | } |
| 7 | |
| 8 | .page-header h2 { |
| 9 | font-size: 23px; |
| 10 | font-weight: 400; |
| 11 | margin: 0; |
| 12 | padding: 9px 0 4px; |
| 13 | line-height: 1.3; |
| 14 | } |
| 15 | |
| 16 | #screen-meta-links { |
| 17 | display: none; |
| 18 | } |
| 19 | |
| 20 | #toggles { |
| 21 | display: none; |
| 22 | } |
| 23 | |
| 24 | #toggle-excerpt { |
| 25 | position: relative; |
| 26 | top: 2px; |
| 27 | } |
| 28 | |
| 29 | #toggles input[type="checkbox"] { |
| 30 | margin-left: 8px; |
| 31 | } |
| 32 | |
| 33 | #toggles label { |
| 34 | font-size: 14px; |
| 35 | } |
| 36 | |
| 37 | |
| 38 | |
| 39 | #item-list { |
| 40 | margin-bottom: -20px; |
| 41 | } |
| 42 | |
| 43 | #item-list li { |
| 44 | position: relative; |
| 45 | clear: both; |
| 46 | overflow: hidden; |
| 47 | margin-bottom: 0; |
| 48 | } |
| 49 | |
| 50 | .row.ui-sortable-handle { |
| 51 | background: #fff; |
| 52 | margin-top: 3px; |
| 53 | margin-bottom: 3px; |
| 54 | border: 1px solid #c3c4c7; |
| 55 | } |
| 56 | .row-content { |
| 57 | position: relative; |
| 58 | padding: 11px 16px 9px; |
| 59 | font-size: 14px; |
| 60 | font-weight: 700; |
| 61 | cursor: move; |
| 62 | overflow: hidden; |
| 63 | } |
| 64 | .content-main { |
| 65 | white-space: nowrap; |
| 66 | overflow: hidden; |
| 67 | text-overflow: clip; |
| 68 | } |
| 69 | .content-additional { |
| 70 | position: absolute; |
| 71 | top: 5px; |
| 72 | right: 5px; |
| 73 | } |
| 74 | .row-content:hover { |
| 75 | background: #fff6e5; |
| 76 | } |
| 77 | .ui-sortable-placeholder { |
| 78 | border-radius: 0 !important; |
| 79 | background: #cdddd6 !important; |
| 80 | border: 1px dashed #508871 !important; |
| 81 | visibility: visible !important; |
| 82 | } |
| 83 | .row-content .dashicons.dashicons-menu { |
| 84 | position: relative; |
| 85 | top: -1px; |
| 86 | margin-right: 4px; |
| 87 | } |
| 88 | .row-content:hover .dashicons.dashicons-menu { |
| 89 | color: inherit; |
| 90 | } |
| 91 | a.item-title, |
| 92 | a.item-view-link { |
| 93 | text-decoration: none; |
| 94 | } |
| 95 | a.item-title:hover { |
| 96 | text-decoration: underline; |
| 97 | } |
| 98 | .item-status-hidden, |
| 99 | .wp-core-ui .button.item-view-link { |
| 100 | display: none; |
| 101 | } |
| 102 | .wp-core-ui .row-content:hover .button.item-view-link { |
| 103 | display: inherit; |
| 104 | } |
| 105 | .wp-core-ui .button.item-view-link { |
| 106 | font-weight: normal; |
| 107 | box-shadow: 0 0 8px 8px #fff6e5; |
| 108 | } |
| 109 | .has-child-label { |
| 110 | } |
| 111 | .item-taxonomy-terms, |
| 112 | .item-excerpt { |
| 113 | display: none; |
| 114 | margin-left: 2px; |
| 115 | color: #999; |
| 116 | font-weight: 400; |
| 117 | white-space: nowrap; |
| 118 | overflow: hidden; |
| 119 | } |
| 120 | |
| 121 | .content-main .fader { |
| 122 | position: absolute; |
| 123 | top: 1px; |
| 124 | right: 1px; |
| 125 | width: 48px; |
| 126 | height: 38px; |
| 127 | background: ; |
| 128 | background-image: linear-gradient(to right, rgba(255,255,255,0) , #ffffff); |
| 129 | } |
| 130 | |
| 131 | .row-content:hover .content-main .fader { |
| 132 | background-image: linear-gradient(to right, rgba(255,246,229,0) , #fff6e5); |
| 133 | } |
| 134 | |
| 135 | .updating-order-notice { |
| 136 | box-sizing: border-box; |
| 137 | position: absolute; |
| 138 | right: 4px; |
| 139 | top: 4px; |
| 140 | z-index: 10; |
| 141 | height: 32px; |
| 142 | display: flex; |
| 143 | align-items: center; |
| 144 | background: #eee; |
| 145 | padding: 6px 12px 6px 8px; |
| 146 | border: 1px solid #c3c4c7; |
| 147 | } |
| 148 | .spinner-img { |
| 149 | width: 16px; |
| 150 | height: 16px; |
| 151 | margin: 2px 6px 2px 2px; |
| 152 | } |
| 153 | .updating-order-notice .dashicons.dashicons-saved { |
| 154 | color: green; |
| 155 | margin-right: 4px; |
| 156 | } |