@lingk/sync 0.0.96 → 0.0.97
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/lightningStyles.css +5 -8
- package/build/css/lingkStyles.css +1 -0
- package/build/css/main.css +31 -1
- package/build/lightning.js +1608 -120
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js +2 -2
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +63 -109
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js +2 -2
- package/build/lingkStyles.js.map +1 -1
- package/build/main.js +5257 -4930
- package/build/main.js.map +1 -1
- package/build/reducer.js +97 -78
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
|
@@ -98,33 +98,30 @@ ul li, ol li {
|
|
|
98
98
|
border: 1px solid #0070d2;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
|
|
102
|
-
height:100%;
|
|
103
|
-
font-weight: normal;
|
|
104
|
-
}
|
|
101
|
+
|
|
105
102
|
.extra-select-button-class > button{
|
|
106
103
|
font-size: 32px;
|
|
107
104
|
line-height: 12px;
|
|
108
105
|
font-weight: bold;
|
|
109
106
|
width:88px;
|
|
110
107
|
}
|
|
111
|
-
.
|
|
108
|
+
.select-dropdown-button{
|
|
112
109
|
font-weight:normal;
|
|
113
110
|
}
|
|
114
|
-
.
|
|
111
|
+
.select-dropdown-button > button{
|
|
115
112
|
max-width: 205px;
|
|
116
113
|
text-overflow: ellipsis;
|
|
117
114
|
white-space: nowrap;
|
|
118
115
|
overflow: hidden;
|
|
119
116
|
padding-right:30px;
|
|
120
117
|
}
|
|
121
|
-
.
|
|
118
|
+
.select-dropdown-button > button > svg{
|
|
122
119
|
float: right;
|
|
123
120
|
position: absolute;
|
|
124
121
|
right: 10px;
|
|
125
122
|
top: 9px;
|
|
126
123
|
}
|
|
127
|
-
.
|
|
124
|
+
.select-button-unselected > button{
|
|
128
125
|
font-weight: bold;
|
|
129
126
|
}
|
|
130
127
|
.map-table-transform-icon:hover > svg{
|
package/build/css/main.css
CHANGED
|
@@ -320,7 +320,7 @@ body{
|
|
|
320
320
|
background: transparent;
|
|
321
321
|
border:1px solid transparent;
|
|
322
322
|
font-weight: normal;
|
|
323
|
-
max-width:
|
|
323
|
+
max-width: 281px;
|
|
324
324
|
text-overflow: ellipsis;
|
|
325
325
|
white-space: nowrap !important;
|
|
326
326
|
overflow: hidden;
|
|
@@ -633,6 +633,24 @@ body{
|
|
|
633
633
|
overflow: hidden;
|
|
634
634
|
}
|
|
635
635
|
|
|
636
|
+
.fields-expander{
|
|
637
|
+
-webkit-transition: all 0.2s;
|
|
638
|
+
transition: all 0.2s;
|
|
639
|
+
overflow: hidden;
|
|
640
|
+
}
|
|
641
|
+
.expander-enter{
|
|
642
|
+
max-height:0px;
|
|
643
|
+
}
|
|
644
|
+
.expander-enter-active{
|
|
645
|
+
max-height: 1200px;
|
|
646
|
+
}
|
|
647
|
+
.expander-leave{
|
|
648
|
+
max-height: 1200px;
|
|
649
|
+
}
|
|
650
|
+
.expander-leave-active{
|
|
651
|
+
max-height: 0px;
|
|
652
|
+
}
|
|
653
|
+
|
|
636
654
|
.set-duplicate-rules{
|
|
637
655
|
float:right;
|
|
638
656
|
cursor: pointer;
|
|
@@ -651,6 +669,18 @@ body{
|
|
|
651
669
|
z-index: 9999 !important;
|
|
652
670
|
position:relative;
|
|
653
671
|
background:#f4f6f9 !important;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.expander-circle{
|
|
675
|
+
border: 1px solid grey;
|
|
676
|
+
border-radius: 50%;
|
|
677
|
+
width: 13px;
|
|
678
|
+
height: 13px;
|
|
679
|
+
display: inline-block;
|
|
680
|
+
line-height: 12px;
|
|
681
|
+
text-align: center;
|
|
682
|
+
color: grey;
|
|
683
|
+
margin-right:5px;
|
|
654
684
|
}.rc-time-picker {
|
|
655
685
|
display: inline-block;
|
|
656
686
|
box-sizing: border-box;
|