ls-pro-common 1.0.49 → 1.0.53

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 CHANGED
@@ -132,6 +132,12 @@ body {
132
132
  border-color: var(--ant-error-color);
133
133
  background: #fff;
134
134
  }
135
+ a {
136
+ color: var(--ant-primary-color);
137
+ }
138
+ a:hover {
139
+ color: var(--ant-primary-5);
140
+ }
135
141
 
136
142
  .pro-table-tooltip-text span {
137
143
  color: #fff;
@@ -230,6 +236,24 @@ body {
230
236
  .ant-pro-table .ant-table-thead tr th {
231
237
  background-color: #f5f9ff;
232
238
  }
239
+ .ant-pro-table .react-resizable {
240
+ position: relative;
241
+ }
242
+ .ant-pro-table .react-resizable::before {
243
+ height: 0 !important;
244
+ width: 0 !important;
245
+ }
246
+ .ant-pro-table .react-resizable-handle {
247
+ cursor: col-resize;
248
+ border-left: solid 1px rgba(0, 0, 0, 0.12);
249
+ height: 1.6em;
250
+ position: absolute;
251
+ right: 0px;
252
+ top: 50%;
253
+ transform: translateY(-50%);
254
+ transition: background-color 0.3s;
255
+ width: 3px;
256
+ }
233
257
  .theme-yellow .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
234
258
  background-color: #fcfaf7;
235
259
  }
@@ -2086,6 +2110,24 @@ html {
2086
2110
  .ant-pro-table .ant-table-thead tr th {
2087
2111
  background-color: #f5f9ff;
2088
2112
  }
2113
+ .ant-pro-table .react-resizable {
2114
+ position: relative;
2115
+ }
2116
+ .ant-pro-table .react-resizable::before {
2117
+ height: 0 !important;
2118
+ width: 0 !important;
2119
+ }
2120
+ .ant-pro-table .react-resizable-handle {
2121
+ cursor: col-resize;
2122
+ border-left: solid 1px rgba(0, 0, 0, 0.12);
2123
+ height: 1.6em;
2124
+ position: absolute;
2125
+ right: 0px;
2126
+ top: 50%;
2127
+ transform: translateY(-50%);
2128
+ transition: background-color 0.3s;
2129
+ width: 3px;
2130
+ }
2089
2131
  .theme-yellow .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
2090
2132
  background-color: #fcfaf7;
2091
2133
  }
@@ -2421,11 +2463,3 @@ html {
2421
2463
  margin: 10px 50px !important;
2422
2464
  }
2423
2465
 
2424
- a {
2425
- color: var(--ant-primary-color);
2426
- }
2427
-
2428
- a:hover {
2429
- color: var(--ant-primary-5);
2430
- }
2431
-