@lingk/sync 0.0.82 → 0.0.83
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/build/css/lightning.css +1 -1
- package/build/css/lingk.css +20 -1
- package/build/css/main.css +21 -5
- package/build/lightning.js +1982 -119
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +72 -74
- package/build/lingk.js.map +1 -1
- package/build/main.js +21918 -21899
- package/build/main.js.map +1 -1
- package/build/reducer.js +19 -4
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/css/lightning.css
CHANGED
package/build/css/lingk.css
CHANGED
|
@@ -102,7 +102,7 @@ body, td {
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
.rf-select{
|
|
105
|
-
max-width:
|
|
105
|
+
max-width: 205px;
|
|
106
106
|
text-overflow: ellipsis;
|
|
107
107
|
white-space: nowrap;
|
|
108
108
|
overflow: hidden;
|
|
@@ -110,6 +110,11 @@ body, td {
|
|
|
110
110
|
font-weight:normal;
|
|
111
111
|
cursor: pointer;
|
|
112
112
|
}
|
|
113
|
+
.rf-select .caret{
|
|
114
|
+
position: absolute;
|
|
115
|
+
right: 14px;
|
|
116
|
+
top: 15px;
|
|
117
|
+
}
|
|
113
118
|
.rf-select-unselected{
|
|
114
119
|
font-weight: bold;
|
|
115
120
|
}
|
|
@@ -136,4 +141,18 @@ body, td {
|
|
|
136
141
|
-ms-transform:scale(1.2, 1.2);
|
|
137
142
|
transform:scale(1.2, 1.2);
|
|
138
143
|
}
|
|
144
|
+
.lingk-dropdown-menu-wrapper .dropdown-menu{
|
|
145
|
+
max-height: 273px;
|
|
146
|
+
overflow-y: scroll;
|
|
147
|
+
margin-bottom: 5px;
|
|
148
|
+
box-shadow: rgba(0, 0, 0, 0.36) 0px 2px 3px 0px;
|
|
149
|
+
z-index: 6001;
|
|
150
|
+
min-width: 260px;
|
|
151
|
+
margin-top: 4px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
139
158
|
/*# sourceMappingURL=lingk.css.map*/
|
package/build/css/main.css
CHANGED
|
@@ -154,10 +154,13 @@ body{
|
|
|
154
154
|
border-bottom: 1px solid rgb(204, 205, 207);
|
|
155
155
|
border-top: 1px solid rgb(204, 205, 207);
|
|
156
156
|
margin-top:-1px;
|
|
157
|
-
padding: 8px 16px
|
|
157
|
+
padding: 8px 16px 3px 16px;
|
|
158
|
+
cursor: pointer;
|
|
159
|
+
height:50px;
|
|
158
160
|
}
|
|
159
161
|
.bundle-table-row:hover{
|
|
160
|
-
background:#f4f6f9;
|
|
162
|
+
background:#f4f6f9 !important;
|
|
163
|
+
|
|
161
164
|
}
|
|
162
165
|
.bundle-table-row:hover:before{
|
|
163
166
|
border-top: 5px solid rgb(204, 205, 207);
|
|
@@ -214,7 +217,7 @@ body{
|
|
|
214
217
|
left:120px;
|
|
215
218
|
font-size:20px;
|
|
216
219
|
height: 32px;
|
|
217
|
-
width:
|
|
220
|
+
width:600px;
|
|
218
221
|
overflow: hidden;
|
|
219
222
|
}
|
|
220
223
|
.schema-groups-slider{
|
|
@@ -222,7 +225,7 @@ body{
|
|
|
222
225
|
transition: all 0.3s;
|
|
223
226
|
}
|
|
224
227
|
.schema-group-name{
|
|
225
|
-
width:
|
|
228
|
+
width:600px;
|
|
226
229
|
display: inline-block;
|
|
227
230
|
overflow: hidden;
|
|
228
231
|
white-space: nowrap;
|
|
@@ -269,6 +272,7 @@ body{
|
|
|
269
272
|
display: inline-block;
|
|
270
273
|
vertical-align: top;
|
|
271
274
|
float:right;
|
|
275
|
+
margin-top:1px;
|
|
272
276
|
}
|
|
273
277
|
.connect-resource-group{
|
|
274
278
|
width: 33px;
|
|
@@ -294,7 +298,7 @@ body{
|
|
|
294
298
|
fill:white;
|
|
295
299
|
}
|
|
296
300
|
.remove-resource-group:hover{
|
|
297
|
-
background: #
|
|
301
|
+
background: #c23934;
|
|
298
302
|
}
|
|
299
303
|
.remove-resource-group:hover > svg > path{
|
|
300
304
|
stroke:white;
|
|
@@ -303,6 +307,17 @@ body{
|
|
|
303
307
|
background: transparent;
|
|
304
308
|
border:1px solid transparent;
|
|
305
309
|
font-weight: normal;
|
|
310
|
+
max-width: 283px;
|
|
311
|
+
text-overflow: ellipsis;
|
|
312
|
+
white-space: nowrap;
|
|
313
|
+
overflow: hidden;
|
|
314
|
+
padding-right:24px;
|
|
315
|
+
position: relative;
|
|
316
|
+
}
|
|
317
|
+
.join-ok svg{
|
|
318
|
+
position: absolute;
|
|
319
|
+
right:6px;
|
|
320
|
+
top:9px;
|
|
306
321
|
}
|
|
307
322
|
.transform-data-type{
|
|
308
323
|
display: inline-block;
|
|
@@ -610,6 +625,7 @@ body{
|
|
|
610
625
|
margin-left:6px;
|
|
611
626
|
z-index: 9999 !important;
|
|
612
627
|
position:relative;
|
|
628
|
+
background:#f4f6f9 !important;
|
|
613
629
|
}.rc-time-picker {
|
|
614
630
|
display: inline-block;
|
|
615
631
|
box-sizing: border-box;
|