@lingk/sync 0.1.74 → 0.1.75
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/lingkStyles.css +0 -6
- package/build/css/main.css +13 -6
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +3 -2
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/main.js +385 -241
- package/build/main.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
|
@@ -81,18 +81,12 @@ body, td {
|
|
|
81
81
|
.schema-panel:first-child{
|
|
82
82
|
border: 1px solid #337ab7;
|
|
83
83
|
}
|
|
84
|
-
.schema-panel-header{
|
|
85
|
-
background: #3a91dc;
|
|
86
|
-
}
|
|
87
84
|
.schema-panel-header .btn{
|
|
88
85
|
max-width:283px;
|
|
89
86
|
text-overflow: ellipsis;
|
|
90
87
|
white-space: nowrap;
|
|
91
88
|
overflow: hidden;
|
|
92
89
|
}
|
|
93
|
-
.schema-panel:first-child .schema-panel-header{
|
|
94
|
-
background: #337ab7;
|
|
95
|
-
}
|
|
96
90
|
.accordion-panel{
|
|
97
91
|
border: 1px solid #2e6da4;
|
|
98
92
|
}
|
package/build/css/main.css
CHANGED
|
@@ -48,16 +48,21 @@ body{
|
|
|
48
48
|
border-radius:4px;
|
|
49
49
|
position: relative;
|
|
50
50
|
z-index: 6;
|
|
51
|
-
margin-left:15px;
|
|
52
|
-
}
|
|
53
|
-
.schema-panel:first-child{
|
|
54
|
-
margin-left:0px;
|
|
55
51
|
}
|
|
52
|
+
|
|
56
53
|
.schema-panel-header{
|
|
57
54
|
padding: 9px 13px;
|
|
58
55
|
font-weight: bold;
|
|
59
56
|
height: 50px;
|
|
60
57
|
}
|
|
58
|
+
|
|
59
|
+
.schema-panel-resource-arrow svg {
|
|
60
|
+
fill: #cccccc;
|
|
61
|
+
cursor: pointer;
|
|
62
|
+
}
|
|
63
|
+
.schema-panel-resource-arrow svg:hover {
|
|
64
|
+
fill: black;
|
|
65
|
+
}
|
|
61
66
|
.accordion-panel{
|
|
62
67
|
line-height: 1.4;
|
|
63
68
|
border-radius: 7px;
|
|
@@ -773,14 +778,16 @@ body{
|
|
|
773
778
|
text-decoration: underline;
|
|
774
779
|
}
|
|
775
780
|
|
|
776
|
-
.react-draggable-dragging{
|
|
781
|
+
.react-draggable-dragging .schema-panel{
|
|
777
782
|
box-shadow: 2px 1px 4px 2px rgba(0,0,0,.3);
|
|
778
783
|
margin-left:6px;
|
|
779
784
|
z-index: 9999 !important;
|
|
780
785
|
position:relative;
|
|
781
786
|
background:#f4f6f9 !important;
|
|
782
787
|
}
|
|
783
|
-
|
|
788
|
+
.react-draggable-dragging .schema-panel-resource-arrow{
|
|
789
|
+
opacity: 0;
|
|
790
|
+
}
|
|
784
791
|
.expander-circle{
|
|
785
792
|
border: 1px solid grey;
|
|
786
793
|
border-radius: 50%;
|