Updating versions of Sparky FE files
[aai/sparky-fe.git] / resources / scss / bootstrap-cust / _tables.scss
1 .table {
2   // Cells
3   > thead,
4   > tbody,
5   > tfoot {
6         > tr {
7           > th,
8           > td {
9                 border-top: none;
10           }
11         }
12   }
13   // Bottom align for column headings
14   > thead > tr > th {
15         border-bottom: none;
16   }
17   // Account for multiple tbody instances
18   > tbody + tbody {
19         border-top: none;
20   }
21         .table {
22                 -webkit-border-horizontal-spacing: 0px !important;
23                 -webkit-border-vertical-spacing:0px !important;
24         }
25 }
26
27 .table-striped {
28         > tbody > tr:nth-of-type( odd ) {
29                 background-color: $background-color1;
30         }
31 }
32
33 .table-striped {
34         > tbody > tr:nth-of-type( even ) {
35                 background-color: $neutral-gray;
36         }
37 }
38
39 .table-hover {
40         > tbody > tr:hover {
41                 background-color: $background-color12;
42                 cursor: pointer;
43         }
44 }
45
46 table {
47         -webkit-border-horizontal-spacing: 0px !important;
48         -webkit-border-vertical-spacing:0px !important;
49 }