b40ead7d by Marty Penner

Add basic styles for sortable list items. Taken from the "Post Types Order" plugin. refs #1489

1 parent 015754fb
......@@ -785,4 +785,10 @@ h6.fieldset-heading {
a.remove-option-group, a.remove-option {
margin-left: 15px;
}
\ No newline at end of file
}
#sortable { list-style-type: none; margin: 10px 0 0; padding: 0; width: 100%; }
#sortable ul { margin-left: 20px; list-style: none; }
#sortable li { padding: 2px 0px; margin: 4px 0px; border: 1px solid #DDDDDD; cursor: move; -moz-border-radius: 6px }
#sortable li span { display: block; background: #f7f7f7; padding: 5px; color: #808080; font-size: 14px; font-weight: bold; }
#sortable li.placeholder { border: dashed 2px #ccc; background-color: #FFF; height: 20px; }
\ No newline at end of file
......