|
1 | 1 | /* Collection default theme */ |
2 | 2 |
|
3 | 3 | .ReactVirtualized__Collection { |
4 | | - position: relative; |
5 | | - overflow: auto; |
6 | | - -webkit-overflow-scrolling: touch; |
7 | | - |
8 | | - /* Without this property, Chrome repaints the entire Collection any time a new row or column is added. |
9 | | - Firefox only repaints the new row or column (regardless of this property). |
10 | | - Safari and IE don't support the property at all. */ |
11 | | - will-change: transform; |
12 | 4 | } |
13 | 5 |
|
14 | 6 | .ReactVirtualized__Collection__innerScrollContainer { |
15 | | - box-sizing: border-box; |
16 | | - overflow: hidden; |
17 | 7 | } |
18 | 8 |
|
19 | 9 | /* Grid default theme */ |
20 | 10 |
|
21 | 11 | .ReactVirtualized__Grid { |
22 | | - position: relative; |
23 | | - overflow: auto; |
24 | | - -webkit-overflow-scrolling: touch; |
25 | | - |
26 | | - /* Without this property, Chrome repaints the entire Grid any time a new row or column is added. |
27 | | - Firefox only repaints the new row or column (regardless of this property). |
28 | | - Safari and IE don't support the property at all. */ |
29 | | - will-change: transform; |
30 | 12 | } |
31 | 13 |
|
32 | 14 | .ReactVirtualized__Grid__innerScrollContainer { |
33 | | - box-sizing: border-box; |
34 | | - overflow: hidden; |
35 | | - position: relative; |
36 | 15 | } |
37 | 16 |
|
38 | 17 | /* Table default theme */ |
|
41 | 20 | } |
42 | 21 |
|
43 | 22 | .ReactVirtualized__Table__Grid { |
44 | | - overflow-x: hidden; |
45 | | - box-sizing: border-box; |
46 | 23 | } |
47 | 24 |
|
48 | 25 | .ReactVirtualized__Table__headerRow { |
|
51 | 28 | display: flex; |
52 | 29 | flex-direction: row; |
53 | 30 | align-items: center; |
54 | | - overflow: hidden; |
55 | | - box-sizing: border-box; |
56 | 31 | } |
57 | 32 | .ReactVirtualized__Table__row { |
58 | 33 | display: flex; |
59 | 34 | flex-direction: row; |
60 | 35 | align-items: center; |
61 | | - overflow: hidden; |
62 | 36 | } |
63 | 37 |
|
64 | | -.ReactVirtualized__Table__headerTruncatedText { |
| 38 | +.ReactVirtualized__Table__headerTruncatedText { |
65 | 39 | display: inline-block; |
66 | 40 | max-width: 100%; |
67 | 41 | white-space: nowrap; |
|
75 | 49 | min-width: 0px; |
76 | 50 | } |
77 | 51 | .ReactVirtualized__Table__rowColumn { |
78 | | - overflow: hidden; |
79 | 52 | text-overflow: ellipsis; |
80 | 53 | white-space: nowrap; |
81 | 54 | } |
|
102 | 75 | /* List default theme */ |
103 | 76 |
|
104 | 77 | .ReactVirtualized__List { |
105 | | - position: relative; |
106 | | - overflow-y: auto; |
107 | | - overflow-x: hidden; |
108 | | - -webkit-overflow-scrolling: touch; |
109 | 78 | } |
0 commit comments