diff options
| author | bobzel <zzzman@gmail.com> | 2023-10-16 13:57:01 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-10-16 13:57:01 -0400 |
| commit | f6337ba3244f2d7270dccb6b319c047e608c6a72 (patch) | |
| tree | f1a0026c2f3a0ca75585a12eec9e744b9f85a99e /src/client/views/nodes/DataVizBox/components/Chart.scss | |
| parent | 37cc69bcc8be3a6b160c45e5c16f969bd593fa88 (diff) | |
cleaned up css and cursor pointer for tableboxes. prevent links being drawn to keyvaluebox.
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/Chart.scss')
| -rw-r--r-- | src/client/views/nodes/DataVizBox/components/Chart.scss | 40 |
1 files changed, 26 insertions, 14 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/Chart.scss b/src/client/views/nodes/DataVizBox/components/Chart.scss index a6ce0b88c..c788a64c2 100644 --- a/src/client/views/nodes/DataVizBox/components/Chart.scss +++ b/src/client/views/nodes/DataVizBox/components/Chart.scss @@ -92,21 +92,33 @@ .tableBox { display: flex; flex-direction: column; + cursor: default; height: calc(100% - 40px); // bcz: hack 40px is the size of the button rows - .table { - height: 100%; - } -} -.table-container { - overflow: scroll; - margin: 5px; - margin-left: 25px; - margin-right: 10px; - margin-bottom: 0; - 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. - padding: 0 !important; - vertical-align: middle !important; + .tableBox-container { + overflow: scroll; + margin: 5px; + margin-left: 25px; + margin-right: 10px; + margin-bottom: 0; + .tableBox-table { + height: 100%; + width: 100%; + .tableBox-row { + cursor: pointer; + .tableBox-cell { + text-overflow: ellipsis; + width: 100%; + white-space: pre; + max-width: 150; + overflow: hidden; + } + } + } + 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. + padding: 0 !important; + vertical-align: middle !important; + } } } .selectAll-buttons { |
