Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/web/ui/src/features/component/Table.module.css
5283 views
1
.table {
2
border-collapse: collapse;
3
width: 100%;
4
table-layout: fixed;
5
}
6
7
.table td,
8
.table th {
9
border: none;
10
padding: 0px 8px;
11
}
12
13
.table tr:nth-child(odd) {
14
background-color: #f4f5f5;
15
}
16
17
.table tr:nth-child(even) {
18
background-color: white;
19
}
20
21
.table tr:hover {
22
background-color: #ddd;
23
}
24
25
.table th {
26
padding: 8px;
27
text-align: left;
28
background-color: #f4f5f5;
29
color: rgba(36, 41, 46, 0.75);
30
}
31
32
.table td:first-child {
33
width: 2%;
34
}
35
36