canvasxpress-cli 58.3.1 → 58.5.2
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.
- package/package.json +1 -1
- package/src/canvasXpress.css +6 -5
- package/src/canvasXpress.js +3 -3
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -2297,11 +2297,12 @@ div.CanvasXpressTableCellLink {
|
|
|
2297
2297
|
box-sizing: border-box;
|
|
2298
2298
|
color: var(--cx-font-color);
|
|
2299
2299
|
margin: 2px 2px 1px 5px;
|
|
2300
|
-
overflow: hidden;
|
|
2300
|
+
/* overflow: hidden; */
|
|
2301
|
+
overflow-y: hidden;
|
|
2301
2302
|
position: relative;
|
|
2302
|
-
text-overflow: ellipsis;
|
|
2303
|
+
/* text-overflow: ellipsis; */
|
|
2303
2304
|
text-align: left;
|
|
2304
|
-
white-space: nowrap;
|
|
2305
|
+
/* white-space: nowrap; */
|
|
2305
2306
|
}
|
|
2306
2307
|
|
|
2307
2308
|
div.CanvasXpressTableCell:hover {
|
|
@@ -2320,11 +2321,11 @@ th.CanvasXpressTableCellHeadActive div.CanvasXpressTableCell {
|
|
|
2320
2321
|
}
|
|
2321
2322
|
|
|
2322
2323
|
th.CanvasXpressTableCellHead div.CanvasXpressTableCell {
|
|
2323
|
-
border: var(--cx-border-transparent);
|
|
2324
|
+
/* border: var(--cx-border-transparent); */
|
|
2324
2325
|
}
|
|
2325
2326
|
|
|
2326
2327
|
th.CanvasXpressTableCellHeadActive div.CanvasXpressTableCell {
|
|
2327
|
-
border: var(--cx-border)
|
|
2328
|
+
/* border: var(--cx-border) */
|
|
2328
2329
|
}
|
|
2329
2330
|
|
|
2330
2331
|
/***************/
|