Skip to content

Commit d629e16

Browse files
authored
Add css for table scrolling. Fixes #2027 (#2028)
1 parent b38afdd commit d629e16

2 files changed

Lines changed: 17 additions & 13 deletions

File tree

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
11
/**
2-
* This file is for any css that you may want for this visualizer.
3-
*
4-
* Ideally, you would use the scss file also provided in this directory
5-
* and then generate this file automatically from that. However, you can
6-
* simply write css if you prefer
2+
* This file is for any scss that you may want for this visualizer.
73
*/
8-
94
.execution-index.panel-body {
10-
padding: 0;
11-
}
5+
padding: 0; }
126

137
.execution-index .left {
148
position: absolute;
159
background-color: #eee;
16-
}
10+
overflow-y: scroll; }
1711

1812
.execution-index .right {
1913
position: absolute;
20-
background-color: #eee;
21-
}
14+
background-color: #eee; }

src/visualizers/widgets/ExecutionIndex/styles/ExecutionIndexWidget.scss

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
* This file is for any scss that you may want for this visualizer.
33
*/
44

5-
.execution-index {
6-
outline: none;
5+
.execution-index.panel-body {
6+
padding: 0;
7+
}
8+
9+
.execution-index .left {
10+
position: absolute;
11+
background-color: #eee;
12+
overflow-y: scroll;
13+
}
14+
15+
.execution-index .right {
16+
position: absolute;
17+
background-color: #eee;
718
}

0 commit comments

Comments
 (0)