| /* 
    Document   : ui-table
    Created on : 25-oct-2015, 18:48:56
    Author     : Amed
    Description:
        Purpose of the stylesheet follows.
*/
.uir-table .selected> td,.uir-table .selected> th{ 
   
  text-decoration: none;
  background-color: #d3d3d3;
  
}
.uir-table .selected:hover > th ,.uir-table .selected:hover > td{
  
  text-decoration: none;
 background-color: #d3d3d3;
  
}
.uir-table tbody tr:hover > td,
.uir-table tbody tr:hover > th {
  background-color: #f5f5f5;
}
.uir-table i{
    margin-right: 5px;
    margin-left: 5px;
}
.uir-loading-table{ 
    background: url(../images/ajax-loader.gif) no-repeat center center;
    height: 20px;
    width: 20px;
    display: inline-block;
}
.uir-table thead{
    cursor: pointer;
    background: url(../images/header-rpt.png);
    background-position: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .8);
}
.uir-table thead th{
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #dadbdc
}
.uir-table-loading-text{
   color:white;
   z-index: 100001;
}
.uir-table-loading-indicator{
    width: 16px;
    height: 16px;
    background-image: url(../images/ajax-loader.gif);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    z-index: 100001;
}
.uir-table input.error{
    border-color: rgba(215, 18, 18, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(215, 18, 18, 0.6);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(215, 18, 18, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(215, 18, 18, 0.6);
}
table .header-fixed {
  position: fixed;
  top: 40px;
  /*left: 0;*/
  /*right: 0;*/
  z-index: 1020; /* 10 less than .navbar-fixed to prevent any overlap */
  border-bottom: 1px solid #d5d5d5;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
 |