source: CLARIN_style/_+DataTables.scss

Last change on this file was 5852, checked in by Sander Maijers, 9 years ago
  • Make CLARIN style more modular.
File size: 1.3 KB
Line 
1@import '_';
2
3table.datatables-table {
4    border-collapse: collapse !important;
5    position: relative !important;
6    border-spacing: 0 !important;
7    border: 0 !important;
8    background-clip: padding-box;
9    //background-repeat: no-repeat;
10    //background-position: center top;
11
12    th, td {
13        border: 0 !important;
14        //background-clip: content-box !important;
15    }
16
17    thead tr th {
18        background-color: $clarin_blue !important;
19        border-collapse: collapse !important;
20        //background-clip: content-box !important;
21        background-attachment: scroll !important;
22        //border-bottom: 0px !important;
23        color: #fff !important;
24        text-align: center;
25    }
26
27    thead {
28        tr th:first-child {
29            border-top-left-radius: 6px !important;
30            border-bottom-left-radius: 6px !important;
31        }
32
33        tr {
34            //padding: $indent $indent !important;
35            font-weight: bolder !important;
36            text-align: left !important;
37            border: 0 !important;
38        }
39
40        tr th a {
41            color: #fff !important;
42            text-decoration: underline !important;
43        }
44
45        tr th:last-child {
46            border-top-right-radius: 6px !important;
47            border-bottom-right-radius: 6px !important;
48        }
49    }
50}
Note: See TracBrowser for help on using the repository browser.