@northdata/fomantic-ui 2.9.414 → 2.9.416
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/lib/semantic-ui/dist/components/accordion.min.js +1 -1
- package/lib/semantic-ui/dist/components/api.min.js +1 -1
- package/lib/semantic-ui/dist/components/calendar.min.js +1 -1
- package/lib/semantic-ui/dist/components/checkbox.min.js +1 -1
- package/lib/semantic-ui/dist/components/dimmer.min.js +1 -1
- package/lib/semantic-ui/dist/components/form.min.js +1 -1
- package/lib/semantic-ui/dist/components/modal.min.js +1 -1
- package/lib/semantic-ui/dist/components/popup.min.js +1 -1
- package/lib/semantic-ui/dist/components/search.min.js +1 -1
- package/lib/semantic-ui/dist/components/site.min.js +1 -1
- package/lib/semantic-ui/dist/components/statistic.css +308 -0
- package/lib/semantic-ui/dist/components/statistic.min.css +9 -0
- package/lib/semantic-ui/dist/components/tab.min.js +1 -1
- package/lib/semantic-ui/dist/components/transition.min.js +1 -1
- package/lib/semantic-ui/dist/less/site/variation.variables +2 -2
- package/lib/semantic-ui/dist/semantic-packed.css +344 -1
- package/lib/semantic-ui/dist/semantic.css +340 -1
- package/lib/semantic-ui/dist/semantic.full.css +679 -1
- package/lib/semantic-ui/dist/semantic.full.min.css +2 -2
- package/lib/semantic-ui/dist/semantic.js +1 -1
- package/lib/semantic-ui/dist/semantic.min.css +9 -1
- package/package.json +1 -1
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* # Fomantic-UI 2.9.4 - Statistic
|
|
3
|
+
* https://github.com/fomantic/Fomantic-UI/
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* Released under the MIT license
|
|
7
|
+
* https://opensource.org/licenses/MIT
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
/*******************************
|
|
13
|
+
Statistic
|
|
14
|
+
*******************************/
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/* Standalone */
|
|
18
|
+
.ui.statistic {
|
|
19
|
+
display: inline-flex;
|
|
20
|
+
flex-direction: column;
|
|
21
|
+
margin: 1em 0;
|
|
22
|
+
max-width: none;
|
|
23
|
+
}
|
|
24
|
+
.ui.statistic + .ui.statistic {
|
|
25
|
+
margin: 0 0 0 1.5em;
|
|
26
|
+
}
|
|
27
|
+
.ui.statistic:first-child {
|
|
28
|
+
margin-top: 0;
|
|
29
|
+
}
|
|
30
|
+
.ui.statistic:last-child {
|
|
31
|
+
margin-bottom: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
/*******************************
|
|
36
|
+
Group
|
|
37
|
+
*******************************/
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
/* Grouped */
|
|
41
|
+
.ui.statistics {
|
|
42
|
+
display: flex;
|
|
43
|
+
align-items: flex-start;
|
|
44
|
+
flex-wrap: wrap;
|
|
45
|
+
}
|
|
46
|
+
.ui.statistics > .statistic {
|
|
47
|
+
display: inline-flex;
|
|
48
|
+
flex: 0 1 auto;
|
|
49
|
+
flex-direction: column;
|
|
50
|
+
margin: 0 1.5em 1em;
|
|
51
|
+
max-width: none;
|
|
52
|
+
}
|
|
53
|
+
.ui.statistics {
|
|
54
|
+
display: flex;
|
|
55
|
+
margin: 1em -1.5em -1em;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* Clearing */
|
|
59
|
+
.ui.statistics::after {
|
|
60
|
+
display: block;
|
|
61
|
+
content: " ";
|
|
62
|
+
height: 0;
|
|
63
|
+
clear: both;
|
|
64
|
+
overflow: hidden;
|
|
65
|
+
visibility: hidden;
|
|
66
|
+
}
|
|
67
|
+
.ui.statistics:first-child {
|
|
68
|
+
margin-top: 0;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
/*******************************
|
|
73
|
+
Content
|
|
74
|
+
*******************************/
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
/* --------------
|
|
78
|
+
Value
|
|
79
|
+
--------------- */
|
|
80
|
+
.ui.statistics .statistic > .value,
|
|
81
|
+
.ui.statistic > .value {
|
|
82
|
+
font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
83
|
+
font-size: 4rem;
|
|
84
|
+
font-weight: normal;
|
|
85
|
+
line-height: 1em;
|
|
86
|
+
color: #1b1c1d;
|
|
87
|
+
text-transform: uppercase;
|
|
88
|
+
text-align: center;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* --------------
|
|
92
|
+
Label
|
|
93
|
+
--------------- */
|
|
94
|
+
.ui.statistics .statistic > .label,
|
|
95
|
+
.ui.statistic > .label {
|
|
96
|
+
font-family: "Josefin Sans", serif;
|
|
97
|
+
font-size: 1em;
|
|
98
|
+
font-weight: bold;
|
|
99
|
+
color: rgba(0, 0, 0, 0.87);
|
|
100
|
+
text-transform: uppercase;
|
|
101
|
+
text-align: center;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* Top Label */
|
|
105
|
+
.ui.statistics .statistic > .label ~ .value,
|
|
106
|
+
.ui.statistic > .label ~ .value {
|
|
107
|
+
margin-top: 0.5rem;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* Bottom Label */
|
|
111
|
+
.ui.statistics .statistic > .value ~ .label,
|
|
112
|
+
.ui.statistic > .value ~ .label {
|
|
113
|
+
margin-top: 0.5rem;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
/*******************************
|
|
118
|
+
Types
|
|
119
|
+
*******************************/
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
/* --------------
|
|
123
|
+
Icon Value
|
|
124
|
+
--------------- */
|
|
125
|
+
.ui.statistics .statistic > .value > i.icon,
|
|
126
|
+
.ui.statistic > .value > i.icon {
|
|
127
|
+
opacity: 1;
|
|
128
|
+
width: auto;
|
|
129
|
+
margin: 0;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
/* --------------
|
|
133
|
+
Text Value
|
|
134
|
+
--------------- */
|
|
135
|
+
.ui.statistics .statistic > .text.value,
|
|
136
|
+
.ui.statistic > .text.value {
|
|
137
|
+
line-height: 1em;
|
|
138
|
+
min-height: 2em;
|
|
139
|
+
font-weight: bold;
|
|
140
|
+
text-align: center;
|
|
141
|
+
}
|
|
142
|
+
.ui.statistics .statistic > .text.value + .label,
|
|
143
|
+
.ui.statistic > .text.value + .label {
|
|
144
|
+
text-align: center;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/* --------------
|
|
148
|
+
Image Value
|
|
149
|
+
--------------- */
|
|
150
|
+
.ui.statistics .statistic > .value img,
|
|
151
|
+
.ui.statistic > .value img {
|
|
152
|
+
max-height: 3rem;
|
|
153
|
+
vertical-align: baseline;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
/*******************************
|
|
158
|
+
Variations
|
|
159
|
+
*******************************/
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
/* --------------
|
|
163
|
+
Count
|
|
164
|
+
--------------- */
|
|
165
|
+
|
|
166
|
+
/* --------------
|
|
167
|
+
Colors
|
|
168
|
+
--------------- */
|
|
169
|
+
.ui.primary.statistics .statistic > .value,
|
|
170
|
+
.ui.statistics .primary.statistic > .value,
|
|
171
|
+
.ui.primary.statistic > .value {
|
|
172
|
+
color: #007388;
|
|
173
|
+
}
|
|
174
|
+
.ui.secondary.statistics .statistic > .value,
|
|
175
|
+
.ui.statistics .secondary.statistic > .value,
|
|
176
|
+
.ui.secondary.statistic > .value {
|
|
177
|
+
color: #294755;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/* --------------
|
|
181
|
+
Stackable
|
|
182
|
+
--------------- */
|
|
183
|
+
@media only screen and (max-width: 767.98px) {
|
|
184
|
+
.ui.stackable.statistics {
|
|
185
|
+
width: auto;
|
|
186
|
+
margin-left: 0 !important;
|
|
187
|
+
margin-right: 0 !important;
|
|
188
|
+
}
|
|
189
|
+
.ui.stackable.statistics > .statistic {
|
|
190
|
+
width: 100% !important;
|
|
191
|
+
margin: 0 !important;
|
|
192
|
+
padding: 1rem 1rem !important;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/* --------------
|
|
197
|
+
Sizes
|
|
198
|
+
--------------- */
|
|
199
|
+
|
|
200
|
+
/* Medium */
|
|
201
|
+
.ui.statistics .statistic > .value,
|
|
202
|
+
.ui.statistic > .value {
|
|
203
|
+
font-size: 4rem;
|
|
204
|
+
}
|
|
205
|
+
.ui.horizontal.statistics .statistic > .value,
|
|
206
|
+
.ui.horizontal.statistic > .value {
|
|
207
|
+
font-size: 3rem;
|
|
208
|
+
}
|
|
209
|
+
.ui.statistics .statistic > .text.value,
|
|
210
|
+
.ui.statistic > .text.value {
|
|
211
|
+
font-size: 2rem;
|
|
212
|
+
}
|
|
213
|
+
.ui.mini.statistics .statistic > .value,
|
|
214
|
+
.ui.mini.statistic > .value {
|
|
215
|
+
font-size: 1.5rem;
|
|
216
|
+
}
|
|
217
|
+
.ui.mini.horizontal.statistics .statistic > .value,
|
|
218
|
+
.ui.mini.horizontal.statistic > .value {
|
|
219
|
+
font-size: 1.5rem;
|
|
220
|
+
}
|
|
221
|
+
.ui.mini.statistics .statistic > .text.value,
|
|
222
|
+
.ui.mini.statistic > .text.value {
|
|
223
|
+
font-size: 1rem;
|
|
224
|
+
}
|
|
225
|
+
.ui.tiny.statistics .statistic > .value,
|
|
226
|
+
.ui.tiny.statistic > .value {
|
|
227
|
+
font-size: 2rem;
|
|
228
|
+
}
|
|
229
|
+
.ui.tiny.horizontal.statistics .statistic > .value,
|
|
230
|
+
.ui.tiny.horizontal.statistic > .value {
|
|
231
|
+
font-size: 2rem;
|
|
232
|
+
}
|
|
233
|
+
.ui.tiny.statistics .statistic > .text.value,
|
|
234
|
+
.ui.tiny.statistic > .text.value {
|
|
235
|
+
font-size: 1rem;
|
|
236
|
+
}
|
|
237
|
+
.ui.small.statistics .statistic > .value,
|
|
238
|
+
.ui.small.statistic > .value {
|
|
239
|
+
font-size: 3rem;
|
|
240
|
+
}
|
|
241
|
+
.ui.small.horizontal.statistics .statistic > .value,
|
|
242
|
+
.ui.small.horizontal.statistic > .value {
|
|
243
|
+
font-size: 2rem;
|
|
244
|
+
}
|
|
245
|
+
.ui.small.statistics .statistic > .text.value,
|
|
246
|
+
.ui.small.statistic > .text.value {
|
|
247
|
+
font-size: 1rem;
|
|
248
|
+
}
|
|
249
|
+
.ui.large.statistics .statistic > .value,
|
|
250
|
+
.ui.large.statistic > .value {
|
|
251
|
+
font-size: 5rem;
|
|
252
|
+
}
|
|
253
|
+
.ui.large.horizontal.statistics .statistic > .value,
|
|
254
|
+
.ui.large.horizontal.statistic > .value {
|
|
255
|
+
font-size: 4rem;
|
|
256
|
+
}
|
|
257
|
+
.ui.large.statistics .statistic > .text.value,
|
|
258
|
+
.ui.large.statistic > .text.value {
|
|
259
|
+
font-size: 2.5rem;
|
|
260
|
+
}
|
|
261
|
+
.ui.big.statistics .statistic > .value,
|
|
262
|
+
.ui.big.statistic > .value {
|
|
263
|
+
font-size: 5.5rem;
|
|
264
|
+
}
|
|
265
|
+
.ui.big.horizontal.statistics .statistic > .value,
|
|
266
|
+
.ui.big.horizontal.statistic > .value {
|
|
267
|
+
font-size: 4.5rem;
|
|
268
|
+
}
|
|
269
|
+
.ui.big.statistics .statistic > .text.value,
|
|
270
|
+
.ui.big.statistic > .text.value {
|
|
271
|
+
font-size: 2.5rem;
|
|
272
|
+
}
|
|
273
|
+
.ui.huge.statistics .statistic > .value,
|
|
274
|
+
.ui.huge.statistic > .value {
|
|
275
|
+
font-size: 6rem;
|
|
276
|
+
}
|
|
277
|
+
.ui.huge.horizontal.statistics .statistic > .value,
|
|
278
|
+
.ui.huge.horizontal.statistic > .value {
|
|
279
|
+
font-size: 5rem;
|
|
280
|
+
}
|
|
281
|
+
.ui.huge.statistics .statistic > .text.value,
|
|
282
|
+
.ui.huge.statistic > .text.value {
|
|
283
|
+
font-size: 2.5rem;
|
|
284
|
+
}
|
|
285
|
+
.ui.massive.statistics .statistic > .value,
|
|
286
|
+
.ui.massive.statistic > .value {
|
|
287
|
+
font-size: 7rem;
|
|
288
|
+
}
|
|
289
|
+
.ui.massive.horizontal.statistics .statistic > .value,
|
|
290
|
+
.ui.massive.horizontal.statistic > .value {
|
|
291
|
+
font-size: 6rem;
|
|
292
|
+
}
|
|
293
|
+
.ui.massive.statistics .statistic > .text.value,
|
|
294
|
+
.ui.massive.statistic > .text.value {
|
|
295
|
+
font-size: 3rem;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
/*******************************
|
|
300
|
+
Theme Overrides
|
|
301
|
+
*******************************/
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
/*******************************
|
|
306
|
+
Site Overrides
|
|
307
|
+
*******************************/
|
|
308
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* # Fomantic-UI 2.9.4 - Statistic
|
|
3
|
+
* https://github.com/fomantic/Fomantic-UI/
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* Released under the MIT license
|
|
7
|
+
* https://opensource.org/licenses/MIT
|
|
8
|
+
*
|
|
9
|
+
*/.ui.statistic{display:inline-flex;flex-direction:column;margin:1em 0;max-width:none}.ui.statistic+.ui.statistic{margin:0 0 0 1.5em}.ui.statistic:first-child{margin-top:0}.ui.statistic:last-child{margin-bottom:0}.ui.statistics{display:flex;align-items:flex-start;flex-wrap:wrap}.ui.statistics>.statistic{display:inline-flex;flex:0 1 auto;flex-direction:column;margin:0 1.5em 1em;max-width:none}.ui.statistics{display:flex;margin:1em -1.5em -1em}.ui.statistics::after{display:block;content:" ";height:0;clear:both;overflow:hidden;visibility:hidden}.ui.statistics:first-child{margin-top:0}.ui.statistic>.value,.ui.statistics .statistic>.value{font-family:Roboto,"Helvetica Neue",Arial,Helvetica,sans-serif;font-size:4rem;font-weight:400;line-height:1em;color:#1b1c1d;text-transform:uppercase;text-align:center}.ui.statistic>.label,.ui.statistics .statistic>.label{font-family:"Josefin Sans",serif;font-size:1em;font-weight:700;color:rgba(0,0,0,.87);text-transform:uppercase;text-align:center}.ui.statistic>.label~.value,.ui.statistics .statistic>.label~.value{margin-top:.5rem}.ui.statistic>.value~.label,.ui.statistics .statistic>.value~.label{margin-top:.5rem}.ui.statistic>.value>i.icon,.ui.statistics .statistic>.value>i.icon{opacity:1;width:auto;margin:0}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{line-height:1em;min-height:2em;font-weight:700;text-align:center}.ui.statistic>.text.value+.label,.ui.statistics .statistic>.text.value+.label{text-align:center}.ui.statistic>.value img,.ui.statistics .statistic>.value img{max-height:3rem;vertical-align:baseline}.ui.primary.statistic>.value,.ui.primary.statistics .statistic>.value,.ui.statistics .primary.statistic>.value{color:#007388}.ui.secondary.statistic>.value,.ui.secondary.statistics .statistic>.value,.ui.statistics .secondary.statistic>.value{color:#294755}@media only screen and (max-width:767.98px){.ui.stackable.statistics{width:auto;margin-left:0!important;margin-right:0!important}.ui.stackable.statistics>.statistic{width:100%!important;margin:0!important;padding:1rem 1rem!important}}.ui.statistic>.value,.ui.statistics .statistic>.value{font-size:4rem}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{font-size:3rem}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{font-size:2rem}.ui.mini.statistic>.value,.ui.mini.statistics .statistic>.value{font-size:1.5rem}.ui.mini.horizontal.statistic>.value,.ui.mini.horizontal.statistics .statistic>.value{font-size:1.5rem}.ui.mini.statistic>.text.value,.ui.mini.statistics .statistic>.text.value{font-size:1rem}.ui.tiny.statistic>.value,.ui.tiny.statistics .statistic>.value{font-size:2rem}.ui.tiny.horizontal.statistic>.value,.ui.tiny.horizontal.statistics .statistic>.value{font-size:2rem}.ui.tiny.statistic>.text.value,.ui.tiny.statistics .statistic>.text.value{font-size:1rem}.ui.small.statistic>.value,.ui.small.statistics .statistic>.value{font-size:3rem}.ui.small.horizontal.statistic>.value,.ui.small.horizontal.statistics .statistic>.value{font-size:2rem}.ui.small.statistic>.text.value,.ui.small.statistics .statistic>.text.value{font-size:1rem}.ui.large.statistic>.value,.ui.large.statistics .statistic>.value{font-size:5rem}.ui.large.horizontal.statistic>.value,.ui.large.horizontal.statistics .statistic>.value{font-size:4rem}.ui.large.statistic>.text.value,.ui.large.statistics .statistic>.text.value{font-size:2.5rem}.ui.big.statistic>.value,.ui.big.statistics .statistic>.value{font-size:5.5rem}.ui.big.horizontal.statistic>.value,.ui.big.horizontal.statistics .statistic>.value{font-size:4.5rem}.ui.big.statistic>.text.value,.ui.big.statistics .statistic>.text.value{font-size:2.5rem}.ui.huge.statistic>.value,.ui.huge.statistics .statistic>.value{font-size:6rem}.ui.huge.horizontal.statistic>.value,.ui.huge.horizontal.statistics .statistic>.value{font-size:5rem}.ui.huge.statistic>.text.value,.ui.huge.statistics .statistic>.text.value{font-size:2.5rem}.ui.massive.statistic>.value,.ui.massive.statistics .statistic>.value{font-size:7rem}.ui.massive.horizontal.statistic>.value,.ui.massive.horizontal.statistics .statistic>.value{font-size:6rem}.ui.massive.statistic>.text.value,.ui.massive.statistics .statistic>.text.value{font-size:3rem}
|
|
@@ -500,8 +500,8 @@
|
|
|
500
500
|
/* Statistic */
|
|
501
501
|
@variationStatisticInverted: false;
|
|
502
502
|
@variationStatisticStackable: true;
|
|
503
|
-
@variationStatisticFloated:
|
|
504
|
-
@variationStatisticHorizontal:
|
|
503
|
+
@variationStatisticFloated: false;
|
|
504
|
+
@variationStatisticHorizontal: false;
|
|
505
505
|
@variationStatisticEqualWidth: false;
|
|
506
506
|
@variationStatisticFluid: false;
|
|
507
507
|
@variationStatisticSizes: @variationAllSizes;
|