@lingk/sync 0.0.8 → 0.0.9
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 +50 -1
- package/build/css/lingk.css +50 -1
- package/build/lightning.js +4277 -59
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +4287 -69
- package/build/lingk.js.map +1 -1
- package/build/reducer.js +2 -2
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
- package/build/css/main.css +0 -49
- package/build/css/main.css.map +0 -1
- package/build/main.js +0 -4323
- package/build/main.js.map +0 -1
package/build/css/lightning.css
CHANGED
|
@@ -26,5 +26,54 @@ ul li, ol li {
|
|
|
26
26
|
background: #0070d2;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
body{
|
|
30
|
+
margin: 0;
|
|
31
|
+
padding: 0;
|
|
32
|
+
-webkit-font-smoothing: antialiased;
|
|
33
|
+
}
|
|
34
|
+
.wizard-body{
|
|
35
|
+
width:100%;
|
|
36
|
+
height: 100%;
|
|
37
|
+
}
|
|
38
|
+
.wizard-sidebar{
|
|
39
|
+
display: inline-block;
|
|
40
|
+
height: 100%;
|
|
41
|
+
}
|
|
42
|
+
.wizard-content{
|
|
43
|
+
vertical-align:top;
|
|
44
|
+
padding:31px 28px 31px 45px;
|
|
45
|
+
display:inline-block;
|
|
46
|
+
height: 100%;
|
|
47
|
+
overflow-y: scroll;
|
|
48
|
+
}
|
|
49
|
+
.wizard-schema-field {
|
|
50
|
+
cursor:pointer;
|
|
51
|
+
}
|
|
52
|
+
.wizard-schema-field:hover {
|
|
53
|
+
background: #dfe0e0 !important;
|
|
54
|
+
}
|
|
55
|
+
.accordion-panel{
|
|
56
|
+
line-height: 1.4;
|
|
57
|
+
border-radius: 7px;
|
|
58
|
+
overflow: hidden;
|
|
59
|
+
margin-bottom: 6px;
|
|
60
|
+
}
|
|
61
|
+
.accordion-panel-header{
|
|
62
|
+
color: white;
|
|
63
|
+
padding: 9px 13px;
|
|
64
|
+
font-weight: bold;
|
|
65
|
+
cursor:pointer;
|
|
66
|
+
-moz-user-select: none;
|
|
67
|
+
-webkit-user-select: none;
|
|
68
|
+
-ms-user-select: none;
|
|
69
|
+
user-select: none;
|
|
70
|
+
}
|
|
71
|
+
.accordion-panel-header:hover{
|
|
72
|
+
text-decoration: underline;
|
|
73
|
+
}
|
|
74
|
+
.accordion-panel-collapse{
|
|
75
|
+
transition: height 0.35s;
|
|
76
|
+
-webkit-transition: height 0.35s;
|
|
77
|
+
padding: 0 13px;
|
|
78
|
+
}
|
|
30
79
|
/*# sourceMappingURL=lightning.css.map*/
|
package/build/css/lingk.css
CHANGED
|
@@ -1,4 +1,53 @@
|
|
|
1
|
-
body
|
|
1
|
+
body{
|
|
2
|
+
margin: 0;
|
|
3
|
+
padding: 0;
|
|
4
|
+
-webkit-font-smoothing: antialiased;
|
|
5
|
+
}
|
|
6
|
+
.wizard-body{
|
|
7
|
+
width:100%;
|
|
8
|
+
height: 100%;
|
|
9
|
+
}
|
|
10
|
+
.wizard-sidebar{
|
|
11
|
+
display: inline-block;
|
|
12
|
+
height: 100%;
|
|
13
|
+
}
|
|
14
|
+
.wizard-content{
|
|
15
|
+
vertical-align:top;
|
|
16
|
+
padding:31px 28px 31px 45px;
|
|
17
|
+
display:inline-block;
|
|
18
|
+
height: 100%;
|
|
19
|
+
overflow-y: scroll;
|
|
20
|
+
}
|
|
21
|
+
.wizard-schema-field {
|
|
22
|
+
cursor:pointer;
|
|
23
|
+
}
|
|
24
|
+
.wizard-schema-field:hover {
|
|
25
|
+
background: #dfe0e0 !important;
|
|
26
|
+
}
|
|
27
|
+
.accordion-panel{
|
|
28
|
+
line-height: 1.4;
|
|
29
|
+
border-radius: 7px;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
margin-bottom: 6px;
|
|
32
|
+
}
|
|
33
|
+
.accordion-panel-header{
|
|
34
|
+
color: white;
|
|
35
|
+
padding: 9px 13px;
|
|
36
|
+
font-weight: bold;
|
|
37
|
+
cursor:pointer;
|
|
38
|
+
-moz-user-select: none;
|
|
39
|
+
-webkit-user-select: none;
|
|
40
|
+
-ms-user-select: none;
|
|
41
|
+
user-select: none;
|
|
42
|
+
}
|
|
43
|
+
.accordion-panel-header:hover{
|
|
44
|
+
text-decoration: underline;
|
|
45
|
+
}
|
|
46
|
+
.accordion-panel-collapse{
|
|
47
|
+
transition: height 0.35s;
|
|
48
|
+
-webkit-transition: height 0.35s;
|
|
49
|
+
padding: 0 13px;
|
|
50
|
+
}body {
|
|
2
51
|
margin: 0;
|
|
3
52
|
padding: 0;
|
|
4
53
|
}
|