simple-page-ordering
Last commit date
localization
13 years ago
readme.txt
13 years ago
screenshot-1.png
13 years ago
screenshot-2.png
13 years ago
simple-page-ordering.css
13 years ago
simple-page-ordering.dev.js
13 years ago
simple-page-ordering.js
13 years ago
simple-page-ordering.php
13 years ago
simple-page-ordering.css
42 lines
| 1 | .wp-list-table .ui-sortable tr { |
| 2 | cursor: move; |
| 3 | } |
| 4 | .wp-list-table .spo-updating tr { |
| 5 | cursor: default; |
| 6 | } |
| 7 | .wp-list-table .ui-sortable-placeholder { |
| 8 | border: 0; |
| 9 | height: 51px; |
| 10 | background: #808080; |
| 11 | background-image: -webkit-gradient(linear, left bottom, left top, from(#6d6d6d), to(#808080)); |
| 12 | background-image: -webkit-linear-gradient(bottom, #6d6d6d, #808080); |
| 13 | background-image: -moz-linear-gradient(bottom, #6d6d6d, #808080); |
| 14 | background-image: -o-linear-gradient(bottom, #6d6d6d, #808080); |
| 15 | background-image: linear-gradient(to top, #6d6d6d, #808080); |
| 16 | visibility: visible !important; |
| 17 | } |
| 18 | .wp-list-table .ui-sortable-helper { |
| 19 | background-color: #fff; |
| 20 | margin-left: -1px; |
| 21 | border: 1px solid #dfdfdf; |
| 22 | } |
| 23 | .wp-list-table .ui-sortable-helper th, |
| 24 | .wp-list-table .ui-sortable-helper td { |
| 25 | border-bottom-width: 0 !important; |
| 26 | } |
| 27 | |
| 28 | .spo-updating-row .check-column { |
| 29 | background: url('../../../wp-admin/images/wpspin_light.gif') center no-repeat; |
| 30 | } |
| 31 | @media print, |
| 32 | (-o-min-device-pixel-ratio: 5/4), |
| 33 | (-webkit-min-device-pixel-ratio: 1.25), |
| 34 | (min-resolution: 120dpi) { |
| 35 | .spo-updating-row .check-column { |
| 36 | background-image: url('../../../wp-admin/images/wpspin_light-2x.gif'); |
| 37 | background-size: 16px 16px; |
| 38 | } |
| 39 | } |
| 40 | .spo-updating-row .check-column input { |
| 41 | visibility: hidden; |
| 42 | } |