@lingk/sync 0.0.40 → 0.0.42
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 +5 -0
- package/build/css/main.css +22 -22
- package/build/lightning.js +206 -491
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +5 -5
- package/build/lingk.js.map +1 -1
- package/build/main.js +608 -164
- package/build/main.js.map +1 -1
- package/build/reducer.js +26 -6
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/css/lightning.css
CHANGED
package/build/css/main.css
CHANGED
|
@@ -44,7 +44,7 @@ body{
|
|
|
44
44
|
height: 50px;
|
|
45
45
|
border-radius:4px;
|
|
46
46
|
position: relative;
|
|
47
|
-
z-index:
|
|
47
|
+
z-index: 6;
|
|
48
48
|
}
|
|
49
49
|
.accordion-panel{
|
|
50
50
|
line-height: 1.4;
|
|
@@ -169,12 +169,6 @@ body{
|
|
|
169
169
|
.schema-external-key:hover + .schema-checkbox{
|
|
170
170
|
font-weight: bold;
|
|
171
171
|
}
|
|
172
|
-
.schema-group-nav{
|
|
173
|
-
position: relative;
|
|
174
|
-
height: 60px;
|
|
175
|
-
width:350px;
|
|
176
|
-
margin:0px auto -12px auto;
|
|
177
|
-
}
|
|
178
172
|
.schema-group-arrow{
|
|
179
173
|
fill:#555555;
|
|
180
174
|
cursor:pointer;
|
|
@@ -186,24 +180,24 @@ body{
|
|
|
186
180
|
}
|
|
187
181
|
.schema-group-arrow-back{
|
|
188
182
|
position: absolute;
|
|
189
|
-
left:
|
|
190
|
-
top:
|
|
183
|
+
left:8px;
|
|
184
|
+
top:2px;
|
|
191
185
|
-webkit-transform:rotate(180deg);
|
|
192
186
|
-ms-transform:rotate(180deg);
|
|
193
187
|
transform:rotate(180deg);
|
|
194
188
|
}
|
|
195
189
|
.schema-group-arrow-forward{
|
|
196
190
|
position: absolute;
|
|
197
|
-
|
|
198
|
-
top:
|
|
191
|
+
left:55px;
|
|
192
|
+
top:2px;
|
|
199
193
|
}
|
|
200
194
|
.schema-groups{
|
|
201
195
|
position: absolute;
|
|
202
|
-
top:
|
|
203
|
-
left:
|
|
204
|
-
font-size:
|
|
205
|
-
|
|
206
|
-
width:
|
|
196
|
+
top:18px;
|
|
197
|
+
left:120px;
|
|
198
|
+
font-size:20px;
|
|
199
|
+
height: 32px;
|
|
200
|
+
width:340px;
|
|
207
201
|
overflow: hidden;
|
|
208
202
|
}
|
|
209
203
|
.schema-groups-slider{
|
|
@@ -211,13 +205,19 @@ body{
|
|
|
211
205
|
transition: all 0.3s;
|
|
212
206
|
}
|
|
213
207
|
.schema-group-name{
|
|
214
|
-
width:
|
|
208
|
+
width:340px;
|
|
215
209
|
display: inline-block;
|
|
210
|
+
overflow: hidden;
|
|
211
|
+
white-space: nowrap;
|
|
212
|
+
text-overflow: ellipsis;
|
|
213
|
+
-webkit-user-select:none;
|
|
214
|
+
-moz-user-select:none;
|
|
215
|
+
-ms-user-select:none;
|
|
216
|
+
user-select:none;
|
|
216
217
|
}
|
|
217
218
|
.schema-group-dots{
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
margin:26px auto 0px auto;
|
|
219
|
+
width: 72%;
|
|
220
|
+
margin: 28px 0px 0px 120px;
|
|
221
221
|
}
|
|
222
222
|
.schema-group-dot{
|
|
223
223
|
width:6px;
|
|
@@ -237,7 +237,7 @@ body{
|
|
|
237
237
|
.accordion-group{
|
|
238
238
|
overflow-y: visible;
|
|
239
239
|
display: inline-block;
|
|
240
|
-
padding:12px;
|
|
240
|
+
padding:6px 12px;
|
|
241
241
|
position: absolute;
|
|
242
242
|
width: 100%;
|
|
243
243
|
}
|
|
@@ -279,7 +279,7 @@ body{
|
|
|
279
279
|
border: 1px solid black;
|
|
280
280
|
}
|
|
281
281
|
.scrolly-wrap{
|
|
282
|
-
padding:
|
|
282
|
+
padding:0px 2px 2px 0px;
|
|
283
283
|
overflow-x: hidden;
|
|
284
284
|
}
|
|
285
285
|
.scrolly{
|