JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "bs.table.scss"

Full Path: /var/www/lionsclub/assets/dashboard/css/scss/bs.table.scss
File size: 1.05 KB
MIME-type: text/plain
Charset: utf-8

.table{
  .panel &{
    border-color: $table-border-color !important;
  }
  > tbody,
  > tfoot {
    > tr {
      > td,
      > th {
        padding-left: 16px;
        padding-right: 16px;
        border-color: $table-border-color;
      }
    }
  }
  > thead > tr > th{
    padding:10px 16px;
    border-color: $table-border-color;
  }
}
.table-condensed{
    thead>tr>th,
    tbody>tr>th,
    tfoot>tr>th,
    thead>tr>td,
    tbody>tr>td,
    tfoot>tr>td{
      padding: 5px;
    }
}
.table-bordered{
  border-color: $table-border-color;
}
.table-striped{
  > tbody {
    > tr{
      &:nth-child(odd){
        background-color: $table-striped-color;
        background-clip: padding-box;
      }
    }
  }
  > thead {
    > th{
      background-color: $table-striped-color;
      border-right: 1px solid $table-border-color;
      &:last-child{
        border-right: none
      }
    }
  }
}

.table-hover tr:hover,
.table tr.active,
.table td.active,
.table th.active{
  background-color: $min-black !important;
}