Blame view

resource/lib/bootstrap-table/bootstrap-table-fixed-columns.css 609 Bytes
c2bb199a   Andy   add tools doc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  .fixed-table-header-columns,
  .fixed-table-body-columns {
      position: absolute;
      background-color: #fff;
      display: none;
      box-sizing: border-box;
      overflow: hidden;
  }
  
  .fixed-table-header-columns .table,
  .fixed-table-body-columns .table {
      border-right: 1px solid #ddd;
  }
  
  .fixed-table-header-columns .table.table-no-bordered,
  .fixed-table-body-columns .table.table-no-bordered {
      border-right: 1px solid transparent;
  }
  
  .fixed-table-body-columns table {
      position: absolute;
      animation: none;
  }
  
  .bootstrap-table .table-hover > tbody > tr.hover > td{
      background-color: #f5f5f5;
  }