All Downloads are FREE. Search and download functionalities are using the official Maven repository.

res.jquery.treeTable.css Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
/* jQuery TreeTable Core 2.0 stylesheet
 *
 * This file contains styles that are used to display the tree table. Each tree
 * table is assigned the +treeTable+ class.
 * ========================================================================= */

/* jquery.treeTable.collapsible
 * ------------------------------------------------------------------------- */
.treeTable tr td .expander {
  background-position: left center;
  background-repeat: no-repeat;
  cursor: pointer;
  padding: 0;
  zoom: 1; /* IE7 Hack */
}

.treeTable tr.collapsed td .expander {
  background-image: url(../../res/imgs/arrow_right.png);
}

.treeTable tr.expanded td .expander {
  background-image: url(../../res/imgs/arrow_down.png);
}

/* jquery.treeTable.sortable
 * ------------------------------------------------------------------------- */
.treeTable tr.selected, .treeTable tr.accept {
  background-color: #3875d7;
  color: #fff;
}

.treeTable tr.collapsed.selected td .expander, .treeTable tr.collapsed.accept td .expander {
  background-image: url(../../res/imgs/arrow_right.png);
}

.treeTable tr.expanded.selected td .expander, .treeTable tr.expanded.accept td .expander {
  background-image: url(../../res/imgs/arrow_down.png);
}

.treeTable .ui-draggable-dragging {
  color: #000;
  z-index: 1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy