jupyterlab_tabular_data_viewer_extension 1.2.20 → 1.2.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/style/base.css +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_tabular_data_viewer_extension",
3
- "version": "1.2.20",
3
+ "version": "1.2.26",
4
4
  "description": "Jupyterlab extension to browse tabular data files (Parquet, Excel, CSV, TSV) with filtering and sorting capabilities",
5
5
  "keywords": [
6
6
  "jupyter",
package/style/base.css CHANGED
@@ -178,6 +178,12 @@
178
178
  min-width: 60px;
179
179
  max-width: 60px;
180
180
  width: 60px;
181
+ border-right: 1px solid var(--jp-border-color0) !important;
182
+ }
183
+
184
+ /* Horizontal borders only in data rows, not in header */
185
+ .jp-TabularDataViewer-tbody .jp-TabularDataViewer-rowNumberCell {
186
+ border-bottom: 1px solid var(--jp-border-color0) !important;
181
187
  }
182
188
 
183
189
  .jp-TabularDataViewer-cell:last-child {