@lingk/sync 0.0.8 → 0.0.10

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/README.md CHANGED
@@ -3,14 +3,13 @@
3
3
  Serves a dev version from /src/lib
4
4
 
5
5
  **npm run build**
6
- Builds the entire /lib directory into /build and transpiles to ES5. Files:
6
+ Builds the entire /lib directory into /build and transpiles to ES5.
7
+ Build all themes simultaneously. Theme files include all shared js and css.
7
8
 
8
- - main.js (import WizardFormLoader from here)
9
9
  - reducer.js (import wizardReducer from here)
10
10
  - lingk.js
11
11
  - lightning.js
12
12
  - /css
13
- - main.css (shared)
14
13
  - lingk.css
15
14
  - lighning.css
16
15
 
@@ -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*/
@@ -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
  }