-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstyles.css
137 lines (109 loc) · 2.77 KB
/
styles.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/* MAIN */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400');
:root {
--good-red: #c51f3f;
--good-gray: #9D9D9D;
--blue-button-color: #3C587F;
--default: 'Roboto', sans-serif;
}
body {
font-family: 'Roboto', sans-serif;
}
/* MAIN */
/* SIDEBAR */
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
background-color: var(--good-gray);
border-color: white;
}
/* SIDEBAR */
/* BUTTON: SHOW REPORT */
.btn-show-report {
background-color: var(--blue-button-color);
color: white;
font-family: 'Roboto', sans-serif;
font-weight: 400;
border-radius: 1.5px;
border-color: var(--blue-button-color);
box-shadow: none;
border-style: solid;
height: 30px;
width: 100px;
}
button.btn-show-report:hover {
background-color: var(--good-gray);
border-color: var(--good-gray);
}
/* BUTTON: SHOW REPORT */
/* TABLE: FLAGGED SUMMARY TABLE */
.Widget_GroupOverview {
height: auto !important;
}
.gsm-overview-table {
font-family: var(--default);
}
table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc, table.dataTable thead>tr>th.sorting_asc_disabled, table.dataTable thead>tr>th.sorting_desc_disabled, table.dataTable thead>tr>td.sorting, table.dataTable thead>tr>td.sorting_asc, table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>td.sorting_asc_disabled, table.dataTable thead>tr>td.sorting_desc_disabled {
padding-right: 16px;
}
table.dataTable.compact thead th, table.dataTable.compact thead td {
padding: 4px 4px;
}
/* TABLE: FLAGGED SUMMARY TABLE */
/* Group select */
.overall-group-select {
position: fixed;
width: 128px;
top: 64px;
right: 32px;
background-color: var(--blue-button-color);
color: white;
border: 2px solid var(--good-gray);
border-radius: 4px;
padding: 4px;
text-align: center;
z-index: 1;
}
.overall-group-select:hover {
cursor: grab;
}
/* font color for drop-down */
.gsm-overview-table .dataTables_wrapper .dataTables_length select {
color: var(--good-red);
}
.overall-group-select select,
.overall-group-select option {
color: black;
}
.flag {
display: inline-block;
border-style: solid;
border-color: black;
font-weight: bold;
text-align: center;
margin: 5px;
width: 20%;
font-family: 'Roboto', sans-serif;
}
.flag-amber {
background-color: #FEAA0280;
}
.flag-red {
background-color: #FF585980;
}
.flag-container {
display: flex;
justify-content: center;
align-items: center;
}
#tocify-header0 {
display: none;
}
/* Group summary table -- change cursor to cue to user that tooltip is available */
td[title] {
cursor: help;
}
tbody.gt_table_body tr:hover:nth-child(odd) {
background: #f9f9f9;
}
#timeline {
display: none;
}