canvasxpress-cli 58.6.5 → 58.8.1
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 +49 -4
- package/src/canvasXpress.js +3 -3
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -2097,6 +2097,52 @@ tr.CanvasXpressDataTableDOE {
|
|
|
2097
2097
|
font-size: var(--cx-font-size) !important;
|
|
2098
2098
|
}
|
|
2099
2099
|
|
|
2100
|
+
/****************/
|
|
2101
|
+
/* Grid */
|
|
2102
|
+
/****************/
|
|
2103
|
+
|
|
2104
|
+
div.cX-Grid {
|
|
2105
|
+
border: var(--cx-border);
|
|
2106
|
+
border-radius: 5px;
|
|
2107
|
+
display: flex;
|
|
2108
|
+
flex-direction: column;
|
|
2109
|
+
height: 100%;
|
|
2110
|
+
overflow: hidden;
|
|
2111
|
+
position: relative;
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
div.cX-Grid-Banner {
|
|
2115
|
+
display: flex;
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
div.cX-Grid-Root {
|
|
2119
|
+
display: flex;
|
|
2120
|
+
flex: 1 1 auto;
|
|
2121
|
+
flex-direction: row;
|
|
2122
|
+
height: 0;
|
|
2123
|
+
min-height: 0;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
div.cX-Grid-Status {
|
|
2127
|
+
border-top: var(--cx-border);
|
|
2128
|
+
display: flex;
|
|
2129
|
+
justify-content: space-between;
|
|
2130
|
+
line-height: 1.5;
|
|
2131
|
+
overflow: hidden;
|
|
2132
|
+
padding-left: 32px;
|
|
2133
|
+
padding-right: 32px;
|
|
2134
|
+
}
|
|
2135
|
+
|
|
2136
|
+
div.cX-Grid-Pagination {
|
|
2137
|
+
align-items: center;
|
|
2138
|
+
border-top: var(--cx-border);
|
|
2139
|
+
display: flex;
|
|
2140
|
+
gap: 32px;
|
|
2141
|
+
height: 42px;
|
|
2142
|
+
justify-content: flex-end;
|
|
2143
|
+
padding: 0 16px;
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2100
2146
|
/****************/
|
|
2101
2147
|
/* Data Table */
|
|
2102
2148
|
/****************/
|
|
@@ -2297,12 +2343,11 @@ div.CanvasXpressTableCellLink {
|
|
|
2297
2343
|
box-sizing: border-box;
|
|
2298
2344
|
color: var(--cx-font-color);
|
|
2299
2345
|
margin: 2px 2px 1px 5px;
|
|
2300
|
-
|
|
2301
|
-
overflow-y: clip;
|
|
2346
|
+
overflow: hidden;
|
|
2302
2347
|
position: relative;
|
|
2303
|
-
/* text-overflow: ellipsis; */
|
|
2304
2348
|
text-align: left;
|
|
2305
|
-
|
|
2349
|
+
white-space: pre-wrap;
|
|
2350
|
+
word-break: break-word;
|
|
2306
2351
|
}
|
|
2307
2352
|
|
|
2308
2353
|
div.CanvasXpressTableCell:hover {
|