forked from bvaughn/react-virtualized
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCellMeasurer.example.css
70 lines (63 loc) · 1.02 KB
/
CellMeasurer.example.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
.GridRow {
margin-top: 15px;
display: flex;
flex-direction: row;
}
.GridColumn {
display: flex;
flex-direction: column;
flex: 1 1 auto;
}
.LeftSideGridContainer {
flex: 0 0 50px;
}
.BodyGrid {
width: 100%;
border: 1px solid #e0e0e0;
}
.evenRow,
.oddRow {
border-bottom: 1px solid #e0e0e0;
}
.oddRow {
background-color: #fafafa;
}
.cell {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0.5em 1em;
}
.cell {
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
.uniformSizeCell {
padding: 0.5rem;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.tableRow {
border-bottom: 1px solid #eee;
}
.tableColumn {
padding: 5px 15px 5px 0;
}
.Tab {
border: 1px solid #ddd;
border-radius: 4px;
padding: 4px 6px;
outline: none;
background: #eee;
margin: 4px;
cursor: pointer;
}
.ActiveTab {
background-color: #4db6ac;
border: 1px solid #3ca59b;
color: rgba(255, 255, 255, 0.8);
cursor: default;
}