@northdata/fomantic-ui 2.9.419 → 2.9.420
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.css +10 -0
- package/lib/semantic-ui/dist/components/accordion.min.css +1 -1
- package/lib/semantic-ui/dist/components/button.css +322 -7
- package/lib/semantic-ui/dist/components/button.min.css +1 -1
- package/lib/semantic-ui/dist/components/header.css +1 -1
- package/lib/semantic-ui/dist/components/header.min.css +1 -1
- package/lib/semantic-ui/dist/components/icon.css +9 -0
- package/lib/semantic-ui/dist/components/icon.min.css +1 -1
- package/lib/semantic-ui/dist/components/input.css +12 -12
- package/lib/semantic-ui/dist/components/input.min.css +1 -1
- package/lib/semantic-ui/dist/components/list.css +17 -12
- package/lib/semantic-ui/dist/components/list.min.css +1 -1
- package/lib/semantic-ui/dist/components/message.css +48 -7
- package/lib/semantic-ui/dist/components/message.min.css +1 -1
- package/lib/semantic-ui/dist/components/modal.css +8 -2
- package/lib/semantic-ui/dist/components/modal.min.css +1 -1
- package/lib/semantic-ui/dist/components/toast.css +288 -0
- package/lib/semantic-ui/dist/components/toast.js +964 -0
- package/lib/semantic-ui/dist/components/toast.min.css +9 -0
- package/lib/semantic-ui/dist/components/toast.min.js +11 -0
- package/lib/semantic-ui/dist/less/site/variation.variables +13 -13
- package/lib/semantic-ui/dist/semantic-packed.css +714 -38
- package/lib/semantic-ui/dist/semantic.css +847 -43
- package/lib/semantic-ui/dist/semantic.full.css +1028 -39
- package/lib/semantic-ui/dist/semantic.full.min.css +1 -1
- package/lib/semantic-ui/dist/semantic.js +965 -0
- package/lib/semantic-ui/dist/semantic.min.css +16 -8
- package/lib/semantic-ui/dist/semantic.min.js +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* # Fomantic-UI 2.9.4 - Toast
|
|
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
|
+
Toast container
|
|
14
|
+
*******************************/
|
|
15
|
+
|
|
16
|
+
.ui.toast-container {
|
|
17
|
+
position: fixed;
|
|
18
|
+
z-index: 9999;
|
|
19
|
+
}
|
|
20
|
+
.ui.toast-container.absolute {
|
|
21
|
+
position: absolute;
|
|
22
|
+
}
|
|
23
|
+
.ui.toast-container.top.right {
|
|
24
|
+
top: 0.85714286em;
|
|
25
|
+
right: 0.85714286em;
|
|
26
|
+
margin-left: 0.85714286em;
|
|
27
|
+
}
|
|
28
|
+
.ui.toast-container.top.left {
|
|
29
|
+
top: 0.85714286em;
|
|
30
|
+
left: 0.85714286em;
|
|
31
|
+
margin-right: 0.85714286em;
|
|
32
|
+
}
|
|
33
|
+
.ui.toast-container.top.center {
|
|
34
|
+
left: 50%;
|
|
35
|
+
transform: translate(-50%, 0);
|
|
36
|
+
top: 0.85714286em;
|
|
37
|
+
}
|
|
38
|
+
.ui.toast-container.bottom.right {
|
|
39
|
+
bottom: 0.85714286em;
|
|
40
|
+
right: 0.85714286em;
|
|
41
|
+
margin-left: 0.85714286em;
|
|
42
|
+
}
|
|
43
|
+
.ui.toast-container.bottom.left {
|
|
44
|
+
bottom: 0.85714286em;
|
|
45
|
+
left: 0.85714286em;
|
|
46
|
+
margin-right: 0.85714286em;
|
|
47
|
+
}
|
|
48
|
+
.ui.toast-container.bottom.center {
|
|
49
|
+
left: 50%;
|
|
50
|
+
transform: translate(-50%, 0);
|
|
51
|
+
bottom: 0.85714286em;
|
|
52
|
+
}
|
|
53
|
+
.ui.toast-container .visible.toast-box,
|
|
54
|
+
.ui.toast-container .animating.toast-box,
|
|
55
|
+
.ui.toast-container .toast-box {
|
|
56
|
+
display: table !important;
|
|
57
|
+
}
|
|
58
|
+
.ui.toast-container .toast-box {
|
|
59
|
+
margin-bottom: 0.5em;
|
|
60
|
+
border-radius: 0;
|
|
61
|
+
cursor: default;
|
|
62
|
+
will-change: transform, opacity;
|
|
63
|
+
}
|
|
64
|
+
.ui.toast-container .toast-box:hover {
|
|
65
|
+
opacity: 1;
|
|
66
|
+
}
|
|
67
|
+
.ui.toast-container .toast-box:hover {
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
}
|
|
70
|
+
.ui.toast-container .toast-box.floating,
|
|
71
|
+
.ui.toast-container .toast-box.hoverfloating:hover {
|
|
72
|
+
box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
|
|
73
|
+
border: none;
|
|
74
|
+
}
|
|
75
|
+
.ui.toast-container .toast-box.compact,
|
|
76
|
+
.ui.toast-container .toast-box > .compact {
|
|
77
|
+
width: 416px;
|
|
78
|
+
}
|
|
79
|
+
.ui.toast-container .toast-box > .ui.toast,
|
|
80
|
+
.ui.toast-container .toast-box > .ui.message {
|
|
81
|
+
margin: 0;
|
|
82
|
+
position: relative;
|
|
83
|
+
}
|
|
84
|
+
.ui.toast-container .toast-box > .ui.message > .close.icon {
|
|
85
|
+
top: 1rem;
|
|
86
|
+
right: 1rem;
|
|
87
|
+
}
|
|
88
|
+
.ui.toast-container .toast-box > .ui.message.icon {
|
|
89
|
+
align-items: inherit;
|
|
90
|
+
}
|
|
91
|
+
.ui.toast-container .toast-box > .ui.message.icon > :not(.icon) {
|
|
92
|
+
padding-left: 0;
|
|
93
|
+
}
|
|
94
|
+
.ui.toast-container .toast-box > .ui.message.icon > i.icon:not(.close) {
|
|
95
|
+
display: inline-block;
|
|
96
|
+
position: absolute;
|
|
97
|
+
width: 4rem;
|
|
98
|
+
top: 50%;
|
|
99
|
+
transform: translateY(-50%);
|
|
100
|
+
}
|
|
101
|
+
.ui.toast-container .toast-box > .ui.message.icon:not(.vertical).icon.icon.icon {
|
|
102
|
+
display: block;
|
|
103
|
+
}
|
|
104
|
+
.ui.toast-container .toast-box .ui.toast > .close.icon {
|
|
105
|
+
cursor: pointer;
|
|
106
|
+
margin: 0;
|
|
107
|
+
opacity: 0.7;
|
|
108
|
+
transition: opacity 0.1s ease;
|
|
109
|
+
}
|
|
110
|
+
.ui.toast-container .toast-box .ui.toast > .close.icon:hover {
|
|
111
|
+
opacity: 1;
|
|
112
|
+
}
|
|
113
|
+
.ui.toast-container .toast-box .ui.toast.vertical > .close.icon {
|
|
114
|
+
margin-top: -1rem;
|
|
115
|
+
margin-right: -1rem;
|
|
116
|
+
}
|
|
117
|
+
.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon {
|
|
118
|
+
position: absolute;
|
|
119
|
+
top: 1rem;
|
|
120
|
+
}
|
|
121
|
+
.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon:not(.left) {
|
|
122
|
+
right: 1rem;
|
|
123
|
+
}
|
|
124
|
+
.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon.left {
|
|
125
|
+
margin-left: -1rem;
|
|
126
|
+
}
|
|
127
|
+
.ui.toast-container .toast-box .progressing {
|
|
128
|
+
animation-iteration-count: 1;
|
|
129
|
+
animation-timing-function: linear;
|
|
130
|
+
}
|
|
131
|
+
.ui.toast-container .toast-box .progressing.wait {
|
|
132
|
+
animation-name: progressWait;
|
|
133
|
+
}
|
|
134
|
+
.ui.toast-container .toast-box:hover .pausable.progressing {
|
|
135
|
+
animation-play-state: paused;
|
|
136
|
+
}
|
|
137
|
+
.ui.toast-container .toast-box .ui.toast:not(.vertical) {
|
|
138
|
+
display: block;
|
|
139
|
+
}
|
|
140
|
+
.ui.toast-container .toast-box .vertical.actions > .button,
|
|
141
|
+
.ui.toast-container .toast-box > .vertical > .vertical.vertical,
|
|
142
|
+
.ui.toast-container .toast-box > .vertical.vertical.vertical {
|
|
143
|
+
display: flex;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
/*******************************
|
|
148
|
+
Toast
|
|
149
|
+
*******************************/
|
|
150
|
+
|
|
151
|
+
.ui.toast {
|
|
152
|
+
display: none;
|
|
153
|
+
border-radius: 0;
|
|
154
|
+
padding: 0.78571429em 1em;
|
|
155
|
+
margin: 0;
|
|
156
|
+
color: rgba(0, 0, 0, 0.87);
|
|
157
|
+
background-color: #fff;
|
|
158
|
+
}
|
|
159
|
+
.ui.toast > .content > .header {
|
|
160
|
+
font-weight: bold;
|
|
161
|
+
color: inherit;
|
|
162
|
+
margin: 0;
|
|
163
|
+
}
|
|
164
|
+
.ui.toast.info {
|
|
165
|
+
background-color: #31ccec;
|
|
166
|
+
color: rgba(255, 255, 255, 0.9);
|
|
167
|
+
}
|
|
168
|
+
.ui.toast.warning {
|
|
169
|
+
background-color: #f2c037;
|
|
170
|
+
color: rgba(255, 255, 255, 0.9);
|
|
171
|
+
}
|
|
172
|
+
.ui.toast.success {
|
|
173
|
+
background-color: #81b08c;
|
|
174
|
+
color: rgba(255, 255, 255, 0.9);
|
|
175
|
+
}
|
|
176
|
+
.ui.toast.error {
|
|
177
|
+
background-color: #af4e4a;
|
|
178
|
+
color: rgba(255, 255, 255, 0.9);
|
|
179
|
+
}
|
|
180
|
+
.ui.toast.neutral {
|
|
181
|
+
background-color: #fff;
|
|
182
|
+
color: rgba(0, 0, 0, 0.87);
|
|
183
|
+
}
|
|
184
|
+
.ui.toast > i.icon:not(.close) {
|
|
185
|
+
font-size: 1.5em;
|
|
186
|
+
}
|
|
187
|
+
.ui.toast:not(.vertical):not(.center) > i.icon:not(.close) {
|
|
188
|
+
position: absolute;
|
|
189
|
+
}
|
|
190
|
+
.ui.toast:not(.vertical) > i.icon:not(.close) + .content {
|
|
191
|
+
padding-left: 3em;
|
|
192
|
+
}
|
|
193
|
+
.ui.toast:not(.vertical) > .close.icon + .content {
|
|
194
|
+
padding-left: 1.5em;
|
|
195
|
+
}
|
|
196
|
+
.ui.toast:not(.vertical):not(.center) > .centered.image,
|
|
197
|
+
.ui.toast:not(.vertical):not(.center) > .centered.icon {
|
|
198
|
+
transform: translateY(-50%);
|
|
199
|
+
top: 50%;
|
|
200
|
+
}
|
|
201
|
+
.ui.toast.vertical > .content {
|
|
202
|
+
flex-grow: 1;
|
|
203
|
+
}
|
|
204
|
+
.ui.toast.vertical > .close.icon + .content {
|
|
205
|
+
padding-left: 1em;
|
|
206
|
+
}
|
|
207
|
+
.ui.toast.vertical > .ui.image + .content,
|
|
208
|
+
.ui.toast.vertical > i.icon:not(.close) + .content {
|
|
209
|
+
padding-left: 1em;
|
|
210
|
+
}
|
|
211
|
+
.ui.toast.vertical > .centered.image,
|
|
212
|
+
.ui.toast.vertical > .centered.icon {
|
|
213
|
+
align-self: center;
|
|
214
|
+
}
|
|
215
|
+
.ui.hoverfloating.message:hover {
|
|
216
|
+
box-shadow: 0 0 0 1px inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
|
|
217
|
+
}
|
|
218
|
+
.ui.center.toast-container .toast-box,
|
|
219
|
+
.ui.right.toast-container .toast-box {
|
|
220
|
+
margin-left: auto;
|
|
221
|
+
}
|
|
222
|
+
.ui.center.toast-container .toast-box {
|
|
223
|
+
margin-right: auto;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/* --------------
|
|
227
|
+
Colors
|
|
228
|
+
-------------- */
|
|
229
|
+
@media only screen and (max-width: 420px) {
|
|
230
|
+
.ui.toast-container .toast-box.toast-box,
|
|
231
|
+
.ui.toast-container .toast-box > .compact,
|
|
232
|
+
.ui.toast-container .toast-box > .vertical > *,
|
|
233
|
+
.ui.toast-container .toast-box > * {
|
|
234
|
+
width: auto;
|
|
235
|
+
max-width: 100%;
|
|
236
|
+
}
|
|
237
|
+
.ui.toast-container .toast-box > *:not(.vertical) {
|
|
238
|
+
min-width: 280px;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
/* ---------------
|
|
243
|
+
Progress Bar
|
|
244
|
+
---------------- */
|
|
245
|
+
@keyframes progressWait {
|
|
246
|
+
0% {
|
|
247
|
+
opacity: 1;
|
|
248
|
+
}
|
|
249
|
+
100% {
|
|
250
|
+
opacity: 0;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
/*******************************
|
|
256
|
+
Theme Overrides
|
|
257
|
+
*******************************/
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
/*******************************
|
|
262
|
+
User Overrides
|
|
263
|
+
*******************************/
|
|
264
|
+
|
|
265
|
+
.ui.toast-container .toast-box > .ui.message > .close.icon,
|
|
266
|
+
.ui.toast-container .toast-box > .ui.toast > .close.icon {
|
|
267
|
+
color: rgba(0, 0, 0, 0.87);
|
|
268
|
+
font-size: 1.075em;
|
|
269
|
+
}
|
|
270
|
+
.ui.toast-container .toast-box > .ui.message {
|
|
271
|
+
padding: 0.85714286rem 3.42857143rem 0.85714286rem 1rem;
|
|
272
|
+
}
|
|
273
|
+
.ui.toast-container .toast-box > .ui.message .header {
|
|
274
|
+
font-size: 1.14285714rem;
|
|
275
|
+
font-weight: 500;
|
|
276
|
+
}
|
|
277
|
+
.ui.toast-container .toast-box > .ui.message .header + .message {
|
|
278
|
+
margin-top: 0.28571429em;
|
|
279
|
+
}
|
|
280
|
+
.ui.toast-container .toast-box > .ui.icon.message > i.icon:not(.close) {
|
|
281
|
+
width: auto;
|
|
282
|
+
top: 1rem;
|
|
283
|
+
transform: none;
|
|
284
|
+
font-size: 1.075em;
|
|
285
|
+
}
|
|
286
|
+
.ui.toast-container .toast-box > .ui.icon.message > .content {
|
|
287
|
+
padding-left: 1.57142857em;
|
|
288
|
+
}
|