@hpcc-js/other 3.4.11 → 3.5.0
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/package.json +5 -5
- package/src/AutoCompleteText.css +32 -5
- package/src/CalendarHeatMap.css +1 -1
- package/src/Html.css +5 -5
- package/src/IconList.css +1 -1
- package/src/Legend.css +55 -36
- package/src/MorphText.css +1 -1
- package/src/Opportunity.css +30 -29
- package/src/Paginator.css +48 -37
- package/src/PropertyEditor.css +122 -73
- package/src/RadioCheckbox.css +1 -2
- package/src/Select.css +4 -5
- package/src/Table.css +44 -29
- package/src/ThemeEditor.css +140 -105
package/src/ThemeEditor.css
CHANGED
|
@@ -1,194 +1,229 @@
|
|
|
1
|
-
.other_ThemeEditor *{
|
|
2
|
-
box-sizing:border-box;
|
|
1
|
+
.other_ThemeEditor * {
|
|
2
|
+
box-sizing: border-box;
|
|
3
3
|
}
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
|
|
5
|
+
.other_ThemeEditor table {
|
|
6
|
+
width: 100%;
|
|
7
|
+
margin-bottom: 4px;
|
|
7
8
|
}
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
.other_ThemeEditor table:last-child {
|
|
11
|
+
margin-bottom: 0px;
|
|
10
12
|
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
|
|
14
|
+
.other_ThemeEditor thead>tr>th {
|
|
15
|
+
text-align: left;
|
|
13
16
|
}
|
|
14
|
-
|
|
15
|
-
|
|
17
|
+
|
|
18
|
+
.other_ThemeEditor thead>tr>th>b {
|
|
19
|
+
font-weight: bold;
|
|
16
20
|
}
|
|
17
|
-
|
|
18
|
-
|
|
21
|
+
|
|
22
|
+
.other_ThemeEditor thead>tr>th {
|
|
23
|
+
background-color: #FAFAFA;
|
|
19
24
|
}
|
|
20
|
-
|
|
21
|
-
.other_ThemeEditor tbody
|
|
22
|
-
|
|
23
|
-
|
|
25
|
+
|
|
26
|
+
.other_ThemeEditor tbody>tr>th,
|
|
27
|
+
.other_ThemeEditor tbody>tr>td {
|
|
28
|
+
font-weight: normal;
|
|
29
|
+
background-color: #FAFAFA;
|
|
24
30
|
}
|
|
25
|
-
|
|
26
|
-
|
|
31
|
+
|
|
32
|
+
.other_ThemeEditor thead>tr:first-child>th {
|
|
33
|
+
background-color: #E5E5E5;
|
|
27
34
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
35
|
+
|
|
36
|
+
.other_ThemeEditor thead>tr.mm-content>th {
|
|
37
|
+
padding: 0 4px;
|
|
38
|
+
font-size: 12px;
|
|
31
39
|
}
|
|
40
|
+
|
|
32
41
|
.other_ThemeEditor th,
|
|
33
|
-
.other_ThemeEditor td{
|
|
34
|
-
padding:4px;
|
|
42
|
+
.other_ThemeEditor td {
|
|
43
|
+
padding: 4px;
|
|
35
44
|
white-space: nowrap;
|
|
36
45
|
}
|
|
37
|
-
|
|
38
|
-
|
|
46
|
+
|
|
47
|
+
.other_ThemeEditor thead.mm-label>tr:first-child>th {
|
|
48
|
+
position: relative;
|
|
39
49
|
padding-left: 29px;
|
|
40
50
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
51
|
+
|
|
52
|
+
.other_ThemeEditor thead.mm-label>tr:first-child>th::before {
|
|
53
|
+
content: "[+]";
|
|
54
|
+
position: absolute;
|
|
44
55
|
left: 3px;
|
|
45
56
|
top: 3px;
|
|
46
57
|
color: #404040;
|
|
47
|
-
height:15px;
|
|
48
|
-
width:15px;
|
|
49
|
-
font-family:monospace;
|
|
58
|
+
height: 15px;
|
|
59
|
+
width: 15px;
|
|
60
|
+
font-family: monospace;
|
|
50
61
|
}
|
|
51
|
-
|
|
52
|
-
|
|
62
|
+
|
|
63
|
+
.other_ThemeEditor thead.mm-label.max>tr:first-child>th::before {
|
|
64
|
+
content: "[-]";
|
|
53
65
|
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
66
|
+
|
|
67
|
+
.other_ThemeEditor tr.sharedPropertyRow>td.label::after {
|
|
68
|
+
content: "[+]";
|
|
69
|
+
position: absolute;
|
|
57
70
|
right: 10px;
|
|
58
71
|
top: 3px;
|
|
59
72
|
color: #404040;
|
|
60
|
-
height:15px;
|
|
61
|
-
width:15px;
|
|
62
|
-
font-family:monospace;
|
|
73
|
+
height: 15px;
|
|
74
|
+
width: 15px;
|
|
75
|
+
font-family: monospace;
|
|
63
76
|
}
|
|
64
|
-
|
|
65
|
-
|
|
77
|
+
|
|
78
|
+
.other_ThemeEditor tr.sharedPropertyRow>td.label.expanded::after {
|
|
79
|
+
content: "[-]";
|
|
66
80
|
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
81
|
+
|
|
82
|
+
.other_ThemeEditor tr.sharedPropertyRow>td.label {
|
|
83
|
+
position: relative;
|
|
84
|
+
padding-right: 30px;
|
|
85
|
+
text-decoration: underline;
|
|
71
86
|
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
87
|
+
|
|
88
|
+
.other_ThemeEditor tr.sharedPropertyRow>td.label:hover {
|
|
89
|
+
text-decoration: none;
|
|
90
|
+
cursor: pointer;
|
|
75
91
|
}
|
|
76
|
-
|
|
77
|
-
.other_ThemeEditor tr.propertyRow
|
|
78
|
-
|
|
92
|
+
|
|
93
|
+
.other_ThemeEditor tr.propertyRow>th,
|
|
94
|
+
.other_ThemeEditor tr.propertyRow>td {
|
|
95
|
+
background-color: #F4F4F4;
|
|
79
96
|
}
|
|
80
|
-
|
|
97
|
+
|
|
98
|
+
.other_ThemeEditor tr.propertyRow>td.label {
|
|
81
99
|
padding-left: 24px;
|
|
82
100
|
}
|
|
83
101
|
|
|
84
102
|
.other_ThemeEditor table,
|
|
85
103
|
.other_ThemeEditor th,
|
|
86
|
-
.other_ThemeEditor td{
|
|
87
|
-
border:1px solid #e5e5e5;
|
|
104
|
+
.other_ThemeEditor td {
|
|
105
|
+
border: 1px solid #e5e5e5;
|
|
88
106
|
}
|
|
107
|
+
|
|
89
108
|
.other_ThemeEditor .mm-label.min .mm-content,
|
|
90
|
-
.other_ThemeEditor .mm-label.min
|
|
91
|
-
display:none;
|
|
109
|
+
.other_ThemeEditor .mm-label.min+.mm-content {
|
|
110
|
+
display: none;
|
|
92
111
|
}
|
|
112
|
+
|
|
93
113
|
.mm-label:hover {
|
|
94
|
-
cursor:pointer;
|
|
114
|
+
cursor: pointer;
|
|
95
115
|
}
|
|
96
116
|
|
|
97
|
-
.other_ThemeEditor .sharedPropertyRow
|
|
98
|
-
cursor:pointer;
|
|
117
|
+
.other_ThemeEditor .sharedPropertyRow>.te-label {
|
|
118
|
+
cursor: pointer;
|
|
99
119
|
}
|
|
100
|
-
|
|
101
|
-
|
|
120
|
+
|
|
121
|
+
.other_ThemeEditor .sharedPropertyRow>.te-label:hover {
|
|
122
|
+
text-decoration: none;
|
|
102
123
|
}
|
|
103
124
|
|
|
104
|
-
.other_ThemeEditor .propertyRow.shown
|
|
105
|
-
padding-left:15px;
|
|
125
|
+
.other_ThemeEditor .propertyRow.shown>.te-label {
|
|
126
|
+
padding-left: 15px;
|
|
106
127
|
}
|
|
107
|
-
|
|
108
|
-
|
|
128
|
+
|
|
129
|
+
.other_ThemeEditor .propertyRow>td {
|
|
130
|
+
background-color: #F4F4F4;
|
|
109
131
|
}
|
|
110
132
|
|
|
111
|
-
.other_ThemeEditor [class*=" te-"]{
|
|
133
|
+
.other_ThemeEditor [class*=" te-"] {
|
|
112
134
|
/*float:left;*/
|
|
113
135
|
}
|
|
136
|
+
|
|
114
137
|
.other_ThemeEditor input,
|
|
115
138
|
.other_ThemeEditor textarea,
|
|
116
|
-
.other_ThemeEditor select{
|
|
117
|
-
height:30px;
|
|
118
|
-
float:left;
|
|
139
|
+
.other_ThemeEditor select {
|
|
140
|
+
height: 30px;
|
|
141
|
+
float: left;
|
|
119
142
|
}
|
|
143
|
+
|
|
120
144
|
.other_ThemeEditor input,
|
|
121
|
-
.other_ThemeEditor select{
|
|
122
|
-
width:150px;
|
|
145
|
+
.other_ThemeEditor select {
|
|
146
|
+
width: 150px;
|
|
123
147
|
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
148
|
+
|
|
149
|
+
.other_ThemeEditor .te-checkbox {
|
|
150
|
+
width: 20px;
|
|
151
|
+
height: 20px;
|
|
152
|
+
margin: 0;
|
|
128
153
|
}
|
|
129
154
|
|
|
130
|
-
.other_ThemeEditor .te-html-color-input{
|
|
131
|
-
height:30px;
|
|
132
|
-
width:120px;
|
|
155
|
+
.other_ThemeEditor .te-html-color-input {
|
|
156
|
+
height: 30px;
|
|
157
|
+
width: 120px;
|
|
133
158
|
}
|
|
134
159
|
|
|
135
|
-
.other_ThemeEditor .te-html-color-button{
|
|
136
|
-
width:30px;
|
|
160
|
+
.other_ThemeEditor .te-html-color-button {
|
|
161
|
+
width: 30px;
|
|
137
162
|
}
|
|
163
|
+
|
|
138
164
|
.other_ThemeEditor button,
|
|
139
|
-
.other_ThemeEditor .te-html-color-button{
|
|
140
|
-
background-color
|
|
141
|
-
border:1px solid #A9A9A9;
|
|
142
|
-
border-left:0;
|
|
143
|
-
height:30px;
|
|
144
|
-
float:left;
|
|
145
|
-
padding:4px;
|
|
165
|
+
.other_ThemeEditor .te-html-color-button {
|
|
166
|
+
background-color: #CCC;
|
|
167
|
+
border: 1px solid #A9A9A9;
|
|
168
|
+
border-left: 0;
|
|
169
|
+
height: 30px;
|
|
170
|
+
float: left;
|
|
171
|
+
padding: 4px;
|
|
146
172
|
}
|
|
173
|
+
|
|
147
174
|
.other_ThemeEditor button,
|
|
148
175
|
.other_ThemeEditor .te-html-color-button,
|
|
149
|
-
.other_ThemeEditor .te-section-table thead{
|
|
150
|
-
cursor:pointer;
|
|
176
|
+
.other_ThemeEditor .te-section-table thead {
|
|
177
|
+
cursor: pointer;
|
|
151
178
|
}
|
|
179
|
+
|
|
152
180
|
.other_ThemeEditor button:hover,
|
|
153
|
-
.other_ThemeEditor .te-html-color-button:hover{
|
|
154
|
-
background-color
|
|
181
|
+
.other_ThemeEditor .te-html-color-button:hover {
|
|
182
|
+
background-color: #BBB;
|
|
155
183
|
}
|
|
184
|
+
|
|
156
185
|
.other_ThemeEditor button:active,
|
|
157
|
-
.other_ThemeEditor .te-html-color-button:active{
|
|
158
|
-
background-color
|
|
186
|
+
.other_ThemeEditor .te-html-color-button:active {
|
|
187
|
+
background-color: #AAA;
|
|
159
188
|
}
|
|
160
189
|
|
|
161
|
-
.other_ThemeEditor .te-label{
|
|
190
|
+
.other_ThemeEditor .te-label {
|
|
162
191
|
white-space: nowrap;
|
|
163
192
|
width: 1%;
|
|
164
193
|
vertical-align: top;
|
|
165
194
|
}
|
|
166
|
-
|
|
195
|
+
|
|
196
|
+
.other_ThemeEditor .te-section-table>tbody>tr:hover {
|
|
167
197
|
background-color: #F8FF98;
|
|
168
198
|
}
|
|
169
|
-
|
|
170
|
-
|
|
199
|
+
|
|
200
|
+
.te-section-table thead th {
|
|
201
|
+
font-weight: bold;
|
|
171
202
|
}
|
|
172
|
-
|
|
203
|
+
|
|
204
|
+
.te-section-table.expanded>thead>tr>th:after {
|
|
173
205
|
font: normal normal normal 14px/1 FontAwesome;
|
|
174
206
|
content: "ï…‡";
|
|
175
207
|
float: right;
|
|
176
208
|
margin-right: 6px;
|
|
177
209
|
margin-top: 4px;
|
|
178
210
|
}
|
|
179
|
-
|
|
211
|
+
|
|
212
|
+
.te-section-table.collapsed>thead>tr>th:after {
|
|
180
213
|
font: normal normal normal 14px/1 FontAwesome;
|
|
181
214
|
content: "";
|
|
182
215
|
float: right;
|
|
183
216
|
margin-right: 6px;
|
|
184
217
|
margin-top: 4px;
|
|
185
218
|
}
|
|
186
|
-
|
|
187
|
-
#te-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
color
|
|
219
|
+
|
|
220
|
+
#te-tableModeOptions thead>tr>th,
|
|
221
|
+
#te-themeEditorOptions thead>tr>th {
|
|
222
|
+
border: 1px solid #6E6E73;
|
|
223
|
+
background-color: #6E6E73;
|
|
224
|
+
color: #FAFAFA;
|
|
191
225
|
}
|
|
226
|
+
|
|
192
227
|
/*
|
|
193
228
|
.widget-property-hover{
|
|
194
229
|
background-color: #F1C40F!important;
|