@charset "utf-8";
@import '../variable';
/**
 *
 * @Table.css
 * @author xinxuzhang
 * @create 15-06-24
 *
**/

$tableBorderNormal: #ededed;

.ui-table {
  width: 100%;
  line-height: 21px;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse\9;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 1, .2);
  border: 1px solid $borderNormal;
  border: 0 rgba(1, 2, 3, 0);
}
.ui-table thead td,
.ui-table th {
  line-height: 50px;
  background-color: $light;
  text-align: left;
  font-weight: normal;
  font-style: normal;
  margin: 0;
}
.ui-table tbody td {
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: $backgroundList;
  border-bottom: 1px solid $tableBorderNormal;
}
.ui-table td,
.ui-table th {
	padding: 0 20px;
}
.ui-table tr {
  cursor: default;
}
.ui-table tr:hover td {
  background-color: $backgroundListHover;
}
.ui-table tr.selected td {
  background-color: $backgroundListSelected;
}

.ui-table tr:last-child td {
	padding-bottom: 15px;
	border-bottom: 0;
}

.ui-table ~ .ui-loading {
	height: 300px;
}

