ls-pro-common 1.0.45 → 1.0.48
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/dist/common.css +45 -0
- package/dist/common.js +1 -1
- package/dist/common.min.css +45 -0
- package/dist/common.min.js +1 -1
- package/es/components/common.less +6 -0
- package/es/http/index.js +5 -0
- package/lib/components/common.less +6 -0
- package/lib/http/index.js +5 -0
- package/package.json +2 -2
package/dist/common.css
CHANGED
|
@@ -127,6 +127,11 @@ body {
|
|
|
127
127
|
.ant-btn-primary {
|
|
128
128
|
color: #fff;
|
|
129
129
|
}
|
|
130
|
+
.ant-btn-dangerous {
|
|
131
|
+
color: var(--ant-error-color);
|
|
132
|
+
border-color: var(--ant-error-color);
|
|
133
|
+
background: #fff;
|
|
134
|
+
}
|
|
130
135
|
|
|
131
136
|
.pro-table-tooltip-text span {
|
|
132
137
|
color: #fff;
|
|
@@ -215,6 +220,26 @@ body {
|
|
|
215
220
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
216
221
|
border-bottom: none;
|
|
217
222
|
}
|
|
223
|
+
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
224
|
+
background-color: #f7fafc;
|
|
225
|
+
}
|
|
226
|
+
.ant-pro-table .ant-table-cell-row-hover,
|
|
227
|
+
.ant-pro-table .ant-table-row-selected td {
|
|
228
|
+
background-color: #E6F5FF;
|
|
229
|
+
}
|
|
230
|
+
.ant-pro-table .ant-table-thead tr th {
|
|
231
|
+
background-color: #f5f9ff;
|
|
232
|
+
}
|
|
233
|
+
.theme-yellow .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
234
|
+
background-color: #fcfaf7;
|
|
235
|
+
}
|
|
236
|
+
.theme-yellow .ant-pro-table .ant-table-cell-row-hover,
|
|
237
|
+
.theme-yellow .ant-pro-table .ant-table-row-selected td {
|
|
238
|
+
background-color: #ffedd9;
|
|
239
|
+
}
|
|
240
|
+
.theme-yellow .ant-pro-table .ant-table-thead tr th {
|
|
241
|
+
background-color: #fffaf5;
|
|
242
|
+
}
|
|
218
243
|
@keyframes turn {
|
|
219
244
|
0% {
|
|
220
245
|
transform: rotate(0deg);
|
|
@@ -2051,6 +2076,26 @@ html {
|
|
|
2051
2076
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
2052
2077
|
border-bottom: none;
|
|
2053
2078
|
}
|
|
2079
|
+
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
2080
|
+
background-color: #f7fafc;
|
|
2081
|
+
}
|
|
2082
|
+
.ant-pro-table .ant-table-cell-row-hover,
|
|
2083
|
+
.ant-pro-table .ant-table-row-selected td {
|
|
2084
|
+
background-color: #E6F5FF;
|
|
2085
|
+
}
|
|
2086
|
+
.ant-pro-table .ant-table-thead tr th {
|
|
2087
|
+
background-color: #f5f9ff;
|
|
2088
|
+
}
|
|
2089
|
+
.theme-yellow .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
2090
|
+
background-color: #fcfaf7;
|
|
2091
|
+
}
|
|
2092
|
+
.theme-yellow .ant-pro-table .ant-table-cell-row-hover,
|
|
2093
|
+
.theme-yellow .ant-pro-table .ant-table-row-selected td {
|
|
2094
|
+
background-color: #ffedd9;
|
|
2095
|
+
}
|
|
2096
|
+
.theme-yellow .ant-pro-table .ant-table-thead tr th {
|
|
2097
|
+
background-color: #fffaf5;
|
|
2098
|
+
}
|
|
2054
2099
|
@keyframes turn {
|
|
2055
2100
|
0% {
|
|
2056
2101
|
transform: rotate(0deg);
|