20 lines
299 B
CSS
20 lines
299 B
CSS
/**
|
|
* @package ogre-sort
|
|
* @author cleverogre
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
.ui-sortable tr:hover {
|
|
cursor: move;
|
|
}
|
|
|
|
.ui-sortable tr.alternate {
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.ui-sortable tr.ui-sortable-helper {
|
|
background-color: #f9f9f9;
|
|
border-top: 1px solid #dfdfdf;
|
|
}
|