aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/components/Chart.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-10-10 14:52:54 -0400
committerbobzel <zzzman@gmail.com>2023-10-10 14:52:54 -0400
commit5eca36aa3e775646d96671b922bf7205074ab135 (patch)
tree7c077af3a03a17a8ffb0e9fbb45e7d71a8372cc5 /src/client/views/nodes/DataVizBox/components/Chart.scss
parent2da948c2f19c2afa6c0f92964a2622d0e9a2f144 (diff)
made tablebox row height a css variable. fixed panmode so that left drag selects w/ marquee and two finger vertical pan isn't clamped.
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/Chart.scss')
-rw-r--r--src/client/views/nodes/DataVizBox/components/Chart.scss3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/Chart.scss b/src/client/views/nodes/DataVizBox/components/Chart.scss
index 3072d0907..a6ce0b88c 100644
--- a/src/client/views/nodes/DataVizBox/components/Chart.scss
+++ b/src/client/views/nodes/DataVizBox/components/Chart.scss
@@ -1,3 +1,4 @@
+@import '../../../global/globalCssVariables';
.chart-container {
display: flex;
flex-direction: column;
@@ -103,7 +104,7 @@
margin-right: 10px;
margin-bottom: 0;
tr td {
- height: 40px !important; // bcz: hack. you can't set a <tr> height directly, but you can set the height of all of it's <td>s. So this is the height of a tableBox row.
+ height: $DATA_VIZ_TABLE_ROW_HEIGHT !important; // bcz: hack. you can't set a <tr> height directly, but you can set the height of all of it's <td>s. So this is the height of a tableBox row.
padding: 0 !important;
vertical-align: middle !important;
}