aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/components
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-02-25 01:03:25 -0500
committerbobzel <zzzman@gmail.com>2025-02-25 01:03:25 -0500
commit515707c4561eb526426b8fa07dd50bd499fb91cc (patch)
treef4cbc69387da19add6dbc88acecbcdbdca575039 /src/client/views/nodes/DataVizBox/components
parent30b07ed24fbe5e6d49741bc63031807408cd4a0c (diff)
added a hideUI option to hide buttons. fixed a mess of runtime warnings mostly related to how scss files can be included in each other
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components')
-rw-r--r--src/client/views/nodes/DataVizBox/components/Chart.scss10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/Chart.scss b/src/client/views/nodes/DataVizBox/components/Chart.scss
index 0eb27b65b..ff1fa343d 100644
--- a/src/client/views/nodes/DataVizBox/components/Chart.scss
+++ b/src/client/views/nodes/DataVizBox/components/Chart.scss
@@ -1,4 +1,4 @@
-@import '../../../global/globalCssVariables.module.scss';
+@use '../../../global/globalCssVariables.module.scss' as global;
.chart-container {
display: flex;
flex-direction: column;
@@ -108,7 +108,7 @@
}
}
tr td {
- 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.
+ height: global.$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;
}
@@ -135,7 +135,7 @@
}
.tableBox-filterPopup {
- background: $light-gray;
+ background: global.$light-gray;
position: absolute;
min-width: 235px;
top: 60px;
@@ -152,7 +152,7 @@
.tableBox-filterPopup-selectColumn-each {
margin-left: 25px;
border-radius: 3px;
- background: $light-gray;
+ background: global.$light-gray;
}
}
.tableBox-filterPopup-setValue {
@@ -162,7 +162,7 @@
.tableBox-filterPopup-setValue-each {
margin-right: 5px;
border-radius: 3px;
- background: $light-gray;
+ background: global.$light-gray;
}
.tableBox-filterPopup-setValue-input {
margin: 5px;