File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
arduino-ide-extension/src/browser Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 27
27
position : relative; /* To fix the `top` of the vertical toolbar. */
28
28
}
29
29
30
- .filterable-list-container .items-container > div : nth-child (odd) {
30
+ .filterable-list-container .items-container > div > div : nth-child (odd) {
31
31
background-color : var (--theia-sideBar-background );
32
32
filter : contrast (105% );
33
33
}
34
34
35
- .filterable-list-container .items-container > div : nth-child (even) {
35
+ .filterable-list-container .items-container > div > div : nth-child (even) {
36
36
background-color : var (--theia-sideBar-background );
37
37
filter : contrast (95% );
38
38
}
39
39
40
- .filterable-list-container .items-container > div : hover {
40
+ .filterable-list-container .items-container > div > div : hover {
41
41
background-color : var (--theia-sideBar-background );
42
42
filter : contrast (90% );
43
43
}
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ export class ComponentList<T extends ArduinoComponent> extends React.Component<
43
43
this . mostRecentWidth = width ;
44
44
return (
45
45
< List
46
+ className = { 'items-container' }
46
47
rowRenderer = { this . createItem }
47
48
overscanRowCount = { 100 }
48
49
height = { height }
You can’t perform that action at this time.
0 commit comments