-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMMM-Tabulator.css
59 lines (50 loc) · 1.58 KB
/
MMM-Tabulator.css
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* ---------------------------------------------------------
Module: MMM-Tabulator CSS
File: MMM-Tbaulator.css
Author: E:V:A
URL: https://github.com/E3V3A/MMM-Tabulator
* ---------------------------------------------------------
*/
.body {
background-color:#FFF;
}
/* Theme the Tabulator element */
#flighttable {
/* The (max) table height is hardcoded in MMM-Table.js */
width: 100%; /* 600px */
font-family: sans-serif;
font-size: 12px; /* remove? */
background-color: #000;
border: none; /*border: 1px solid #333;*/
/*border-radius: 10px;*/
}
#flighttable .tabulator {
background-color: #000;
}
/* Theme the table Header */
#flighttable .tabulator-header {
background-color: #000; /* 333 */
color: #ff0; /* yellow */
font-weight: 100;
}
/* The Header & Row (right) Boders */
#flighttable .tabulator-header .tabulator-col {
border-right: none; /* 1px solid #aaa */
}
.tabulator .tabulator-row .tabulator-cell {
border-right: none; /* 1px solid #888; */
}
/* Color the table rows */
#flighttable .tabulator-tableHolder .tabulator-table .tabulator-row {
font-color:#fff;
background-color: #333; /* 666 */
border-right: none; /* remove? */
}
/* Color even rows */
#flighttable .tabulator-tableHolder .tabulator-table .tabulator-row:nth-child(even) {
background-color: #222; /* 444 */
}
/* Remove the sort arrows in table headers */
.tabulator .tabulator-header .tabulator-col[data-sortable=true] .tabulator-col-title {width: 100%;}
.tabulator-arrow {display: none;}