cloud-business 0.1.103-1 → 0.1.103-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/cloud-business.css +23 -1
- package/cloud-business.js +2 -2
- package/cloud-business.min.css +1 -1
- package/cloud-business.min.js +1 -1
- package/package.json +1 -1
package/cloud-business.css
CHANGED
|
@@ -5422,6 +5422,7 @@ input::-webkit-search-cancel-button {
|
|
|
5422
5422
|
direction: rtl;
|
|
5423
5423
|
}
|
|
5424
5424
|
.newCloud-table-container {
|
|
5425
|
+
position: relative;
|
|
5425
5426
|
height: 100%;
|
|
5426
5427
|
display: flex;
|
|
5427
5428
|
flex-direction: column;
|
|
@@ -6104,6 +6105,10 @@ input::-webkit-search-cancel-button {
|
|
|
6104
6105
|
.newCloud-table-box.newCloud-table-full-column .newCloud-table-expend-icon {
|
|
6105
6106
|
display: none;
|
|
6106
6107
|
}
|
|
6108
|
+
.newCloud-table-box.newCloud-table-config-column tr td:last-child,
|
|
6109
|
+
.newCloud-table-box.newCloud-table-config-column tr th:last-child {
|
|
6110
|
+
padding-right: 40px;
|
|
6111
|
+
}
|
|
6107
6112
|
.newCloud-table-box.newCloud-table-loading {
|
|
6108
6113
|
position: relative;
|
|
6109
6114
|
}
|
|
@@ -6160,7 +6165,8 @@ input::-webkit-search-cancel-button {
|
|
|
6160
6165
|
}
|
|
6161
6166
|
.newCloud-table-tooltip {
|
|
6162
6167
|
min-width: 236px;
|
|
6163
|
-
max-height:
|
|
6168
|
+
max-height: 300px;
|
|
6169
|
+
overflow: auto;
|
|
6164
6170
|
padding: 16px;
|
|
6165
6171
|
}
|
|
6166
6172
|
.newCloud-table-tooltip-content {
|
|
@@ -6177,9 +6183,25 @@ input::-webkit-search-cancel-button {
|
|
|
6177
6183
|
.newCloud-table-tooltip-content > li .newCloud-checkbox-text {
|
|
6178
6184
|
font-size: 14px;
|
|
6179
6185
|
}
|
|
6186
|
+
.newCloud-table-tooltip-content .config-title {
|
|
6187
|
+
color: #666666;
|
|
6188
|
+
}
|
|
6180
6189
|
.newCloud-table-tooltip::after {
|
|
6181
6190
|
display: none;
|
|
6182
6191
|
}
|
|
6192
|
+
.newCloud-table-config-icon {
|
|
6193
|
+
position: absolute;
|
|
6194
|
+
right: 0;
|
|
6195
|
+
z-index: 1;
|
|
6196
|
+
top: 2px;
|
|
6197
|
+
width: 40px;
|
|
6198
|
+
height: 40px;
|
|
6199
|
+
line-height: 40px;
|
|
6200
|
+
cursor: pointer;
|
|
6201
|
+
text-align: center;
|
|
6202
|
+
color: rgba(0, 0, 0, 0.45);
|
|
6203
|
+
background: #fafafa;
|
|
6204
|
+
}
|
|
6183
6205
|
.newCloud-table-drag-line {
|
|
6184
6206
|
border: 1px solid var(--shuyunBlue4) !important;
|
|
6185
6207
|
}
|