/**
 * @file
 * Plugin styles.
 * Copied verbatim from Drupal core, system module.
 * @license GPL V2 
 */

body.drag {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.draggable a.tabledrag-handle {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  float: left; /* LTR */
  /*height: 1.5em;*/
  margin-left: -1em; /* LTR */
  overflow: hidden;
  text-decoration: none;
}
a.tabledrag-handle:hover {
  text-decoration: none;
}
a.tabledrag-handle .handle {
  position: relative;
  height: 30px;
  margin: -0.4em 0.5em; /* LTR */
  padding: 0.42em 0.5em; /* LTR */
  width: 26px;
}
.draggable a.tabledrag-handle .handle:before {
  position: absolute;
  top: 5px;
  font-size: 15px;
  font-family: FontAwesome;
  content: "\f047";
}
.draggable.vertical a.tabledrag-handle .handle:before {
	content: "\f07d";
	padding: 0 6px;
}

tr.drag td,
tr.drag td a.tabledrag-handle,
tr.drag td a.tabledrag-handle .handle,
tr.drag td a.tabledrag-handle .handle:before {
	cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

a.tabledrag-handle-hover .handle {
  background-position: 4px -19px;
}
div.indentation {
  float: left; /* LTR */
  height: 2.3em;
  margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
  padding: 0.42em 0 0.42em 0.6em; /* LTR */
  width: 20px;
}
div.tree-child {
  background: url(../img/tree.png) no-repeat 12px center; /* LTR */
}
div.tree-child-last {
  background: url(../img/tree-bottom.png) no-repeat 12px center; /* LTR */
}
div.tree-child-horizontal {
  background: url(../img/tree.png) no-repeat -12px center;
}
.tabledrag-toggle-weight-wrapper {
  text-align: right; /* LTR */
}