@pageboard/html 0.14.18 → 0.14.20

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.
Files changed (116) hide show
  1. package/elements/accordion.js +1 -1
  2. package/elements/card.js +1 -1
  3. package/elements/fieldsets.js +1 -1
  4. package/elements/form.js +5 -5
  5. package/elements/grid.js +3 -3
  6. package/elements/image.js +3 -3
  7. package/elements/inlines.js +8 -8
  8. package/elements/input-file.js +2 -2
  9. package/elements/input-property.js +1 -1
  10. package/elements/inputs.js +5 -5
  11. package/elements/layout.js +51 -27
  12. package/elements/link.js +3 -3
  13. package/elements/medialist.js +1 -1
  14. package/elements/menu.js +6 -6
  15. package/elements/navigation.js +1 -1
  16. package/elements/page.js +1 -1
  17. package/elements/pagination.js +1 -1
  18. package/elements/paragraph.js +2 -2
  19. package/elements/query-tags.js +1 -1
  20. package/elements/tab.js +1 -1
  21. package/elements/table.js +1 -1
  22. package/elements/template.js +1 -1
  23. package/package.json +3 -8
  24. package/ui/card.css +3 -3
  25. package/ui/components/accordion.css +241 -0
  26. package/ui/components/accordion.js +613 -0
  27. package/ui/components/ad.css +275 -0
  28. package/ui/components/api.js +1167 -0
  29. package/ui/components/breadcrumb.css +122 -0
  30. package/ui/components/button.css +3525 -0
  31. package/ui/components/card.css +939 -0
  32. package/ui/components/checkbox.css +604 -0
  33. package/ui/components/checkbox.js +831 -0
  34. package/ui/components/colorize.js +274 -0
  35. package/ui/components/comment.css +268 -0
  36. package/ui/components/container.css +149 -0
  37. package/ui/components/dimmer.css +224 -0
  38. package/ui/components/dimmer.js +733 -0
  39. package/ui/components/divider.css +253 -0
  40. package/ui/components/dropdown.css +1448 -0
  41. package/ui/components/dropdown.js +3955 -0
  42. package/ui/components/embed.css +160 -0
  43. package/ui/components/embed.js +706 -0
  44. package/ui/components/feed.css +281 -0
  45. package/ui/components/flag.css +1035 -0
  46. package/ui/components/form.css +1011 -0
  47. package/ui/components/form.js +1706 -0
  48. package/ui/components/grid.css +1941 -0
  49. package/ui/components/header.css +719 -0
  50. package/ui/components/icon.css +4777 -0
  51. package/ui/components/image.css +310 -0
  52. package/ui/components/input.css +469 -0
  53. package/ui/components/item.css +464 -0
  54. package/ui/components/label.css +1281 -0
  55. package/ui/components/list.css +943 -0
  56. package/ui/components/loader.css +339 -0
  57. package/ui/components/menu.css +1940 -0
  58. package/ui/components/message.css +468 -0
  59. package/ui/components/modal.css +617 -0
  60. package/ui/components/modal.js +1034 -0
  61. package/ui/components/nag.css +145 -0
  62. package/ui/components/nag.js +507 -0
  63. package/ui/components/placeholder.css +229 -0
  64. package/ui/components/popup.css +640 -0
  65. package/ui/components/popup.js +1532 -0
  66. package/ui/components/progress.css +502 -0
  67. package/ui/components/progress.js +931 -0
  68. package/ui/components/rail.css +152 -0
  69. package/ui/components/rating.css +257 -0
  70. package/ui/components/rating.js +508 -0
  71. package/ui/components/reset.css +476 -0
  72. package/ui/components/reveal.css +260 -0
  73. package/ui/components/search.css +431 -0
  74. package/ui/components/search.js +1505 -0
  75. package/ui/components/segment.css +824 -0
  76. package/ui/components/shape.css +143 -0
  77. package/ui/components/shape.js +921 -0
  78. package/ui/components/sidebar.css +537 -0
  79. package/ui/components/sidebar.js +1033 -0
  80. package/ui/components/site.css +184 -0
  81. package/ui/components/site.js +487 -0
  82. package/ui/components/state.js +708 -0
  83. package/ui/components/statistic.css +534 -0
  84. package/ui/components/step.css +566 -0
  85. package/ui/components/sticky.css +73 -0
  86. package/ui/components/sticky.js +959 -0
  87. package/ui/components/tab.css +89 -0
  88. package/ui/components/tab.js +952 -0
  89. package/ui/components/table.css +1108 -0
  90. package/ui/components/transition.css +1792 -0
  91. package/ui/components/transition.js +1095 -0
  92. package/ui/components/video.css +121 -0
  93. package/ui/components/video.js +532 -0
  94. package/ui/components/visibility.js +1311 -0
  95. package/ui/components/visit.js +517 -0
  96. package/ui/image.js +2 -2
  97. package/ui/item.css +2 -2
  98. package/ui/layout.css +87 -64
  99. package/ui/textarea.js +4 -2
  100. package/ui/themes/default/assets/fonts/brand-icons.eot +0 -0
  101. package/ui/themes/default/assets/fonts/brand-icons.svg +1008 -0
  102. package/ui/themes/default/assets/fonts/brand-icons.ttf +0 -0
  103. package/ui/themes/default/assets/fonts/brand-icons.woff +0 -0
  104. package/ui/themes/default/assets/fonts/brand-icons.woff2 +0 -0
  105. package/ui/themes/default/assets/fonts/icons.eot +0 -0
  106. package/ui/themes/default/assets/fonts/icons.otf +0 -0
  107. package/ui/themes/default/assets/fonts/icons.svg +1518 -0
  108. package/ui/themes/default/assets/fonts/icons.ttf +0 -0
  109. package/ui/themes/default/assets/fonts/icons.woff +0 -0
  110. package/ui/themes/default/assets/fonts/icons.woff2 +0 -0
  111. package/ui/themes/default/assets/fonts/outline-icons.eot +0 -0
  112. package/ui/themes/default/assets/fonts/outline-icons.svg +366 -0
  113. package/ui/themes/default/assets/fonts/outline-icons.ttf +0 -0
  114. package/ui/themes/default/assets/fonts/outline-icons.woff +0 -0
  115. package/ui/themes/default/assets/fonts/outline-icons.woff2 +0 -0
  116. package/ui/themes/default/assets/images/flags.png +0 -0
@@ -0,0 +1,3525 @@
1
+ /*!
2
+ * # Semantic UI 2.4.1 - Button
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+
11
+
12
+ /*******************************
13
+ Button
14
+ *******************************/
15
+
16
+ .ui.button {
17
+ cursor: pointer;
18
+ display: inline-block;
19
+ min-height: 1em;
20
+ outline: none;
21
+ border: none;
22
+ vertical-align: baseline;
23
+ background: #E0E1E2 none;
24
+ color: rgb(0 0 0 / 60%);
25
+ font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
26
+ margin: 0em 0.25em 0em 0em;
27
+ padding: 0.7857em 1.5em;
28
+ text-transform: none;
29
+ text-shadow: none;
30
+ font-weight: bold;
31
+ line-height: 1em;
32
+ font-style: normal;
33
+ text-align: center;
34
+ text-decoration: none;
35
+ border-radius: 0.2857rem;
36
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
37
+ user-select: none;
38
+ transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
39
+ will-change: '';
40
+ -webkit-tap-highlight-color: transparent;
41
+ }
42
+
43
+
44
+ /*******************************
45
+ States
46
+ *******************************/
47
+
48
+
49
+ /*--------------
50
+ Hover
51
+ ---------------*/
52
+
53
+ .ui.button:hover {
54
+ background-color: #CACBCD;
55
+ background-image: none;
56
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
57
+ color: rgb(0 0 0 / 80%);
58
+ }
59
+ .ui.button:hover .icon {
60
+ opacity: 0.85;
61
+ }
62
+
63
+ /*--------------
64
+ Focus
65
+ ---------------*/
66
+
67
+ .ui.button:focus {
68
+ background-color: #CACBCD;
69
+ color: rgb(0 0 0 / 80%);
70
+ background-image: '' !important;
71
+ box-shadow: '' !important;
72
+ }
73
+ .ui.button:focus .icon {
74
+ opacity: 0.85;
75
+ }
76
+
77
+ /*--------------
78
+ Down
79
+ ---------------*/
80
+
81
+ .ui.button:active,
82
+ .ui.active.button:active {
83
+ background-color: #BABBBC;
84
+ background-image: '';
85
+ color: rgb(0 0 0 / 90%);
86
+ box-shadow: 0px 0px 0px 1px transparent inset, none;
87
+ }
88
+
89
+ /*--------------
90
+ Active
91
+ ---------------*/
92
+
93
+ .ui.active.button {
94
+ background-color: #C0C1C2;
95
+ background-image: none;
96
+ box-shadow: 0px 0px 0px 1px transparent inset;
97
+ color: rgb(0 0 0 / 95%);
98
+ }
99
+ .ui.active.button:hover {
100
+ background-color: #C0C1C2;
101
+ background-image: none;
102
+ color: rgb(0 0 0 / 95%);
103
+ }
104
+ .ui.active.button:active {
105
+ background-color: #C0C1C2;
106
+ background-image: none;
107
+ }
108
+
109
+ /*--------------
110
+ Loading
111
+ ---------------*/
112
+
113
+
114
+ /* Specificity hack */
115
+ .ui.loading.loading.loading.loading.loading.loading.button {
116
+ position: relative;
117
+ cursor: default;
118
+ text-shadow: none !important;
119
+ color: transparent !important;
120
+ opacity: 1;
121
+ pointer-events: auto;
122
+ transition: all 0s linear, opacity 0.1s ease;
123
+ }
124
+ .ui.loading.button::before {
125
+ position: absolute;
126
+ content: '';
127
+ top: 50%;
128
+ left: 50%;
129
+ margin: -0.6428em 0em 0em -0.6428em;
130
+ width: 1.2857em;
131
+ height: 1.2857em;
132
+ border-radius: 500rem;
133
+ border: 0.2em solid rgb(0 0 0 / 15%);
134
+ }
135
+ .ui.loading.button::after {
136
+ position: absolute;
137
+ content: '';
138
+ top: 50%;
139
+ left: 50%;
140
+ margin: -0.6428em 0em 0em -0.6428em;
141
+ width: 1.2857em;
142
+ height: 1.2857em;
143
+ animation: button-spin 0.6s linear;
144
+ animation-iteration-count: infinite;
145
+ border-radius: 500rem;
146
+ border-color: #FFFFFF transparent transparent;
147
+ border-style: solid;
148
+ border-width: 0.2em;
149
+ box-shadow: 0px 0px 0px 1px transparent;
150
+ }
151
+ .ui.labeled.icon.loading.button .icon {
152
+ background-color: transparent;
153
+ box-shadow: none;
154
+ }
155
+
156
+ @keyframes button-spin {
157
+ from {
158
+ transform: rotate(0deg);
159
+ }
160
+ to {
161
+ transform: rotate(360deg);
162
+ }
163
+ }
164
+
165
+ @keyframes button-spin {
166
+ from {
167
+ transform: rotate(0deg);
168
+ }
169
+ to {
170
+ transform: rotate(360deg);
171
+ }
172
+ }
173
+ .ui.basic.loading.button:not(.inverted)::before {
174
+ border-color: rgb(0 0 0 / 10%);
175
+ }
176
+ .ui.basic.loading.button:not(.inverted)::after {
177
+ border-top-color: #767676;
178
+ }
179
+
180
+ /*-------------------
181
+ Disabled
182
+ --------------------*/
183
+
184
+ .ui.buttons .disabled.button,
185
+ .ui.disabled.button,
186
+ .ui.button:disabled,
187
+ .ui.disabled.button:hover,
188
+ .ui.disabled.active.button {
189
+ cursor: default;
190
+ opacity: 0.45 !important;
191
+ background-image: none !important;
192
+ box-shadow: none !important;
193
+ pointer-events: none !important;
194
+ }
195
+
196
+ /* Basic Group With Disabled */
197
+ .ui.basic.buttons .ui.disabled.button {
198
+ border-color: rgb(34 36 38 / 50%);
199
+ }
200
+
201
+
202
+ /*******************************
203
+ Types
204
+ *******************************/
205
+
206
+
207
+ /*-------------------
208
+ Animated
209
+ --------------------*/
210
+
211
+ .ui.animated.button {
212
+ position: relative;
213
+ overflow: hidden;
214
+ padding-right: 0em !important;
215
+ vertical-align: middle;
216
+ z-index: 1;
217
+ }
218
+ .ui.animated.button .content {
219
+ will-change: transform, opacity;
220
+ }
221
+ .ui.animated.button .visible.content {
222
+ position: relative;
223
+ margin-right: 1.5em;
224
+ left: auto;
225
+ right: 0%;
226
+ transition: right 0.3s ease 0s;
227
+ }
228
+ .ui.animated.button .hidden.content {
229
+ position: absolute;
230
+ width: 100%;
231
+ top: 50%;
232
+ left: auto;
233
+ right: -100%;
234
+ margin-top: -0.5em;
235
+ transition: right 0.3s ease 0s;
236
+ }
237
+
238
+ /* Horizontal */
239
+ .ui.animated.button:focus .visible.content,
240
+ .ui.animated.button:hover .visible.content {
241
+ left: auto;
242
+ right: 200%;
243
+ }
244
+ .ui.animated.button:focus .hidden.content,
245
+ .ui.animated.button:hover .hidden.content {
246
+ left: auto;
247
+ right: 0%;
248
+ }
249
+
250
+ /* Vertical */
251
+ .ui.vertical.animated.button .visible.content,
252
+ .ui.vertical.animated.button .hidden.content {
253
+ transition: top 0.3s ease, transform 0.3s ease;
254
+ }
255
+ .ui.vertical.animated.button .visible.content {
256
+ transform: translateY(0%);
257
+ right: auto;
258
+ }
259
+ .ui.vertical.animated.button .hidden.content {
260
+ top: -50%;
261
+ left: 0%;
262
+ right: auto;
263
+ }
264
+ .ui.vertical.animated.button:focus .visible.content,
265
+ .ui.vertical.animated.button:hover .visible.content {
266
+ transform: translateY(200%);
267
+ right: auto;
268
+ }
269
+ .ui.vertical.animated.button:focus .hidden.content,
270
+ .ui.vertical.animated.button:hover .hidden.content {
271
+ top: 50%;
272
+ right: auto;
273
+ }
274
+
275
+ /* Fade */
276
+ .ui.fade.animated.button .visible.content,
277
+ .ui.fade.animated.button .hidden.content {
278
+ transition: opacity 0.3s ease, transform 0.3s ease;
279
+ }
280
+ .ui.fade.animated.button .visible.content {
281
+ left: auto;
282
+ right: auto;
283
+ opacity: 1;
284
+ transform: scale(1);
285
+ }
286
+ .ui.fade.animated.button .hidden.content {
287
+ opacity: 0;
288
+ left: 0%;
289
+ right: auto;
290
+ transform: scale(1.5);
291
+ }
292
+ .ui.fade.animated.button:focus .visible.content,
293
+ .ui.fade.animated.button:hover .visible.content {
294
+ left: auto;
295
+ right: auto;
296
+ opacity: 0;
297
+ transform: scale(0.75);
298
+ }
299
+ .ui.fade.animated.button:focus .hidden.content,
300
+ .ui.fade.animated.button:hover .hidden.content {
301
+ left: 0%;
302
+ right: auto;
303
+ opacity: 1;
304
+ transform: scale(1);
305
+ }
306
+
307
+ /*-------------------
308
+ Inverted
309
+ --------------------*/
310
+
311
+ .ui.inverted.button {
312
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
313
+ background: transparent none;
314
+ color: #FFFFFF;
315
+ text-shadow: none !important;
316
+ }
317
+
318
+ /* Group */
319
+ .ui.inverted.buttons .button {
320
+ margin: 0px 0px 0px -2px;
321
+ }
322
+ .ui.inverted.buttons .button:first-child {
323
+ margin-left: 0em;
324
+ }
325
+ .ui.inverted.vertical.buttons .button {
326
+ margin: 0px 0px -2px;
327
+ }
328
+ .ui.inverted.vertical.buttons .button:first-child {
329
+ margin-top: 0em;
330
+ }
331
+
332
+ /* States */
333
+
334
+ /* Hover */
335
+ .ui.inverted.button:hover {
336
+ background: #FFFFFF;
337
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
338
+ color: rgb(0 0 0 / 80%);
339
+ }
340
+
341
+ /* Active / Focus */
342
+ .ui.inverted.button:focus,
343
+ .ui.inverted.button.active {
344
+ background: #FFFFFF;
345
+ box-shadow: 0px 0px 0px 2px #FFFFFF inset !important;
346
+ color: rgb(0 0 0 / 80%);
347
+ }
348
+
349
+ /* Active Focus */
350
+ .ui.inverted.button.active:focus {
351
+ background: #DCDDDE;
352
+ box-shadow: 0px 0px 0px 2px #DCDDDE inset !important;
353
+ color: rgb(0 0 0 / 80%);
354
+ }
355
+
356
+ /*-------------------
357
+ Labeled Button
358
+ --------------------*/
359
+
360
+ .ui.labeled.button:not(.icon) {
361
+ display: inline-flex;
362
+ flex-direction: row;
363
+ background: none !important;
364
+ padding: 0px !important;
365
+ border: none !important;
366
+ box-shadow: none !important;
367
+ }
368
+ .ui.labeled.button > .button {
369
+ margin: 0px;
370
+ }
371
+ .ui.labeled.button > .label {
372
+ display: flex;
373
+ align-items: center;
374
+ margin: 0px 0px 0px -1px !important;
375
+ padding: '';
376
+ font-size: 1em;
377
+ border-color: rgb(34 36 38 / 15%);
378
+ }
379
+
380
+ /* Tag */
381
+ .ui.labeled.button > .tag.label::before {
382
+ width: 1.85em;
383
+ height: 1.85em;
384
+ }
385
+
386
+ /* Right */
387
+ .ui.labeled.button:not([class*="left labeled"]) > .button {
388
+ border-top-right-radius: 0px;
389
+ border-bottom-right-radius: 0px;
390
+ }
391
+ .ui.labeled.button:not([class*="left labeled"]) > .label {
392
+ border-top-left-radius: 0px;
393
+ border-bottom-left-radius: 0px;
394
+ }
395
+
396
+ /* Left Side */
397
+ .ui[class*="left labeled"].button > .button {
398
+ border-top-left-radius: 0px;
399
+ border-bottom-left-radius: 0px;
400
+ }
401
+ .ui[class*="left labeled"].button > .label {
402
+ border-top-right-radius: 0px;
403
+ border-bottom-right-radius: 0px;
404
+ }
405
+
406
+ /*-------------------
407
+ Social
408
+ --------------------*/
409
+
410
+
411
+ /* Facebook */
412
+ .ui.facebook.button {
413
+ background-color: #3B5998;
414
+ color: #FFFFFF;
415
+ text-shadow: none;
416
+ background-image: none;
417
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
418
+ }
419
+ .ui.facebook.button:hover {
420
+ background-color: #304d8a;
421
+ color: #FFFFFF;
422
+ text-shadow: none;
423
+ }
424
+ .ui.facebook.button:active {
425
+ background-color: #2d4373;
426
+ color: #FFFFFF;
427
+ text-shadow: none;
428
+ }
429
+
430
+ /* Twitter */
431
+ .ui.twitter.button {
432
+ background-color: #55ACEE;
433
+ color: #FFFFFF;
434
+ text-shadow: none;
435
+ background-image: none;
436
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
437
+ }
438
+ .ui.twitter.button:hover {
439
+ background-color: #35a2f4;
440
+ color: #FFFFFF;
441
+ text-shadow: none;
442
+ }
443
+ .ui.twitter.button:active {
444
+ background-color: #2795e9;
445
+ color: #FFFFFF;
446
+ text-shadow: none;
447
+ }
448
+
449
+ /* Google Plus */
450
+ .ui.google.plus.button {
451
+ background-color: #DD4B39;
452
+ color: #FFFFFF;
453
+ text-shadow: none;
454
+ background-image: none;
455
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
456
+ }
457
+ .ui.google.plus.button:hover {
458
+ background-color: #e0321c;
459
+ color: #FFFFFF;
460
+ text-shadow: none;
461
+ }
462
+ .ui.google.plus.button:active {
463
+ background-color: #c23321;
464
+ color: #FFFFFF;
465
+ text-shadow: none;
466
+ }
467
+
468
+ /* Linked In */
469
+ .ui.linkedin.button {
470
+ background-color: #1F88BE;
471
+ color: #FFFFFF;
472
+ text-shadow: none;
473
+ }
474
+ .ui.linkedin.button:hover {
475
+ background-color: #147baf;
476
+ color: #FFFFFF;
477
+ text-shadow: none;
478
+ }
479
+ .ui.linkedin.button:active {
480
+ background-color: #186992;
481
+ color: #FFFFFF;
482
+ text-shadow: none;
483
+ }
484
+
485
+ /* YouTube */
486
+ .ui.youtube.button {
487
+ background-color: #FF0000;
488
+ color: #FFFFFF;
489
+ text-shadow: none;
490
+ background-image: none;
491
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
492
+ }
493
+ .ui.youtube.button:hover {
494
+ background-color: #e60000;
495
+ color: #FFFFFF;
496
+ text-shadow: none;
497
+ }
498
+ .ui.youtube.button:active {
499
+ background-color: #cc0000;
500
+ color: #FFFFFF;
501
+ text-shadow: none;
502
+ }
503
+
504
+ /* Instagram */
505
+ .ui.instagram.button {
506
+ background-color: #49769C;
507
+ color: #FFFFFF;
508
+ text-shadow: none;
509
+ background-image: none;
510
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
511
+ }
512
+ .ui.instagram.button:hover {
513
+ background-color: #3d698e;
514
+ color: #FFFFFF;
515
+ text-shadow: none;
516
+ }
517
+ .ui.instagram.button:active {
518
+ background-color: #395c79;
519
+ color: #FFFFFF;
520
+ text-shadow: none;
521
+ }
522
+
523
+ /* Pinterest */
524
+ .ui.pinterest.button {
525
+ background-color: #BD081C;
526
+ color: #FFFFFF;
527
+ text-shadow: none;
528
+ background-image: none;
529
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
530
+ }
531
+ .ui.pinterest.button:hover {
532
+ background-color: #ac0013;
533
+ color: #FFFFFF;
534
+ text-shadow: none;
535
+ }
536
+ .ui.pinterest.button:active {
537
+ background-color: #8c0615;
538
+ color: #FFFFFF;
539
+ text-shadow: none;
540
+ }
541
+
542
+ /* VK */
543
+ .ui.vk.button {
544
+ background-color: #4D7198;
545
+ color: #FFFFFF;
546
+ background-image: none;
547
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
548
+ }
549
+ .ui.vk.button:hover {
550
+ background-color: #41648a;
551
+ color: #FFFFFF;
552
+ }
553
+ .ui.vk.button:active {
554
+ background-color: #3c5876;
555
+ color: #FFFFFF;
556
+ }
557
+
558
+ /*--------------
559
+ Icon
560
+ ---------------*/
561
+
562
+ .ui.button > .icon:not(.button) {
563
+ height: 0.8571em;
564
+ opacity: 0.8;
565
+ margin: 0em 0.4285em 0em -0.2142em;
566
+ transition: opacity 0.1s ease;
567
+ vertical-align: '';
568
+ color: '';
569
+ }
570
+ .ui.button:not(.icon) > .icon:not(.button, .dropdown) {
571
+ margin: 0em 0.4285em 0em -0.2142em;
572
+ }
573
+ .ui.button:not(.icon) > .right.icon:not(.button, .dropdown) {
574
+ margin: 0em -0.2142em 0em 0.4285em;
575
+ }
576
+
577
+
578
+ /*******************************
579
+ Variations
580
+ *******************************/
581
+
582
+
583
+ /*-------------------
584
+ Floated
585
+ --------------------*/
586
+
587
+ .ui[class*="left floated"].buttons,
588
+ .ui[class*="left floated"].button {
589
+ float: left;
590
+ margin-left: 0em;
591
+ margin-right: 0.25em;
592
+ }
593
+ .ui[class*="right floated"].buttons,
594
+ .ui[class*="right floated"].button {
595
+ float: right;
596
+ margin-right: 0em;
597
+ margin-left: 0.25em;
598
+ }
599
+
600
+ /*-------------------
601
+ Compact
602
+ --------------------*/
603
+
604
+ .ui.compact.buttons .button,
605
+ .ui.compact.button {
606
+ padding: 0.5892em 1.125em;
607
+ }
608
+ .ui.compact.icon.buttons .button,
609
+ .ui.compact.icon.button {
610
+ padding: 0.5892em;
611
+ }
612
+ .ui.compact.labeled.icon.buttons .button,
613
+ .ui.compact.labeled.icon.button {
614
+ padding: 0.5892em 3.6964em;
615
+ }
616
+
617
+ /*-------------------
618
+ Sizes
619
+ --------------------*/
620
+
621
+ .ui.mini.buttons .button,
622
+ .ui.mini.buttons .or,
623
+ .ui.mini.button {
624
+ font-size: 0.7857rem;
625
+ }
626
+ .ui.tiny.buttons .button,
627
+ .ui.tiny.buttons .or,
628
+ .ui.tiny.button {
629
+ font-size: 0.8571rem;
630
+ }
631
+ .ui.small.buttons .button,
632
+ .ui.small.buttons .or,
633
+ .ui.small.button {
634
+ font-size: 0.9285rem;
635
+ }
636
+ .ui.buttons .button,
637
+ .ui.buttons .or,
638
+ .ui.button {
639
+ font-size: 1rem;
640
+ }
641
+ .ui.large.buttons .button,
642
+ .ui.large.buttons .or,
643
+ .ui.large.button {
644
+ font-size: 1.1428rem;
645
+ }
646
+ .ui.big.buttons .button,
647
+ .ui.big.buttons .or,
648
+ .ui.big.button {
649
+ font-size: 1.2857rem;
650
+ }
651
+ .ui.huge.buttons .button,
652
+ .ui.huge.buttons .or,
653
+ .ui.huge.button {
654
+ font-size: 1.4285rem;
655
+ }
656
+ .ui.massive.buttons .button,
657
+ .ui.massive.buttons .or,
658
+ .ui.massive.button {
659
+ font-size: 1.7142rem;
660
+ }
661
+
662
+ /*--------------
663
+ Icon Only
664
+ ---------------*/
665
+
666
+ .ui.icon.buttons .button,
667
+ .ui.icon.button {
668
+ padding: 0.7857em;
669
+ }
670
+ .ui.icon.buttons .button > .icon,
671
+ .ui.icon.button > .icon {
672
+ opacity: 0.9;
673
+ margin: 0em !important;
674
+ vertical-align: top;
675
+ }
676
+
677
+ /*-------------------
678
+ Basic
679
+ --------------------*/
680
+
681
+ .ui.basic.buttons .button,
682
+ .ui.basic.button {
683
+ background: transparent none !important;
684
+ color: rgb(0 0 0 / 60%) !important;
685
+ font-weight: normal;
686
+ border-radius: 0.2857rem;
687
+ text-transform: none;
688
+ text-shadow: none !important;
689
+ box-shadow: 0px 0px 0px 1px rgb(34 36 38 / 15%) inset;
690
+ }
691
+ .ui.basic.buttons {
692
+ box-shadow: none;
693
+ border: 1px solid rgb(34 36 38 / 15%);
694
+ border-radius: 0.2857rem;
695
+ }
696
+ .ui.basic.buttons .button {
697
+ border-radius: 0em;
698
+ }
699
+ .ui.basic.buttons .button:hover,
700
+ .ui.basic.button:hover {
701
+ background: #FFFFFF !important;
702
+ color: rgb(0 0 0 / 80%) !important;
703
+ box-shadow: 0px 0px 0px 1px rgb(34 36 38 / 35%) inset, 0px 0px 0px 0px rgb(34 36 38 / 15%) inset;
704
+ }
705
+ .ui.basic.buttons .button:focus,
706
+ .ui.basic.button:focus {
707
+ background: #FFFFFF !important;
708
+ color: rgb(0 0 0 / 80%) !important;
709
+ box-shadow: 0px 0px 0px 1px rgb(34 36 38 / 35%) inset, 0px 0px 0px 0px rgb(34 36 38 / 15%) inset;
710
+ }
711
+ .ui.basic.buttons .button:active,
712
+ .ui.basic.button:active {
713
+ background: #F8F8F8 !important;
714
+ color: rgb(0 0 0 / 90%) !important;
715
+ box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 15%) inset, 0px 1px 4px 0px rgb(34 36 38 / 15%) inset;
716
+ }
717
+ .ui.basic.buttons .active.button,
718
+ .ui.basic.active.button {
719
+ background: rgb(0 0 0 / 5%) !important;
720
+ box-shadow: '' !important;
721
+ color: rgb(0 0 0 / 95%) !important;
722
+ }
723
+ .ui.basic.buttons .active.button:hover,
724
+ .ui.basic.active.button:hover {
725
+ background-color: rgb(0 0 0 / 5%);
726
+ }
727
+
728
+ /* Vertical */
729
+ .ui.basic.buttons .button:hover {
730
+ box-shadow: 0px 0px 0px 1px rgb(34 36 38 / 35%) inset, 0px 0px 0px 0px rgb(34 36 38 / 15%) inset inset;
731
+ }
732
+ .ui.basic.buttons .button:active {
733
+ box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 15%) inset, 0px 1px 4px 0px rgb(34 36 38 / 15%) inset inset;
734
+ }
735
+ .ui.basic.buttons .active.button {
736
+ box-shadow: '' !important;
737
+ }
738
+
739
+ /* Standard Basic Inverted */
740
+ .ui.basic.inverted.buttons .button,
741
+ .ui.basic.inverted.button {
742
+ background-color: transparent !important;
743
+ color: #F9FAFB !important;
744
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
745
+ }
746
+ .ui.basic.inverted.buttons .button:hover,
747
+ .ui.basic.inverted.button:hover {
748
+ color: #FFFFFF !important;
749
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
750
+ }
751
+ .ui.basic.inverted.buttons .button:focus,
752
+ .ui.basic.inverted.button:focus {
753
+ color: #FFFFFF !important;
754
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
755
+ }
756
+ .ui.basic.inverted.buttons .button:active,
757
+ .ui.basic.inverted.button:active {
758
+ background-color: rgb(255 255 255 / 8%) !important;
759
+ color: #FFFFFF !important;
760
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 90%) inset !important;
761
+ }
762
+ .ui.basic.inverted.buttons .active.button,
763
+ .ui.basic.inverted.active.button {
764
+ background-color: rgb(255 255 255 / 8%);
765
+ color: #FFFFFF;
766
+ text-shadow: none;
767
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 70%) inset;
768
+ }
769
+ .ui.basic.inverted.buttons .active.button:hover,
770
+ .ui.basic.inverted.active.button:hover {
771
+ background-color: rgb(255 255 255 / 15%);
772
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
773
+ }
774
+
775
+ /* Basic Group */
776
+ .ui.basic.buttons .button {
777
+ border-left: 1px solid rgb(34 36 38 / 15%);
778
+ box-shadow: none;
779
+ }
780
+ .ui.basic.vertical.buttons .button {
781
+ border-left: none;
782
+ }
783
+ .ui.basic.vertical.buttons .button {
784
+ border-left-width: 0px;
785
+ border-top: 1px solid rgb(34 36 38 / 15%);
786
+ }
787
+ .ui.basic.vertical.buttons .button:first-child {
788
+ border-top-width: 0px;
789
+ }
790
+
791
+ /*--------------
792
+ Labeled Icon
793
+ ---------------*/
794
+
795
+ .ui.labeled.icon.buttons .button,
796
+ .ui.labeled.icon.button {
797
+ position: relative;
798
+ padding-left: 4.0714em !important;
799
+ padding-right: 1.5em !important;
800
+ }
801
+
802
+ /* Left Labeled */
803
+ .ui.labeled.icon.buttons > .button > .icon,
804
+ .ui.labeled.icon.button > .icon {
805
+ position: absolute;
806
+ height: 100%;
807
+ line-height: 1;
808
+ border-radius: 0px;
809
+ border-top-left-radius: inherit;
810
+ border-bottom-left-radius: inherit;
811
+ text-align: center;
812
+ margin: 0em;
813
+ width: 2.571em;
814
+ background-color: rgb(0 0 0 / 5%);
815
+ color: '';
816
+ box-shadow: -1px 0px 0px 0px transparent inset;
817
+ }
818
+
819
+ /* Left Labeled */
820
+ .ui.labeled.icon.buttons > .button > .icon,
821
+ .ui.labeled.icon.button > .icon {
822
+ top: 0em;
823
+ left: 0em;
824
+ }
825
+
826
+ /* Right Labeled */
827
+ .ui[class*="right labeled"].icon.button {
828
+ padding-right: 4.0714em !important;
829
+ padding-left: 1.5em !important;
830
+ }
831
+ .ui[class*="right labeled"].icon.button > .icon {
832
+ left: auto;
833
+ right: 0em;
834
+ border-radius: 0px;
835
+ border-top-right-radius: inherit;
836
+ border-bottom-right-radius: inherit;
837
+ box-shadow: 1px 0px 0px 0px transparent inset;
838
+ }
839
+ .ui.labeled.icon.buttons > .button > .icon::before,
840
+ .ui.labeled.icon.button > .icon::before,
841
+ .ui.labeled.icon.buttons > .button > .icon::after,
842
+ .ui.labeled.icon.button > .icon::after {
843
+ display: block;
844
+ position: absolute;
845
+ width: 100%;
846
+ top: 50%;
847
+ text-align: center;
848
+ transform: translateY(-50%);
849
+ }
850
+ .ui.labeled.icon.buttons .button > .icon {
851
+ border-radius: 0em;
852
+ }
853
+ .ui.labeled.icon.buttons .button:first-child > .icon {
854
+ border-top-left-radius: 0.2857rem;
855
+ border-bottom-left-radius: 0.2857rem;
856
+ }
857
+ .ui.labeled.icon.buttons .button:last-child > .icon {
858
+ border-top-right-radius: 0.2857rem;
859
+ border-bottom-right-radius: 0.2857rem;
860
+ }
861
+ .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
862
+ border-radius: 0em;
863
+ border-top-left-radius: 0.2857rem;
864
+ }
865
+ .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
866
+ border-radius: 0em;
867
+ border-bottom-left-radius: 0.2857rem;
868
+ }
869
+
870
+ /* Fluid Labeled */
871
+ .ui.fluid[class*="left labeled"].icon.button,
872
+ .ui.fluid[class*="right labeled"].icon.button {
873
+ padding-left: 1.5em !important;
874
+ padding-right: 1.5em !important;
875
+ }
876
+
877
+ /*--------------
878
+ Toggle
879
+ ---------------*/
880
+
881
+
882
+ /* Toggle (Modifies active state to give affordances) */
883
+ .ui.toggle.buttons .active.button,
884
+ .ui.buttons .button.toggle.active,
885
+ .ui.button.toggle.active {
886
+ background-color: #21BA45 !important;
887
+ box-shadow: none !important;
888
+ text-shadow: none;
889
+ color: #FFFFFF !important;
890
+ }
891
+ .ui.button.toggle.active:hover {
892
+ background-color: #16ab39 !important;
893
+ text-shadow: none;
894
+ color: #FFFFFF !important;
895
+ }
896
+
897
+ /*--------------
898
+ Circular
899
+ ---------------*/
900
+
901
+ .ui.circular.button {
902
+ border-radius: 10em;
903
+ }
904
+ .ui.circular.button > .icon {
905
+ width: 1em;
906
+ vertical-align: baseline;
907
+ }
908
+
909
+ /*-------------------
910
+ Or Buttons
911
+ --------------------*/
912
+
913
+ .ui.buttons .or {
914
+ position: relative;
915
+ width: 0.3em;
916
+ height: 2.5714em;
917
+ z-index: 3;
918
+ }
919
+ .ui.buttons .or::before {
920
+ position: absolute;
921
+ text-align: center;
922
+ border-radius: 500rem;
923
+ content: 'or';
924
+ top: 50%;
925
+ left: 50%;
926
+ background-color: #FFFFFF;
927
+ text-shadow: none;
928
+ margin-top: -0.8928em;
929
+ margin-left: -0.8928em;
930
+ width: 1.7857em;
931
+ height: 1.7857em;
932
+ line-height: 1.7857em;
933
+ color: rgb(0 0 0 / 40%);
934
+ font-style: normal;
935
+ font-weight: bold;
936
+ box-shadow: 0px 0px 0px 1px transparent inset;
937
+ }
938
+ .ui.buttons .or[data-text]::before {
939
+ content: attr(data-text);
940
+ }
941
+
942
+ /* Fluid Or */
943
+ .ui.fluid.buttons .or {
944
+ width: 0em !important;
945
+ }
946
+ .ui.fluid.buttons .or::after {
947
+ display: none;
948
+ }
949
+
950
+ /*-------------------
951
+ Attached
952
+ --------------------*/
953
+
954
+
955
+ /* Singular */
956
+ .ui.attached.button {
957
+ position: relative;
958
+ display: block;
959
+ margin: 0em;
960
+ border-radius: 0em;
961
+ box-shadow: 0px 0px 0px 1px rgb(34 36 38 / 15%) !important;
962
+ }
963
+
964
+ /* Top / Bottom */
965
+ .ui.attached.top.button {
966
+ border-radius: 0.2857rem 0.2857rem 0em 0em;
967
+ }
968
+ .ui.attached.bottom.button {
969
+ border-radius: 0em 0em 0.2857rem 0.2857rem;
970
+ }
971
+
972
+ /* Left / Right */
973
+ .ui.left.attached.button {
974
+ display: inline-block;
975
+ border-left: none;
976
+ text-align: right;
977
+ padding-right: 0.75em;
978
+ border-radius: 0.2857rem 0em 0em 0.2857rem;
979
+ }
980
+ .ui.right.attached.button {
981
+ display: inline-block;
982
+ text-align: left;
983
+ padding-left: 0.75em;
984
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
985
+ }
986
+
987
+ /* Plural */
988
+ .ui.attached.buttons {
989
+ position: relative;
990
+ display: flex;
991
+ border-radius: 0em;
992
+ width: auto !important;
993
+ z-index: 2;
994
+ margin-left: -1px;
995
+ margin-right: -1px;
996
+ }
997
+ .ui.attached.buttons .button {
998
+ margin: 0em;
999
+ }
1000
+ .ui.attached.buttons .button:first-child {
1001
+ border-radius: 0em;
1002
+ }
1003
+ .ui.attached.buttons .button:last-child {
1004
+ border-radius: 0em;
1005
+ }
1006
+
1007
+ /* Top / Bottom */
1008
+ .ui[class*="top attached"].buttons {
1009
+ margin-bottom: -1px;
1010
+ border-radius: 0.2857rem 0.2857rem 0em 0em;
1011
+ }
1012
+ .ui[class*="top attached"].buttons .button:first-child {
1013
+ border-radius: 0.2857rem 0em 0em;
1014
+ }
1015
+ .ui[class*="top attached"].buttons .button:last-child {
1016
+ border-radius: 0em 0.2857rem 0em 0em;
1017
+ }
1018
+ .ui[class*="bottom attached"].buttons {
1019
+ margin-top: -1px;
1020
+ border-radius: 0em 0em 0.2857rem 0.2857rem;
1021
+ }
1022
+ .ui[class*="bottom attached"].buttons .button:first-child {
1023
+ border-radius: 0em 0em 0em 0.2857rem;
1024
+ }
1025
+ .ui[class*="bottom attached"].buttons .button:last-child {
1026
+ border-radius: 0em 0em 0.2857rem;
1027
+ }
1028
+
1029
+ /* Left / Right */
1030
+ .ui[class*="left attached"].buttons {
1031
+ display: inline-flex;
1032
+ margin-right: 0em;
1033
+ margin-left: -1px;
1034
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
1035
+ }
1036
+ .ui[class*="left attached"].buttons .button:first-child {
1037
+ margin-left: -1px;
1038
+ border-radius: 0em 0.2857rem 0em 0em;
1039
+ }
1040
+ .ui[class*="left attached"].buttons .button:last-child {
1041
+ margin-left: -1px;
1042
+ border-radius: 0em 0em 0.2857rem;
1043
+ }
1044
+ .ui[class*="right attached"].buttons {
1045
+ display: inline-flex;
1046
+ margin-left: 0em;
1047
+ margin-right: -1px;
1048
+ border-radius: 0.2857rem 0em 0em 0.2857rem;
1049
+ }
1050
+ .ui[class*="right attached"].buttons .button:first-child {
1051
+ margin-left: -1px;
1052
+ border-radius: 0.2857rem 0em 0em;
1053
+ }
1054
+ .ui[class*="right attached"].buttons .button:last-child {
1055
+ margin-left: -1px;
1056
+ border-radius: 0em 0em 0em 0.2857rem;
1057
+ }
1058
+
1059
+ /*-------------------
1060
+ Fluid
1061
+ --------------------*/
1062
+
1063
+ .ui.fluid.buttons,
1064
+ .ui.fluid.button {
1065
+ width: 100%;
1066
+ }
1067
+ .ui.fluid.button {
1068
+ display: block;
1069
+ }
1070
+ .ui.two.buttons {
1071
+ width: 100%;
1072
+ }
1073
+ .ui.two.buttons > .button {
1074
+ width: 50%;
1075
+ }
1076
+ .ui.three.buttons {
1077
+ width: 100%;
1078
+ }
1079
+ .ui.three.buttons > .button {
1080
+ width: 33.333%;
1081
+ }
1082
+ .ui.four.buttons {
1083
+ width: 100%;
1084
+ }
1085
+ .ui.four.buttons > .button {
1086
+ width: 25%;
1087
+ }
1088
+ .ui.five.buttons {
1089
+ width: 100%;
1090
+ }
1091
+ .ui.five.buttons > .button {
1092
+ width: 20%;
1093
+ }
1094
+ .ui.six.buttons {
1095
+ width: 100%;
1096
+ }
1097
+ .ui.six.buttons > .button {
1098
+ width: 16.666%;
1099
+ }
1100
+ .ui.seven.buttons {
1101
+ width: 100%;
1102
+ }
1103
+ .ui.seven.buttons > .button {
1104
+ width: 14.285%;
1105
+ }
1106
+ .ui.eight.buttons {
1107
+ width: 100%;
1108
+ }
1109
+ .ui.eight.buttons > .button {
1110
+ width: 12.5%;
1111
+ }
1112
+ .ui.nine.buttons {
1113
+ width: 100%;
1114
+ }
1115
+ .ui.nine.buttons > .button {
1116
+ width: 11.11%;
1117
+ }
1118
+ .ui.ten.buttons {
1119
+ width: 100%;
1120
+ }
1121
+ .ui.ten.buttons > .button {
1122
+ width: 10%;
1123
+ }
1124
+ .ui.eleven.buttons {
1125
+ width: 100%;
1126
+ }
1127
+ .ui.eleven.buttons > .button {
1128
+ width: 9.09%;
1129
+ }
1130
+ .ui.twelve.buttons {
1131
+ width: 100%;
1132
+ }
1133
+ .ui.twelve.buttons > .button {
1134
+ width: 8.3333%;
1135
+ }
1136
+
1137
+ /* Fluid Vertical Buttons */
1138
+ .ui.fluid.vertical.buttons,
1139
+ .ui.fluid.vertical.buttons > .button {
1140
+ display: flex;
1141
+ width: auto;
1142
+ }
1143
+ .ui.two.vertical.buttons > .button {
1144
+ height: 50%;
1145
+ }
1146
+ .ui.three.vertical.buttons > .button {
1147
+ height: 33.333%;
1148
+ }
1149
+ .ui.four.vertical.buttons > .button {
1150
+ height: 25%;
1151
+ }
1152
+ .ui.five.vertical.buttons > .button {
1153
+ height: 20%;
1154
+ }
1155
+ .ui.six.vertical.buttons > .button {
1156
+ height: 16.666%;
1157
+ }
1158
+ .ui.seven.vertical.buttons > .button {
1159
+ height: 14.285%;
1160
+ }
1161
+ .ui.eight.vertical.buttons > .button {
1162
+ height: 12.5%;
1163
+ }
1164
+ .ui.nine.vertical.buttons > .button {
1165
+ height: 11.11%;
1166
+ }
1167
+ .ui.ten.vertical.buttons > .button {
1168
+ height: 10%;
1169
+ }
1170
+ .ui.eleven.vertical.buttons > .button {
1171
+ height: 9.09%;
1172
+ }
1173
+ .ui.twelve.vertical.buttons > .button {
1174
+ height: 8.3333%;
1175
+ }
1176
+
1177
+ /*-------------------
1178
+ Colors
1179
+ --------------------*/
1180
+
1181
+
1182
+ /*--- Black ---*/
1183
+
1184
+ .ui.black.buttons .button,
1185
+ .ui.black.button {
1186
+ background-color: #1B1C1D;
1187
+ color: #FFFFFF;
1188
+ text-shadow: none;
1189
+ background-image: none;
1190
+ }
1191
+ .ui.black.button {
1192
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
1193
+ }
1194
+ .ui.black.buttons .button:hover,
1195
+ .ui.black.button:hover {
1196
+ background-color: #27292a;
1197
+ color: #FFFFFF;
1198
+ text-shadow: none;
1199
+ }
1200
+ .ui.black.buttons .button:focus,
1201
+ .ui.black.button:focus {
1202
+ background-color: #2f3032;
1203
+ color: #FFFFFF;
1204
+ text-shadow: none;
1205
+ }
1206
+ .ui.black.buttons .button:active,
1207
+ .ui.black.button:active {
1208
+ background-color: #343637;
1209
+ color: #FFFFFF;
1210
+ text-shadow: none;
1211
+ }
1212
+ .ui.black.buttons .active.button,
1213
+ .ui.black.buttons .active.button:active,
1214
+ .ui.black.active.button,
1215
+ .ui.black.button .active.button:active {
1216
+ background-color: #0f0f10;
1217
+ color: #FFFFFF;
1218
+ text-shadow: none;
1219
+ }
1220
+
1221
+ /* Basic */
1222
+ .ui.basic.black.buttons .button,
1223
+ .ui.basic.black.button {
1224
+ box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
1225
+ color: #1B1C1D !important;
1226
+ }
1227
+ .ui.basic.black.buttons .button:hover,
1228
+ .ui.basic.black.button:hover {
1229
+ background: transparent !important;
1230
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
1231
+ color: #27292a !important;
1232
+ }
1233
+ .ui.basic.black.buttons .button:focus,
1234
+ .ui.basic.black.button:focus {
1235
+ background: transparent !important;
1236
+ box-shadow: 0px 0px 0px 1px #2f3032 inset !important;
1237
+ color: #27292a !important;
1238
+ }
1239
+ .ui.basic.black.buttons .active.button,
1240
+ .ui.basic.black.active.button {
1241
+ background: transparent !important;
1242
+ box-shadow: 0px 0px 0px 1px #0f0f10 inset !important;
1243
+ color: #343637 !important;
1244
+ }
1245
+ .ui.basic.black.buttons .button:active,
1246
+ .ui.basic.black.button:active {
1247
+ box-shadow: 0px 0px 0px 1px #343637 inset !important;
1248
+ color: #343637 !important;
1249
+ }
1250
+ .ui.buttons:not(.vertical) > .basic.black.button:not(:first-child) {
1251
+ margin-left: -1px;
1252
+ }
1253
+
1254
+ /* Inverted */
1255
+ .ui.inverted.black.buttons .button,
1256
+ .ui.inverted.black.button {
1257
+ background-color: transparent;
1258
+ box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1259
+ color: #FFFFFF;
1260
+ }
1261
+ .ui.inverted.black.buttons .button:hover,
1262
+ .ui.inverted.black.button:hover,
1263
+ .ui.inverted.black.buttons .button:focus,
1264
+ .ui.inverted.black.button:focus,
1265
+ .ui.inverted.black.buttons .button.active,
1266
+ .ui.inverted.black.button.active,
1267
+ .ui.inverted.black.buttons .button:active,
1268
+ .ui.inverted.black.button:active {
1269
+ box-shadow: none !important;
1270
+ color: #FFFFFF;
1271
+ }
1272
+ .ui.inverted.black.buttons .button:hover,
1273
+ .ui.inverted.black.button:hover {
1274
+ background-color: #000000;
1275
+ }
1276
+ .ui.inverted.black.buttons .button:focus,
1277
+ .ui.inverted.black.button:focus {
1278
+ background-color: #000000;
1279
+ }
1280
+ .ui.inverted.black.buttons .active.button,
1281
+ .ui.inverted.black.active.button {
1282
+ background-color: #000000;
1283
+ }
1284
+ .ui.inverted.black.buttons .button:active,
1285
+ .ui.inverted.black.button:active {
1286
+ background-color: #000000;
1287
+ }
1288
+
1289
+ /* Inverted Basic */
1290
+ .ui.inverted.black.basic.buttons .button,
1291
+ .ui.inverted.black.buttons .basic.button,
1292
+ .ui.inverted.black.basic.button {
1293
+ background-color: transparent;
1294
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
1295
+ color: #FFFFFF !important;
1296
+ }
1297
+ .ui.inverted.black.basic.buttons .button:hover,
1298
+ .ui.inverted.black.buttons .basic.button:hover,
1299
+ .ui.inverted.black.basic.button:hover {
1300
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1301
+ color: #FFFFFF !important;
1302
+ }
1303
+ .ui.inverted.black.basic.buttons .button:focus,
1304
+ .ui.inverted.black.basic.buttons .button:focus,
1305
+ .ui.inverted.black.basic.button:focus {
1306
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1307
+ color: #545454 !important;
1308
+ }
1309
+ .ui.inverted.black.basic.buttons .active.button,
1310
+ .ui.inverted.black.buttons .basic.active.button,
1311
+ .ui.inverted.black.basic.active.button {
1312
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1313
+ color: #FFFFFF !important;
1314
+ }
1315
+ .ui.inverted.black.basic.buttons .button:active,
1316
+ .ui.inverted.black.buttons .basic.button:active,
1317
+ .ui.inverted.black.basic.button:active {
1318
+ box-shadow: 0px 0px 0px 2px #000000 inset !important;
1319
+ color: #FFFFFF !important;
1320
+ }
1321
+
1322
+ /*--- Grey ---*/
1323
+
1324
+ .ui.grey.buttons .button,
1325
+ .ui.grey.button {
1326
+ background-color: #767676;
1327
+ color: #FFFFFF;
1328
+ text-shadow: none;
1329
+ background-image: none;
1330
+ }
1331
+ .ui.grey.button {
1332
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
1333
+ }
1334
+ .ui.grey.buttons .button:hover,
1335
+ .ui.grey.button:hover {
1336
+ background-color: #838383;
1337
+ color: #FFFFFF;
1338
+ text-shadow: none;
1339
+ }
1340
+ .ui.grey.buttons .button:focus,
1341
+ .ui.grey.button:focus {
1342
+ background-color: #8a8a8a;
1343
+ color: #FFFFFF;
1344
+ text-shadow: none;
1345
+ }
1346
+ .ui.grey.buttons .button:active,
1347
+ .ui.grey.button:active {
1348
+ background-color: #909090;
1349
+ color: #FFFFFF;
1350
+ text-shadow: none;
1351
+ }
1352
+ .ui.grey.buttons .active.button,
1353
+ .ui.grey.buttons .active.button:active,
1354
+ .ui.grey.active.button,
1355
+ .ui.grey.button .active.button:active {
1356
+ background-color: #696969;
1357
+ color: #FFFFFF;
1358
+ text-shadow: none;
1359
+ }
1360
+
1361
+ /* Basic */
1362
+ .ui.basic.grey.buttons .button,
1363
+ .ui.basic.grey.button {
1364
+ box-shadow: 0px 0px 0px 1px #767676 inset !important;
1365
+ color: #767676 !important;
1366
+ }
1367
+ .ui.basic.grey.buttons .button:hover,
1368
+ .ui.basic.grey.button:hover {
1369
+ background: transparent !important;
1370
+ box-shadow: 0px 0px 0px 1px #838383 inset !important;
1371
+ color: #838383 !important;
1372
+ }
1373
+ .ui.basic.grey.buttons .button:focus,
1374
+ .ui.basic.grey.button:focus {
1375
+ background: transparent !important;
1376
+ box-shadow: 0px 0px 0px 1px #8a8a8a inset !important;
1377
+ color: #838383 !important;
1378
+ }
1379
+ .ui.basic.grey.buttons .active.button,
1380
+ .ui.basic.grey.active.button {
1381
+ background: transparent !important;
1382
+ box-shadow: 0px 0px 0px 1px #696969 inset !important;
1383
+ color: #909090 !important;
1384
+ }
1385
+ .ui.basic.grey.buttons .button:active,
1386
+ .ui.basic.grey.button:active {
1387
+ box-shadow: 0px 0px 0px 1px #909090 inset !important;
1388
+ color: #909090 !important;
1389
+ }
1390
+ .ui.buttons:not(.vertical) > .basic.grey.button:not(:first-child) {
1391
+ margin-left: -1px;
1392
+ }
1393
+
1394
+ /* Inverted */
1395
+ .ui.inverted.grey.buttons .button,
1396
+ .ui.inverted.grey.button {
1397
+ background-color: transparent;
1398
+ box-shadow: 0px 0px 0px 2px #D4D4D5 inset !important;
1399
+ color: #FFFFFF;
1400
+ }
1401
+ .ui.inverted.grey.buttons .button:hover,
1402
+ .ui.inverted.grey.button:hover,
1403
+ .ui.inverted.grey.buttons .button:focus,
1404
+ .ui.inverted.grey.button:focus,
1405
+ .ui.inverted.grey.buttons .button.active,
1406
+ .ui.inverted.grey.button.active,
1407
+ .ui.inverted.grey.buttons .button:active,
1408
+ .ui.inverted.grey.button:active {
1409
+ box-shadow: none !important;
1410
+ color: rgb(0 0 0 / 60%);
1411
+ }
1412
+ .ui.inverted.grey.buttons .button:hover,
1413
+ .ui.inverted.grey.button:hover {
1414
+ background-color: #cfd0d2;
1415
+ }
1416
+ .ui.inverted.grey.buttons .button:focus,
1417
+ .ui.inverted.grey.button:focus {
1418
+ background-color: #c7c9cb;
1419
+ }
1420
+ .ui.inverted.grey.buttons .active.button,
1421
+ .ui.inverted.grey.active.button {
1422
+ background-color: #cfd0d2;
1423
+ }
1424
+ .ui.inverted.grey.buttons .button:active,
1425
+ .ui.inverted.grey.button:active {
1426
+ background-color: #c2c4c5;
1427
+ }
1428
+
1429
+ /* Inverted Basic */
1430
+ .ui.inverted.grey.basic.buttons .button,
1431
+ .ui.inverted.grey.buttons .basic.button,
1432
+ .ui.inverted.grey.basic.button {
1433
+ background-color: transparent;
1434
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
1435
+ color: #FFFFFF !important;
1436
+ }
1437
+ .ui.inverted.grey.basic.buttons .button:hover,
1438
+ .ui.inverted.grey.buttons .basic.button:hover,
1439
+ .ui.inverted.grey.basic.button:hover {
1440
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1441
+ color: #FFFFFF !important;
1442
+ }
1443
+ .ui.inverted.grey.basic.buttons .button:focus,
1444
+ .ui.inverted.grey.basic.buttons .button:focus,
1445
+ .ui.inverted.grey.basic.button:focus {
1446
+ box-shadow: 0px 0px 0px 2px #c7c9cb inset !important;
1447
+ color: #DCDDDE !important;
1448
+ }
1449
+ .ui.inverted.grey.basic.buttons .active.button,
1450
+ .ui.inverted.grey.buttons .basic.active.button,
1451
+ .ui.inverted.grey.basic.active.button {
1452
+ box-shadow: 0px 0px 0px 2px #cfd0d2 inset !important;
1453
+ color: #FFFFFF !important;
1454
+ }
1455
+ .ui.inverted.grey.basic.buttons .button:active,
1456
+ .ui.inverted.grey.buttons .basic.button:active,
1457
+ .ui.inverted.grey.basic.button:active {
1458
+ box-shadow: 0px 0px 0px 2px #c2c4c5 inset !important;
1459
+ color: #FFFFFF !important;
1460
+ }
1461
+
1462
+ /*--- Brown ---*/
1463
+
1464
+ .ui.brown.buttons .button,
1465
+ .ui.brown.button {
1466
+ background-color: #A5673F;
1467
+ color: #FFFFFF;
1468
+ text-shadow: none;
1469
+ background-image: none;
1470
+ }
1471
+ .ui.brown.button {
1472
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
1473
+ }
1474
+ .ui.brown.buttons .button:hover,
1475
+ .ui.brown.button:hover {
1476
+ background-color: #975b33;
1477
+ color: #FFFFFF;
1478
+ text-shadow: none;
1479
+ }
1480
+ .ui.brown.buttons .button:focus,
1481
+ .ui.brown.button:focus {
1482
+ background-color: #90532b;
1483
+ color: #FFFFFF;
1484
+ text-shadow: none;
1485
+ }
1486
+ .ui.brown.buttons .button:active,
1487
+ .ui.brown.button:active {
1488
+ background-color: #805031;
1489
+ color: #FFFFFF;
1490
+ text-shadow: none;
1491
+ }
1492
+ .ui.brown.buttons .active.button,
1493
+ .ui.brown.buttons .active.button:active,
1494
+ .ui.brown.active.button,
1495
+ .ui.brown.button .active.button:active {
1496
+ background-color: #995a31;
1497
+ color: #FFFFFF;
1498
+ text-shadow: none;
1499
+ }
1500
+
1501
+ /* Basic */
1502
+ .ui.basic.brown.buttons .button,
1503
+ .ui.basic.brown.button {
1504
+ box-shadow: 0px 0px 0px 1px #A5673F inset !important;
1505
+ color: #A5673F !important;
1506
+ }
1507
+ .ui.basic.brown.buttons .button:hover,
1508
+ .ui.basic.brown.button:hover {
1509
+ background: transparent !important;
1510
+ box-shadow: 0px 0px 0px 1px #975b33 inset !important;
1511
+ color: #975b33 !important;
1512
+ }
1513
+ .ui.basic.brown.buttons .button:focus,
1514
+ .ui.basic.brown.button:focus {
1515
+ background: transparent !important;
1516
+ box-shadow: 0px 0px 0px 1px #90532b inset !important;
1517
+ color: #975b33 !important;
1518
+ }
1519
+ .ui.basic.brown.buttons .active.button,
1520
+ .ui.basic.brown.active.button {
1521
+ background: transparent !important;
1522
+ box-shadow: 0px 0px 0px 1px #995a31 inset !important;
1523
+ color: #805031 !important;
1524
+ }
1525
+ .ui.basic.brown.buttons .button:active,
1526
+ .ui.basic.brown.button:active {
1527
+ box-shadow: 0px 0px 0px 1px #805031 inset !important;
1528
+ color: #805031 !important;
1529
+ }
1530
+ .ui.buttons:not(.vertical) > .basic.brown.button:not(:first-child) {
1531
+ margin-left: -1px;
1532
+ }
1533
+
1534
+ /* Inverted */
1535
+ .ui.inverted.brown.buttons .button,
1536
+ .ui.inverted.brown.button {
1537
+ background-color: transparent;
1538
+ box-shadow: 0px 0px 0px 2px #D67C1C inset !important;
1539
+ color: #D67C1C;
1540
+ }
1541
+ .ui.inverted.brown.buttons .button:hover,
1542
+ .ui.inverted.brown.button:hover,
1543
+ .ui.inverted.brown.buttons .button:focus,
1544
+ .ui.inverted.brown.button:focus,
1545
+ .ui.inverted.brown.buttons .button.active,
1546
+ .ui.inverted.brown.button.active,
1547
+ .ui.inverted.brown.buttons .button:active,
1548
+ .ui.inverted.brown.button:active {
1549
+ box-shadow: none !important;
1550
+ color: #FFFFFF;
1551
+ }
1552
+ .ui.inverted.brown.buttons .button:hover,
1553
+ .ui.inverted.brown.button:hover {
1554
+ background-color: #c86f11;
1555
+ }
1556
+ .ui.inverted.brown.buttons .button:focus,
1557
+ .ui.inverted.brown.button:focus {
1558
+ background-color: #c16808;
1559
+ }
1560
+ .ui.inverted.brown.buttons .active.button,
1561
+ .ui.inverted.brown.active.button {
1562
+ background-color: #cc6f0d;
1563
+ }
1564
+ .ui.inverted.brown.buttons .button:active,
1565
+ .ui.inverted.brown.button:active {
1566
+ background-color: #a96216;
1567
+ }
1568
+
1569
+ /* Inverted Basic */
1570
+ .ui.inverted.brown.basic.buttons .button,
1571
+ .ui.inverted.brown.buttons .basic.button,
1572
+ .ui.inverted.brown.basic.button {
1573
+ background-color: transparent;
1574
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
1575
+ color: #FFFFFF !important;
1576
+ }
1577
+ .ui.inverted.brown.basic.buttons .button:hover,
1578
+ .ui.inverted.brown.buttons .basic.button:hover,
1579
+ .ui.inverted.brown.basic.button:hover {
1580
+ box-shadow: 0px 0px 0px 2px #c86f11 inset !important;
1581
+ color: #D67C1C !important;
1582
+ }
1583
+ .ui.inverted.brown.basic.buttons .button:focus,
1584
+ .ui.inverted.brown.basic.buttons .button:focus,
1585
+ .ui.inverted.brown.basic.button:focus {
1586
+ box-shadow: 0px 0px 0px 2px #c16808 inset !important;
1587
+ color: #D67C1C !important;
1588
+ }
1589
+ .ui.inverted.brown.basic.buttons .active.button,
1590
+ .ui.inverted.brown.buttons .basic.active.button,
1591
+ .ui.inverted.brown.basic.active.button {
1592
+ box-shadow: 0px 0px 0px 2px #cc6f0d inset !important;
1593
+ color: #D67C1C !important;
1594
+ }
1595
+ .ui.inverted.brown.basic.buttons .button:active,
1596
+ .ui.inverted.brown.buttons .basic.button:active,
1597
+ .ui.inverted.brown.basic.button:active {
1598
+ box-shadow: 0px 0px 0px 2px #a96216 inset !important;
1599
+ color: #D67C1C !important;
1600
+ }
1601
+
1602
+ /*--- Blue ---*/
1603
+
1604
+ .ui.blue.buttons .button,
1605
+ .ui.blue.button {
1606
+ background-color: #2185D0;
1607
+ color: #FFFFFF;
1608
+ text-shadow: none;
1609
+ background-image: none;
1610
+ }
1611
+ .ui.blue.button {
1612
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
1613
+ }
1614
+ .ui.blue.buttons .button:hover,
1615
+ .ui.blue.button:hover {
1616
+ background-color: #1678c2;
1617
+ color: #FFFFFF;
1618
+ text-shadow: none;
1619
+ }
1620
+ .ui.blue.buttons .button:focus,
1621
+ .ui.blue.button:focus {
1622
+ background-color: #0d71bb;
1623
+ color: #FFFFFF;
1624
+ text-shadow: none;
1625
+ }
1626
+ .ui.blue.buttons .button:active,
1627
+ .ui.blue.button:active {
1628
+ background-color: #1a69a4;
1629
+ color: #FFFFFF;
1630
+ text-shadow: none;
1631
+ }
1632
+ .ui.blue.buttons .active.button,
1633
+ .ui.blue.buttons .active.button:active,
1634
+ .ui.blue.active.button,
1635
+ .ui.blue.button .active.button:active {
1636
+ background-color: #1279c6;
1637
+ color: #FFFFFF;
1638
+ text-shadow: none;
1639
+ }
1640
+
1641
+ /* Basic */
1642
+ .ui.basic.blue.buttons .button,
1643
+ .ui.basic.blue.button {
1644
+ box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
1645
+ color: #2185D0 !important;
1646
+ }
1647
+ .ui.basic.blue.buttons .button:hover,
1648
+ .ui.basic.blue.button:hover {
1649
+ background: transparent !important;
1650
+ box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
1651
+ color: #1678c2 !important;
1652
+ }
1653
+ .ui.basic.blue.buttons .button:focus,
1654
+ .ui.basic.blue.button:focus {
1655
+ background: transparent !important;
1656
+ box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
1657
+ color: #1678c2 !important;
1658
+ }
1659
+ .ui.basic.blue.buttons .active.button,
1660
+ .ui.basic.blue.active.button {
1661
+ background: transparent !important;
1662
+ box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
1663
+ color: #1a69a4 !important;
1664
+ }
1665
+ .ui.basic.blue.buttons .button:active,
1666
+ .ui.basic.blue.button:active {
1667
+ box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
1668
+ color: #1a69a4 !important;
1669
+ }
1670
+ .ui.buttons:not(.vertical) > .basic.blue.button:not(:first-child) {
1671
+ margin-left: -1px;
1672
+ }
1673
+
1674
+ /* Inverted */
1675
+ .ui.inverted.blue.buttons .button,
1676
+ .ui.inverted.blue.button {
1677
+ background-color: transparent;
1678
+ box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
1679
+ color: #54C8FF;
1680
+ }
1681
+ .ui.inverted.blue.buttons .button:hover,
1682
+ .ui.inverted.blue.button:hover,
1683
+ .ui.inverted.blue.buttons .button:focus,
1684
+ .ui.inverted.blue.button:focus,
1685
+ .ui.inverted.blue.buttons .button.active,
1686
+ .ui.inverted.blue.button.active,
1687
+ .ui.inverted.blue.buttons .button:active,
1688
+ .ui.inverted.blue.button:active {
1689
+ box-shadow: none !important;
1690
+ color: #FFFFFF;
1691
+ }
1692
+ .ui.inverted.blue.buttons .button:hover,
1693
+ .ui.inverted.blue.button:hover {
1694
+ background-color: #3ac0ff;
1695
+ }
1696
+ .ui.inverted.blue.buttons .button:focus,
1697
+ .ui.inverted.blue.button:focus {
1698
+ background-color: #2bbbff;
1699
+ }
1700
+ .ui.inverted.blue.buttons .active.button,
1701
+ .ui.inverted.blue.active.button {
1702
+ background-color: #3ac0ff;
1703
+ }
1704
+ .ui.inverted.blue.buttons .button:active,
1705
+ .ui.inverted.blue.button:active {
1706
+ background-color: #21b8ff;
1707
+ }
1708
+
1709
+ /* Inverted Basic */
1710
+ .ui.inverted.blue.basic.buttons .button,
1711
+ .ui.inverted.blue.buttons .basic.button,
1712
+ .ui.inverted.blue.basic.button {
1713
+ background-color: transparent;
1714
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
1715
+ color: #FFFFFF !important;
1716
+ }
1717
+ .ui.inverted.blue.basic.buttons .button:hover,
1718
+ .ui.inverted.blue.buttons .basic.button:hover,
1719
+ .ui.inverted.blue.basic.button:hover {
1720
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
1721
+ color: #54C8FF !important;
1722
+ }
1723
+ .ui.inverted.blue.basic.buttons .button:focus,
1724
+ .ui.inverted.blue.basic.buttons .button:focus,
1725
+ .ui.inverted.blue.basic.button:focus {
1726
+ box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
1727
+ color: #54C8FF !important;
1728
+ }
1729
+ .ui.inverted.blue.basic.buttons .active.button,
1730
+ .ui.inverted.blue.buttons .basic.active.button,
1731
+ .ui.inverted.blue.basic.active.button {
1732
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
1733
+ color: #54C8FF !important;
1734
+ }
1735
+ .ui.inverted.blue.basic.buttons .button:active,
1736
+ .ui.inverted.blue.buttons .basic.button:active,
1737
+ .ui.inverted.blue.basic.button:active {
1738
+ box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
1739
+ color: #54C8FF !important;
1740
+ }
1741
+
1742
+ /*--- Green ---*/
1743
+
1744
+ .ui.green.buttons .button,
1745
+ .ui.green.button {
1746
+ background-color: #21BA45;
1747
+ color: #FFFFFF;
1748
+ text-shadow: none;
1749
+ background-image: none;
1750
+ }
1751
+ .ui.green.button {
1752
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
1753
+ }
1754
+ .ui.green.buttons .button:hover,
1755
+ .ui.green.button:hover {
1756
+ background-color: #16ab39;
1757
+ color: #FFFFFF;
1758
+ text-shadow: none;
1759
+ }
1760
+ .ui.green.buttons .button:focus,
1761
+ .ui.green.button:focus {
1762
+ background-color: #0ea432;
1763
+ color: #FFFFFF;
1764
+ text-shadow: none;
1765
+ }
1766
+ .ui.green.buttons .button:active,
1767
+ .ui.green.button:active {
1768
+ background-color: #198f35;
1769
+ color: #FFFFFF;
1770
+ text-shadow: none;
1771
+ }
1772
+ .ui.green.buttons .active.button,
1773
+ .ui.green.buttons .active.button:active,
1774
+ .ui.green.active.button,
1775
+ .ui.green.button .active.button:active {
1776
+ background-color: #13ae38;
1777
+ color: #FFFFFF;
1778
+ text-shadow: none;
1779
+ }
1780
+
1781
+ /* Basic */
1782
+ .ui.basic.green.buttons .button,
1783
+ .ui.basic.green.button {
1784
+ box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
1785
+ color: #21BA45 !important;
1786
+ }
1787
+ .ui.basic.green.buttons .button:hover,
1788
+ .ui.basic.green.button:hover {
1789
+ background: transparent !important;
1790
+ box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
1791
+ color: #16ab39 !important;
1792
+ }
1793
+ .ui.basic.green.buttons .button:focus,
1794
+ .ui.basic.green.button:focus {
1795
+ background: transparent !important;
1796
+ box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
1797
+ color: #16ab39 !important;
1798
+ }
1799
+ .ui.basic.green.buttons .active.button,
1800
+ .ui.basic.green.active.button {
1801
+ background: transparent !important;
1802
+ box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
1803
+ color: #198f35 !important;
1804
+ }
1805
+ .ui.basic.green.buttons .button:active,
1806
+ .ui.basic.green.button:active {
1807
+ box-shadow: 0px 0px 0px 1px #198f35 inset !important;
1808
+ color: #198f35 !important;
1809
+ }
1810
+ .ui.buttons:not(.vertical) > .basic.green.button:not(:first-child) {
1811
+ margin-left: -1px;
1812
+ }
1813
+
1814
+ /* Inverted */
1815
+ .ui.inverted.green.buttons .button,
1816
+ .ui.inverted.green.button {
1817
+ background-color: transparent;
1818
+ box-shadow: 0px 0px 0px 2px #2ECC40 inset !important;
1819
+ color: #2ECC40;
1820
+ }
1821
+ .ui.inverted.green.buttons .button:hover,
1822
+ .ui.inverted.green.button:hover,
1823
+ .ui.inverted.green.buttons .button:focus,
1824
+ .ui.inverted.green.button:focus,
1825
+ .ui.inverted.green.buttons .button.active,
1826
+ .ui.inverted.green.button.active,
1827
+ .ui.inverted.green.buttons .button:active,
1828
+ .ui.inverted.green.button:active {
1829
+ box-shadow: none !important;
1830
+ color: #FFFFFF;
1831
+ }
1832
+ .ui.inverted.green.buttons .button:hover,
1833
+ .ui.inverted.green.button:hover {
1834
+ background-color: #22be34;
1835
+ }
1836
+ .ui.inverted.green.buttons .button:focus,
1837
+ .ui.inverted.green.button:focus {
1838
+ background-color: #19b82b;
1839
+ }
1840
+ .ui.inverted.green.buttons .active.button,
1841
+ .ui.inverted.green.active.button {
1842
+ background-color: #1fc231;
1843
+ }
1844
+ .ui.inverted.green.buttons .button:active,
1845
+ .ui.inverted.green.button:active {
1846
+ background-color: #25a233;
1847
+ }
1848
+
1849
+ /* Inverted Basic */
1850
+ .ui.inverted.green.basic.buttons .button,
1851
+ .ui.inverted.green.buttons .basic.button,
1852
+ .ui.inverted.green.basic.button {
1853
+ background-color: transparent;
1854
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
1855
+ color: #FFFFFF !important;
1856
+ }
1857
+ .ui.inverted.green.basic.buttons .button:hover,
1858
+ .ui.inverted.green.buttons .basic.button:hover,
1859
+ .ui.inverted.green.basic.button:hover {
1860
+ box-shadow: 0px 0px 0px 2px #22be34 inset !important;
1861
+ color: #2ECC40 !important;
1862
+ }
1863
+ .ui.inverted.green.basic.buttons .button:focus,
1864
+ .ui.inverted.green.basic.buttons .button:focus,
1865
+ .ui.inverted.green.basic.button:focus {
1866
+ box-shadow: 0px 0px 0px 2px #19b82b inset !important;
1867
+ color: #2ECC40 !important;
1868
+ }
1869
+ .ui.inverted.green.basic.buttons .active.button,
1870
+ .ui.inverted.green.buttons .basic.active.button,
1871
+ .ui.inverted.green.basic.active.button {
1872
+ box-shadow: 0px 0px 0px 2px #1fc231 inset !important;
1873
+ color: #2ECC40 !important;
1874
+ }
1875
+ .ui.inverted.green.basic.buttons .button:active,
1876
+ .ui.inverted.green.buttons .basic.button:active,
1877
+ .ui.inverted.green.basic.button:active {
1878
+ box-shadow: 0px 0px 0px 2px #25a233 inset !important;
1879
+ color: #2ECC40 !important;
1880
+ }
1881
+
1882
+ /*--- Orange ---*/
1883
+
1884
+ .ui.orange.buttons .button,
1885
+ .ui.orange.button {
1886
+ background-color: #F2711C;
1887
+ color: #FFFFFF;
1888
+ text-shadow: none;
1889
+ background-image: none;
1890
+ }
1891
+ .ui.orange.button {
1892
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
1893
+ }
1894
+ .ui.orange.buttons .button:hover,
1895
+ .ui.orange.button:hover {
1896
+ background-color: #f26202;
1897
+ color: #FFFFFF;
1898
+ text-shadow: none;
1899
+ }
1900
+ .ui.orange.buttons .button:focus,
1901
+ .ui.orange.button:focus {
1902
+ background-color: #e55b00;
1903
+ color: #FFFFFF;
1904
+ text-shadow: none;
1905
+ }
1906
+ .ui.orange.buttons .button:active,
1907
+ .ui.orange.button:active {
1908
+ background-color: #cf590c;
1909
+ color: #FFFFFF;
1910
+ text-shadow: none;
1911
+ }
1912
+ .ui.orange.buttons .active.button,
1913
+ .ui.orange.buttons .active.button:active,
1914
+ .ui.orange.active.button,
1915
+ .ui.orange.button .active.button:active {
1916
+ background-color: #f56100;
1917
+ color: #FFFFFF;
1918
+ text-shadow: none;
1919
+ }
1920
+
1921
+ /* Basic */
1922
+ .ui.basic.orange.buttons .button,
1923
+ .ui.basic.orange.button {
1924
+ box-shadow: 0px 0px 0px 1px #F2711C inset !important;
1925
+ color: #F2711C !important;
1926
+ }
1927
+ .ui.basic.orange.buttons .button:hover,
1928
+ .ui.basic.orange.button:hover {
1929
+ background: transparent !important;
1930
+ box-shadow: 0px 0px 0px 1px #f26202 inset !important;
1931
+ color: #f26202 !important;
1932
+ }
1933
+ .ui.basic.orange.buttons .button:focus,
1934
+ .ui.basic.orange.button:focus {
1935
+ background: transparent !important;
1936
+ box-shadow: 0px 0px 0px 1px #e55b00 inset !important;
1937
+ color: #f26202 !important;
1938
+ }
1939
+ .ui.basic.orange.buttons .active.button,
1940
+ .ui.basic.orange.active.button {
1941
+ background: transparent !important;
1942
+ box-shadow: 0px 0px 0px 1px #f56100 inset !important;
1943
+ color: #cf590c !important;
1944
+ }
1945
+ .ui.basic.orange.buttons .button:active,
1946
+ .ui.basic.orange.button:active {
1947
+ box-shadow: 0px 0px 0px 1px #cf590c inset !important;
1948
+ color: #cf590c !important;
1949
+ }
1950
+ .ui.buttons:not(.vertical) > .basic.orange.button:not(:first-child) {
1951
+ margin-left: -1px;
1952
+ }
1953
+
1954
+ /* Inverted */
1955
+ .ui.inverted.orange.buttons .button,
1956
+ .ui.inverted.orange.button {
1957
+ background-color: transparent;
1958
+ box-shadow: 0px 0px 0px 2px #FF851B inset !important;
1959
+ color: #FF851B;
1960
+ }
1961
+ .ui.inverted.orange.buttons .button:hover,
1962
+ .ui.inverted.orange.button:hover,
1963
+ .ui.inverted.orange.buttons .button:focus,
1964
+ .ui.inverted.orange.button:focus,
1965
+ .ui.inverted.orange.buttons .button.active,
1966
+ .ui.inverted.orange.button.active,
1967
+ .ui.inverted.orange.buttons .button:active,
1968
+ .ui.inverted.orange.button:active {
1969
+ box-shadow: none !important;
1970
+ color: #FFFFFF;
1971
+ }
1972
+ .ui.inverted.orange.buttons .button:hover,
1973
+ .ui.inverted.orange.button:hover {
1974
+ background-color: #ff7701;
1975
+ }
1976
+ .ui.inverted.orange.buttons .button:focus,
1977
+ .ui.inverted.orange.button:focus {
1978
+ background-color: #f17000;
1979
+ }
1980
+ .ui.inverted.orange.buttons .active.button,
1981
+ .ui.inverted.orange.active.button {
1982
+ background-color: #ff7701;
1983
+ }
1984
+ .ui.inverted.orange.buttons .button:active,
1985
+ .ui.inverted.orange.button:active {
1986
+ background-color: #e76b00;
1987
+ }
1988
+
1989
+ /* Inverted Basic */
1990
+ .ui.inverted.orange.basic.buttons .button,
1991
+ .ui.inverted.orange.buttons .basic.button,
1992
+ .ui.inverted.orange.basic.button {
1993
+ background-color: transparent;
1994
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
1995
+ color: #FFFFFF !important;
1996
+ }
1997
+ .ui.inverted.orange.basic.buttons .button:hover,
1998
+ .ui.inverted.orange.buttons .basic.button:hover,
1999
+ .ui.inverted.orange.basic.button:hover {
2000
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2001
+ color: #FF851B !important;
2002
+ }
2003
+ .ui.inverted.orange.basic.buttons .button:focus,
2004
+ .ui.inverted.orange.basic.buttons .button:focus,
2005
+ .ui.inverted.orange.basic.button:focus {
2006
+ box-shadow: 0px 0px 0px 2px #f17000 inset !important;
2007
+ color: #FF851B !important;
2008
+ }
2009
+ .ui.inverted.orange.basic.buttons .active.button,
2010
+ .ui.inverted.orange.buttons .basic.active.button,
2011
+ .ui.inverted.orange.basic.active.button {
2012
+ box-shadow: 0px 0px 0px 2px #ff7701 inset !important;
2013
+ color: #FF851B !important;
2014
+ }
2015
+ .ui.inverted.orange.basic.buttons .button:active,
2016
+ .ui.inverted.orange.buttons .basic.button:active,
2017
+ .ui.inverted.orange.basic.button:active {
2018
+ box-shadow: 0px 0px 0px 2px #e76b00 inset !important;
2019
+ color: #FF851B !important;
2020
+ }
2021
+
2022
+ /*--- Pink ---*/
2023
+
2024
+ .ui.pink.buttons .button,
2025
+ .ui.pink.button {
2026
+ background-color: #E03997;
2027
+ color: #FFFFFF;
2028
+ text-shadow: none;
2029
+ background-image: none;
2030
+ }
2031
+ .ui.pink.button {
2032
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
2033
+ }
2034
+ .ui.pink.buttons .button:hover,
2035
+ .ui.pink.button:hover {
2036
+ background-color: #e61a8d;
2037
+ color: #FFFFFF;
2038
+ text-shadow: none;
2039
+ }
2040
+ .ui.pink.buttons .button:focus,
2041
+ .ui.pink.button:focus {
2042
+ background-color: #e10f85;
2043
+ color: #FFFFFF;
2044
+ text-shadow: none;
2045
+ }
2046
+ .ui.pink.buttons .button:active,
2047
+ .ui.pink.button:active {
2048
+ background-color: #c71f7e;
2049
+ color: #FFFFFF;
2050
+ text-shadow: none;
2051
+ }
2052
+ .ui.pink.buttons .active.button,
2053
+ .ui.pink.buttons .active.button:active,
2054
+ .ui.pink.active.button,
2055
+ .ui.pink.button .active.button:active {
2056
+ background-color: #ea158d;
2057
+ color: #FFFFFF;
2058
+ text-shadow: none;
2059
+ }
2060
+
2061
+ /* Basic */
2062
+ .ui.basic.pink.buttons .button,
2063
+ .ui.basic.pink.button {
2064
+ box-shadow: 0px 0px 0px 1px #E03997 inset !important;
2065
+ color: #E03997 !important;
2066
+ }
2067
+ .ui.basic.pink.buttons .button:hover,
2068
+ .ui.basic.pink.button:hover {
2069
+ background: transparent !important;
2070
+ box-shadow: 0px 0px 0px 1px #e61a8d inset !important;
2071
+ color: #e61a8d !important;
2072
+ }
2073
+ .ui.basic.pink.buttons .button:focus,
2074
+ .ui.basic.pink.button:focus {
2075
+ background: transparent !important;
2076
+ box-shadow: 0px 0px 0px 1px #e10f85 inset !important;
2077
+ color: #e61a8d !important;
2078
+ }
2079
+ .ui.basic.pink.buttons .active.button,
2080
+ .ui.basic.pink.active.button {
2081
+ background: transparent !important;
2082
+ box-shadow: 0px 0px 0px 1px #ea158d inset !important;
2083
+ color: #c71f7e !important;
2084
+ }
2085
+ .ui.basic.pink.buttons .button:active,
2086
+ .ui.basic.pink.button:active {
2087
+ box-shadow: 0px 0px 0px 1px #c71f7e inset !important;
2088
+ color: #c71f7e !important;
2089
+ }
2090
+ .ui.buttons:not(.vertical) > .basic.pink.button:not(:first-child) {
2091
+ margin-left: -1px;
2092
+ }
2093
+
2094
+ /* Inverted */
2095
+ .ui.inverted.pink.buttons .button,
2096
+ .ui.inverted.pink.button {
2097
+ background-color: transparent;
2098
+ box-shadow: 0px 0px 0px 2px #FF8EDF inset !important;
2099
+ color: #FF8EDF;
2100
+ }
2101
+ .ui.inverted.pink.buttons .button:hover,
2102
+ .ui.inverted.pink.button:hover,
2103
+ .ui.inverted.pink.buttons .button:focus,
2104
+ .ui.inverted.pink.button:focus,
2105
+ .ui.inverted.pink.buttons .button.active,
2106
+ .ui.inverted.pink.button.active,
2107
+ .ui.inverted.pink.buttons .button:active,
2108
+ .ui.inverted.pink.button:active {
2109
+ box-shadow: none !important;
2110
+ color: #FFFFFF;
2111
+ }
2112
+ .ui.inverted.pink.buttons .button:hover,
2113
+ .ui.inverted.pink.button:hover {
2114
+ background-color: #ff74d8;
2115
+ }
2116
+ .ui.inverted.pink.buttons .button:focus,
2117
+ .ui.inverted.pink.button:focus {
2118
+ background-color: #ff65d3;
2119
+ }
2120
+ .ui.inverted.pink.buttons .active.button,
2121
+ .ui.inverted.pink.active.button {
2122
+ background-color: #ff74d8;
2123
+ }
2124
+ .ui.inverted.pink.buttons .button:active,
2125
+ .ui.inverted.pink.button:active {
2126
+ background-color: #ff5bd1;
2127
+ }
2128
+
2129
+ /* Inverted Basic */
2130
+ .ui.inverted.pink.basic.buttons .button,
2131
+ .ui.inverted.pink.buttons .basic.button,
2132
+ .ui.inverted.pink.basic.button {
2133
+ background-color: transparent;
2134
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
2135
+ color: #FFFFFF !important;
2136
+ }
2137
+ .ui.inverted.pink.basic.buttons .button:hover,
2138
+ .ui.inverted.pink.buttons .basic.button:hover,
2139
+ .ui.inverted.pink.basic.button:hover {
2140
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2141
+ color: #FF8EDF !important;
2142
+ }
2143
+ .ui.inverted.pink.basic.buttons .button:focus,
2144
+ .ui.inverted.pink.basic.buttons .button:focus,
2145
+ .ui.inverted.pink.basic.button:focus {
2146
+ box-shadow: 0px 0px 0px 2px #ff65d3 inset !important;
2147
+ color: #FF8EDF !important;
2148
+ }
2149
+ .ui.inverted.pink.basic.buttons .active.button,
2150
+ .ui.inverted.pink.buttons .basic.active.button,
2151
+ .ui.inverted.pink.basic.active.button {
2152
+ box-shadow: 0px 0px 0px 2px #ff74d8 inset !important;
2153
+ color: #FF8EDF !important;
2154
+ }
2155
+ .ui.inverted.pink.basic.buttons .button:active,
2156
+ .ui.inverted.pink.buttons .basic.button:active,
2157
+ .ui.inverted.pink.basic.button:active {
2158
+ box-shadow: 0px 0px 0px 2px #ff5bd1 inset !important;
2159
+ color: #FF8EDF !important;
2160
+ }
2161
+
2162
+ /*--- Violet ---*/
2163
+
2164
+ .ui.violet.buttons .button,
2165
+ .ui.violet.button {
2166
+ background-color: #6435C9;
2167
+ color: #FFFFFF;
2168
+ text-shadow: none;
2169
+ background-image: none;
2170
+ }
2171
+ .ui.violet.button {
2172
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
2173
+ }
2174
+ .ui.violet.buttons .button:hover,
2175
+ .ui.violet.button:hover {
2176
+ background-color: #5829bb;
2177
+ color: #FFFFFF;
2178
+ text-shadow: none;
2179
+ }
2180
+ .ui.violet.buttons .button:focus,
2181
+ .ui.violet.button:focus {
2182
+ background-color: #4f20b5;
2183
+ color: #FFFFFF;
2184
+ text-shadow: none;
2185
+ }
2186
+ .ui.violet.buttons .button:active,
2187
+ .ui.violet.button:active {
2188
+ background-color: #502aa1;
2189
+ color: #FFFFFF;
2190
+ text-shadow: none;
2191
+ }
2192
+ .ui.violet.buttons .active.button,
2193
+ .ui.violet.buttons .active.button:active,
2194
+ .ui.violet.active.button,
2195
+ .ui.violet.button .active.button:active {
2196
+ background-color: #5626bf;
2197
+ color: #FFFFFF;
2198
+ text-shadow: none;
2199
+ }
2200
+
2201
+ /* Basic */
2202
+ .ui.basic.violet.buttons .button,
2203
+ .ui.basic.violet.button {
2204
+ box-shadow: 0px 0px 0px 1px #6435C9 inset !important;
2205
+ color: #6435C9 !important;
2206
+ }
2207
+ .ui.basic.violet.buttons .button:hover,
2208
+ .ui.basic.violet.button:hover {
2209
+ background: transparent !important;
2210
+ box-shadow: 0px 0px 0px 1px #5829bb inset !important;
2211
+ color: #5829bb !important;
2212
+ }
2213
+ .ui.basic.violet.buttons .button:focus,
2214
+ .ui.basic.violet.button:focus {
2215
+ background: transparent !important;
2216
+ box-shadow: 0px 0px 0px 1px #4f20b5 inset !important;
2217
+ color: #5829bb !important;
2218
+ }
2219
+ .ui.basic.violet.buttons .active.button,
2220
+ .ui.basic.violet.active.button {
2221
+ background: transparent !important;
2222
+ box-shadow: 0px 0px 0px 1px #5626bf inset !important;
2223
+ color: #502aa1 !important;
2224
+ }
2225
+ .ui.basic.violet.buttons .button:active,
2226
+ .ui.basic.violet.button:active {
2227
+ box-shadow: 0px 0px 0px 1px #502aa1 inset !important;
2228
+ color: #502aa1 !important;
2229
+ }
2230
+ .ui.buttons:not(.vertical) > .basic.violet.button:not(:first-child) {
2231
+ margin-left: -1px;
2232
+ }
2233
+
2234
+ /* Inverted */
2235
+ .ui.inverted.violet.buttons .button,
2236
+ .ui.inverted.violet.button {
2237
+ background-color: transparent;
2238
+ box-shadow: 0px 0px 0px 2px #A291FB inset !important;
2239
+ color: #A291FB;
2240
+ }
2241
+ .ui.inverted.violet.buttons .button:hover,
2242
+ .ui.inverted.violet.button:hover,
2243
+ .ui.inverted.violet.buttons .button:focus,
2244
+ .ui.inverted.violet.button:focus,
2245
+ .ui.inverted.violet.buttons .button.active,
2246
+ .ui.inverted.violet.button.active,
2247
+ .ui.inverted.violet.buttons .button:active,
2248
+ .ui.inverted.violet.button:active {
2249
+ box-shadow: none !important;
2250
+ color: #FFFFFF;
2251
+ }
2252
+ .ui.inverted.violet.buttons .button:hover,
2253
+ .ui.inverted.violet.button:hover {
2254
+ background-color: #8a73ff;
2255
+ }
2256
+ .ui.inverted.violet.buttons .button:focus,
2257
+ .ui.inverted.violet.button:focus {
2258
+ background-color: #7d64ff;
2259
+ }
2260
+ .ui.inverted.violet.buttons .active.button,
2261
+ .ui.inverted.violet.active.button {
2262
+ background-color: #8a73ff;
2263
+ }
2264
+ .ui.inverted.violet.buttons .button:active,
2265
+ .ui.inverted.violet.button:active {
2266
+ background-color: #7860f9;
2267
+ }
2268
+
2269
+ /* Inverted Basic */
2270
+ .ui.inverted.violet.basic.buttons .button,
2271
+ .ui.inverted.violet.buttons .basic.button,
2272
+ .ui.inverted.violet.basic.button {
2273
+ background-color: transparent;
2274
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
2275
+ color: #FFFFFF !important;
2276
+ }
2277
+ .ui.inverted.violet.basic.buttons .button:hover,
2278
+ .ui.inverted.violet.buttons .basic.button:hover,
2279
+ .ui.inverted.violet.basic.button:hover {
2280
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2281
+ color: #A291FB !important;
2282
+ }
2283
+ .ui.inverted.violet.basic.buttons .button:focus,
2284
+ .ui.inverted.violet.basic.buttons .button:focus,
2285
+ .ui.inverted.violet.basic.button:focus {
2286
+ box-shadow: 0px 0px 0px 2px #7d64ff inset !important;
2287
+ color: #A291FB !important;
2288
+ }
2289
+ .ui.inverted.violet.basic.buttons .active.button,
2290
+ .ui.inverted.violet.buttons .basic.active.button,
2291
+ .ui.inverted.violet.basic.active.button {
2292
+ box-shadow: 0px 0px 0px 2px #8a73ff inset !important;
2293
+ color: #A291FB !important;
2294
+ }
2295
+ .ui.inverted.violet.basic.buttons .button:active,
2296
+ .ui.inverted.violet.buttons .basic.button:active,
2297
+ .ui.inverted.violet.basic.button:active {
2298
+ box-shadow: 0px 0px 0px 2px #7860f9 inset !important;
2299
+ color: #A291FB !important;
2300
+ }
2301
+
2302
+ /*--- Purple ---*/
2303
+
2304
+ .ui.purple.buttons .button,
2305
+ .ui.purple.button {
2306
+ background-color: #A333C8;
2307
+ color: #FFFFFF;
2308
+ text-shadow: none;
2309
+ background-image: none;
2310
+ }
2311
+ .ui.purple.button {
2312
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
2313
+ }
2314
+ .ui.purple.buttons .button:hover,
2315
+ .ui.purple.button:hover {
2316
+ background-color: #9627ba;
2317
+ color: #FFFFFF;
2318
+ text-shadow: none;
2319
+ }
2320
+ .ui.purple.buttons .button:focus,
2321
+ .ui.purple.button:focus {
2322
+ background-color: #8f1eb4;
2323
+ color: #FFFFFF;
2324
+ text-shadow: none;
2325
+ }
2326
+ .ui.purple.buttons .button:active,
2327
+ .ui.purple.button:active {
2328
+ background-color: #82299f;
2329
+ color: #FFFFFF;
2330
+ text-shadow: none;
2331
+ }
2332
+ .ui.purple.buttons .active.button,
2333
+ .ui.purple.buttons .active.button:active,
2334
+ .ui.purple.active.button,
2335
+ .ui.purple.button .active.button:active {
2336
+ background-color: #9724be;
2337
+ color: #FFFFFF;
2338
+ text-shadow: none;
2339
+ }
2340
+
2341
+ /* Basic */
2342
+ .ui.basic.purple.buttons .button,
2343
+ .ui.basic.purple.button {
2344
+ box-shadow: 0px 0px 0px 1px #A333C8 inset !important;
2345
+ color: #A333C8 !important;
2346
+ }
2347
+ .ui.basic.purple.buttons .button:hover,
2348
+ .ui.basic.purple.button:hover {
2349
+ background: transparent !important;
2350
+ box-shadow: 0px 0px 0px 1px #9627ba inset !important;
2351
+ color: #9627ba !important;
2352
+ }
2353
+ .ui.basic.purple.buttons .button:focus,
2354
+ .ui.basic.purple.button:focus {
2355
+ background: transparent !important;
2356
+ box-shadow: 0px 0px 0px 1px #8f1eb4 inset !important;
2357
+ color: #9627ba !important;
2358
+ }
2359
+ .ui.basic.purple.buttons .active.button,
2360
+ .ui.basic.purple.active.button {
2361
+ background: transparent !important;
2362
+ box-shadow: 0px 0px 0px 1px #9724be inset !important;
2363
+ color: #82299f !important;
2364
+ }
2365
+ .ui.basic.purple.buttons .button:active,
2366
+ .ui.basic.purple.button:active {
2367
+ box-shadow: 0px 0px 0px 1px #82299f inset !important;
2368
+ color: #82299f !important;
2369
+ }
2370
+ .ui.buttons:not(.vertical) > .basic.purple.button:not(:first-child) {
2371
+ margin-left: -1px;
2372
+ }
2373
+
2374
+ /* Inverted */
2375
+ .ui.inverted.purple.buttons .button,
2376
+ .ui.inverted.purple.button {
2377
+ background-color: transparent;
2378
+ box-shadow: 0px 0px 0px 2px #DC73FF inset !important;
2379
+ color: #DC73FF;
2380
+ }
2381
+ .ui.inverted.purple.buttons .button:hover,
2382
+ .ui.inverted.purple.button:hover,
2383
+ .ui.inverted.purple.buttons .button:focus,
2384
+ .ui.inverted.purple.button:focus,
2385
+ .ui.inverted.purple.buttons .button.active,
2386
+ .ui.inverted.purple.button.active,
2387
+ .ui.inverted.purple.buttons .button:active,
2388
+ .ui.inverted.purple.button:active {
2389
+ box-shadow: none !important;
2390
+ color: #FFFFFF;
2391
+ }
2392
+ .ui.inverted.purple.buttons .button:hover,
2393
+ .ui.inverted.purple.button:hover {
2394
+ background-color: #d65aff;
2395
+ }
2396
+ .ui.inverted.purple.buttons .button:focus,
2397
+ .ui.inverted.purple.button:focus {
2398
+ background-color: #d24aff;
2399
+ }
2400
+ .ui.inverted.purple.buttons .active.button,
2401
+ .ui.inverted.purple.active.button {
2402
+ background-color: #d65aff;
2403
+ }
2404
+ .ui.inverted.purple.buttons .button:active,
2405
+ .ui.inverted.purple.button:active {
2406
+ background-color: #cf40ff;
2407
+ }
2408
+
2409
+ /* Inverted Basic */
2410
+ .ui.inverted.purple.basic.buttons .button,
2411
+ .ui.inverted.purple.buttons .basic.button,
2412
+ .ui.inverted.purple.basic.button {
2413
+ background-color: transparent;
2414
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
2415
+ color: #FFFFFF !important;
2416
+ }
2417
+ .ui.inverted.purple.basic.buttons .button:hover,
2418
+ .ui.inverted.purple.buttons .basic.button:hover,
2419
+ .ui.inverted.purple.basic.button:hover {
2420
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
2421
+ color: #DC73FF !important;
2422
+ }
2423
+ .ui.inverted.purple.basic.buttons .button:focus,
2424
+ .ui.inverted.purple.basic.buttons .button:focus,
2425
+ .ui.inverted.purple.basic.button:focus {
2426
+ box-shadow: 0px 0px 0px 2px #d24aff inset !important;
2427
+ color: #DC73FF !important;
2428
+ }
2429
+ .ui.inverted.purple.basic.buttons .active.button,
2430
+ .ui.inverted.purple.buttons .basic.active.button,
2431
+ .ui.inverted.purple.basic.active.button {
2432
+ box-shadow: 0px 0px 0px 2px #d65aff inset !important;
2433
+ color: #DC73FF !important;
2434
+ }
2435
+ .ui.inverted.purple.basic.buttons .button:active,
2436
+ .ui.inverted.purple.buttons .basic.button:active,
2437
+ .ui.inverted.purple.basic.button:active {
2438
+ box-shadow: 0px 0px 0px 2px #cf40ff inset !important;
2439
+ color: #DC73FF !important;
2440
+ }
2441
+
2442
+ /*--- Red ---*/
2443
+
2444
+ .ui.red.buttons .button,
2445
+ .ui.red.button {
2446
+ background-color: #DB2828;
2447
+ color: #FFFFFF;
2448
+ text-shadow: none;
2449
+ background-image: none;
2450
+ }
2451
+ .ui.red.button {
2452
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
2453
+ }
2454
+ .ui.red.buttons .button:hover,
2455
+ .ui.red.button:hover {
2456
+ background-color: #d01919;
2457
+ color: #FFFFFF;
2458
+ text-shadow: none;
2459
+ }
2460
+ .ui.red.buttons .button:focus,
2461
+ .ui.red.button:focus {
2462
+ background-color: #ca1010;
2463
+ color: #FFFFFF;
2464
+ text-shadow: none;
2465
+ }
2466
+ .ui.red.buttons .button:active,
2467
+ .ui.red.button:active {
2468
+ background-color: #b21e1e;
2469
+ color: #FFFFFF;
2470
+ text-shadow: none;
2471
+ }
2472
+ .ui.red.buttons .active.button,
2473
+ .ui.red.buttons .active.button:active,
2474
+ .ui.red.active.button,
2475
+ .ui.red.button .active.button:active {
2476
+ background-color: #d41515;
2477
+ color: #FFFFFF;
2478
+ text-shadow: none;
2479
+ }
2480
+
2481
+ /* Basic */
2482
+ .ui.basic.red.buttons .button,
2483
+ .ui.basic.red.button {
2484
+ box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
2485
+ color: #DB2828 !important;
2486
+ }
2487
+ .ui.basic.red.buttons .button:hover,
2488
+ .ui.basic.red.button:hover {
2489
+ background: transparent !important;
2490
+ box-shadow: 0px 0px 0px 1px #d01919 inset !important;
2491
+ color: #d01919 !important;
2492
+ }
2493
+ .ui.basic.red.buttons .button:focus,
2494
+ .ui.basic.red.button:focus {
2495
+ background: transparent !important;
2496
+ box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
2497
+ color: #d01919 !important;
2498
+ }
2499
+ .ui.basic.red.buttons .active.button,
2500
+ .ui.basic.red.active.button {
2501
+ background: transparent !important;
2502
+ box-shadow: 0px 0px 0px 1px #d41515 inset !important;
2503
+ color: #b21e1e !important;
2504
+ }
2505
+ .ui.basic.red.buttons .button:active,
2506
+ .ui.basic.red.button:active {
2507
+ box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
2508
+ color: #b21e1e !important;
2509
+ }
2510
+ .ui.buttons:not(.vertical) > .basic.red.button:not(:first-child) {
2511
+ margin-left: -1px;
2512
+ }
2513
+
2514
+ /* Inverted */
2515
+ .ui.inverted.red.buttons .button,
2516
+ .ui.inverted.red.button {
2517
+ background-color: transparent;
2518
+ box-shadow: 0px 0px 0px 2px #FF695E inset !important;
2519
+ color: #FF695E;
2520
+ }
2521
+ .ui.inverted.red.buttons .button:hover,
2522
+ .ui.inverted.red.button:hover,
2523
+ .ui.inverted.red.buttons .button:focus,
2524
+ .ui.inverted.red.button:focus,
2525
+ .ui.inverted.red.buttons .button.active,
2526
+ .ui.inverted.red.button.active,
2527
+ .ui.inverted.red.buttons .button:active,
2528
+ .ui.inverted.red.button:active {
2529
+ box-shadow: none !important;
2530
+ color: #FFFFFF;
2531
+ }
2532
+ .ui.inverted.red.buttons .button:hover,
2533
+ .ui.inverted.red.button:hover {
2534
+ background-color: #ff5144;
2535
+ }
2536
+ .ui.inverted.red.buttons .button:focus,
2537
+ .ui.inverted.red.button:focus {
2538
+ background-color: #ff4335;
2539
+ }
2540
+ .ui.inverted.red.buttons .active.button,
2541
+ .ui.inverted.red.active.button {
2542
+ background-color: #ff5144;
2543
+ }
2544
+ .ui.inverted.red.buttons .button:active,
2545
+ .ui.inverted.red.button:active {
2546
+ background-color: #ff392b;
2547
+ }
2548
+
2549
+ /* Inverted Basic */
2550
+ .ui.inverted.red.basic.buttons .button,
2551
+ .ui.inverted.red.buttons .basic.button,
2552
+ .ui.inverted.red.basic.button {
2553
+ background-color: transparent;
2554
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
2555
+ color: #FFFFFF !important;
2556
+ }
2557
+ .ui.inverted.red.basic.buttons .button:hover,
2558
+ .ui.inverted.red.buttons .basic.button:hover,
2559
+ .ui.inverted.red.basic.button:hover {
2560
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
2561
+ color: #FF695E !important;
2562
+ }
2563
+ .ui.inverted.red.basic.buttons .button:focus,
2564
+ .ui.inverted.red.basic.buttons .button:focus,
2565
+ .ui.inverted.red.basic.button:focus {
2566
+ box-shadow: 0px 0px 0px 2px #ff4335 inset !important;
2567
+ color: #FF695E !important;
2568
+ }
2569
+ .ui.inverted.red.basic.buttons .active.button,
2570
+ .ui.inverted.red.buttons .basic.active.button,
2571
+ .ui.inverted.red.basic.active.button {
2572
+ box-shadow: 0px 0px 0px 2px #ff5144 inset !important;
2573
+ color: #FF695E !important;
2574
+ }
2575
+ .ui.inverted.red.basic.buttons .button:active,
2576
+ .ui.inverted.red.buttons .basic.button:active,
2577
+ .ui.inverted.red.basic.button:active {
2578
+ box-shadow: 0px 0px 0px 2px #ff392b inset !important;
2579
+ color: #FF695E !important;
2580
+ }
2581
+
2582
+ /*--- Teal ---*/
2583
+
2584
+ .ui.teal.buttons .button,
2585
+ .ui.teal.button {
2586
+ background-color: #00B5AD;
2587
+ color: #FFFFFF;
2588
+ text-shadow: none;
2589
+ background-image: none;
2590
+ }
2591
+ .ui.teal.button {
2592
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
2593
+ }
2594
+ .ui.teal.buttons .button:hover,
2595
+ .ui.teal.button:hover {
2596
+ background-color: #009c95;
2597
+ color: #FFFFFF;
2598
+ text-shadow: none;
2599
+ }
2600
+ .ui.teal.buttons .button:focus,
2601
+ .ui.teal.button:focus {
2602
+ background-color: #008c86;
2603
+ color: #FFFFFF;
2604
+ text-shadow: none;
2605
+ }
2606
+ .ui.teal.buttons .button:active,
2607
+ .ui.teal.button:active {
2608
+ background-color: #00827c;
2609
+ color: #FFFFFF;
2610
+ text-shadow: none;
2611
+ }
2612
+ .ui.teal.buttons .active.button,
2613
+ .ui.teal.buttons .active.button:active,
2614
+ .ui.teal.active.button,
2615
+ .ui.teal.button .active.button:active {
2616
+ background-color: #009c95;
2617
+ color: #FFFFFF;
2618
+ text-shadow: none;
2619
+ }
2620
+
2621
+ /* Basic */
2622
+ .ui.basic.teal.buttons .button,
2623
+ .ui.basic.teal.button {
2624
+ box-shadow: 0px 0px 0px 1px #00B5AD inset !important;
2625
+ color: #00B5AD !important;
2626
+ }
2627
+ .ui.basic.teal.buttons .button:hover,
2628
+ .ui.basic.teal.button:hover {
2629
+ background: transparent !important;
2630
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
2631
+ color: #009c95 !important;
2632
+ }
2633
+ .ui.basic.teal.buttons .button:focus,
2634
+ .ui.basic.teal.button:focus {
2635
+ background: transparent !important;
2636
+ box-shadow: 0px 0px 0px 1px #008c86 inset !important;
2637
+ color: #009c95 !important;
2638
+ }
2639
+ .ui.basic.teal.buttons .active.button,
2640
+ .ui.basic.teal.active.button {
2641
+ background: transparent !important;
2642
+ box-shadow: 0px 0px 0px 1px #009c95 inset !important;
2643
+ color: #00827c !important;
2644
+ }
2645
+ .ui.basic.teal.buttons .button:active,
2646
+ .ui.basic.teal.button:active {
2647
+ box-shadow: 0px 0px 0px 1px #00827c inset !important;
2648
+ color: #00827c !important;
2649
+ }
2650
+ .ui.buttons:not(.vertical) > .basic.teal.button:not(:first-child) {
2651
+ margin-left: -1px;
2652
+ }
2653
+
2654
+ /* Inverted */
2655
+ .ui.inverted.teal.buttons .button,
2656
+ .ui.inverted.teal.button {
2657
+ background-color: transparent;
2658
+ box-shadow: 0px 0px 0px 2px #6DFFFF inset !important;
2659
+ color: #6DFFFF;
2660
+ }
2661
+ .ui.inverted.teal.buttons .button:hover,
2662
+ .ui.inverted.teal.button:hover,
2663
+ .ui.inverted.teal.buttons .button:focus,
2664
+ .ui.inverted.teal.button:focus,
2665
+ .ui.inverted.teal.buttons .button.active,
2666
+ .ui.inverted.teal.button.active,
2667
+ .ui.inverted.teal.buttons .button:active,
2668
+ .ui.inverted.teal.button:active {
2669
+ box-shadow: none !important;
2670
+ color: rgb(0 0 0 / 60%);
2671
+ }
2672
+ .ui.inverted.teal.buttons .button:hover,
2673
+ .ui.inverted.teal.button:hover {
2674
+ background-color: #54ffff;
2675
+ }
2676
+ .ui.inverted.teal.buttons .button:focus,
2677
+ .ui.inverted.teal.button:focus {
2678
+ background-color: #44ffff;
2679
+ }
2680
+ .ui.inverted.teal.buttons .active.button,
2681
+ .ui.inverted.teal.active.button {
2682
+ background-color: #54ffff;
2683
+ }
2684
+ .ui.inverted.teal.buttons .button:active,
2685
+ .ui.inverted.teal.button:active {
2686
+ background-color: #3affff;
2687
+ }
2688
+
2689
+ /* Inverted Basic */
2690
+ .ui.inverted.teal.basic.buttons .button,
2691
+ .ui.inverted.teal.buttons .basic.button,
2692
+ .ui.inverted.teal.basic.button {
2693
+ background-color: transparent;
2694
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
2695
+ color: #FFFFFF !important;
2696
+ }
2697
+ .ui.inverted.teal.basic.buttons .button:hover,
2698
+ .ui.inverted.teal.buttons .basic.button:hover,
2699
+ .ui.inverted.teal.basic.button:hover {
2700
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
2701
+ color: #6DFFFF !important;
2702
+ }
2703
+ .ui.inverted.teal.basic.buttons .button:focus,
2704
+ .ui.inverted.teal.basic.buttons .button:focus,
2705
+ .ui.inverted.teal.basic.button:focus {
2706
+ box-shadow: 0px 0px 0px 2px #44ffff inset !important;
2707
+ color: #6DFFFF !important;
2708
+ }
2709
+ .ui.inverted.teal.basic.buttons .active.button,
2710
+ .ui.inverted.teal.buttons .basic.active.button,
2711
+ .ui.inverted.teal.basic.active.button {
2712
+ box-shadow: 0px 0px 0px 2px #54ffff inset !important;
2713
+ color: #6DFFFF !important;
2714
+ }
2715
+ .ui.inverted.teal.basic.buttons .button:active,
2716
+ .ui.inverted.teal.buttons .basic.button:active,
2717
+ .ui.inverted.teal.basic.button:active {
2718
+ box-shadow: 0px 0px 0px 2px #3affff inset !important;
2719
+ color: #6DFFFF !important;
2720
+ }
2721
+
2722
+ /*--- Olive ---*/
2723
+
2724
+ .ui.olive.buttons .button,
2725
+ .ui.olive.button {
2726
+ background-color: #B5CC18;
2727
+ color: #FFFFFF;
2728
+ text-shadow: none;
2729
+ background-image: none;
2730
+ }
2731
+ .ui.olive.button {
2732
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
2733
+ }
2734
+ .ui.olive.buttons .button:hover,
2735
+ .ui.olive.button:hover {
2736
+ background-color: #a7bd0d;
2737
+ color: #FFFFFF;
2738
+ text-shadow: none;
2739
+ }
2740
+ .ui.olive.buttons .button:focus,
2741
+ .ui.olive.button:focus {
2742
+ background-color: #a0b605;
2743
+ color: #FFFFFF;
2744
+ text-shadow: none;
2745
+ }
2746
+ .ui.olive.buttons .button:active,
2747
+ .ui.olive.button:active {
2748
+ background-color: #8d9e13;
2749
+ color: #FFFFFF;
2750
+ text-shadow: none;
2751
+ }
2752
+ .ui.olive.buttons .active.button,
2753
+ .ui.olive.buttons .active.button:active,
2754
+ .ui.olive.active.button,
2755
+ .ui.olive.button .active.button:active {
2756
+ background-color: #aac109;
2757
+ color: #FFFFFF;
2758
+ text-shadow: none;
2759
+ }
2760
+
2761
+ /* Basic */
2762
+ .ui.basic.olive.buttons .button,
2763
+ .ui.basic.olive.button {
2764
+ box-shadow: 0px 0px 0px 1px #B5CC18 inset !important;
2765
+ color: #B5CC18 !important;
2766
+ }
2767
+ .ui.basic.olive.buttons .button:hover,
2768
+ .ui.basic.olive.button:hover {
2769
+ background: transparent !important;
2770
+ box-shadow: 0px 0px 0px 1px #a7bd0d inset !important;
2771
+ color: #a7bd0d !important;
2772
+ }
2773
+ .ui.basic.olive.buttons .button:focus,
2774
+ .ui.basic.olive.button:focus {
2775
+ background: transparent !important;
2776
+ box-shadow: 0px 0px 0px 1px #a0b605 inset !important;
2777
+ color: #a7bd0d !important;
2778
+ }
2779
+ .ui.basic.olive.buttons .active.button,
2780
+ .ui.basic.olive.active.button {
2781
+ background: transparent !important;
2782
+ box-shadow: 0px 0px 0px 1px #aac109 inset !important;
2783
+ color: #8d9e13 !important;
2784
+ }
2785
+ .ui.basic.olive.buttons .button:active,
2786
+ .ui.basic.olive.button:active {
2787
+ box-shadow: 0px 0px 0px 1px #8d9e13 inset !important;
2788
+ color: #8d9e13 !important;
2789
+ }
2790
+ .ui.buttons:not(.vertical) > .basic.olive.button:not(:first-child) {
2791
+ margin-left: -1px;
2792
+ }
2793
+
2794
+ /* Inverted */
2795
+ .ui.inverted.olive.buttons .button,
2796
+ .ui.inverted.olive.button {
2797
+ background-color: transparent;
2798
+ box-shadow: 0px 0px 0px 2px #D9E778 inset !important;
2799
+ color: #D9E778;
2800
+ }
2801
+ .ui.inverted.olive.buttons .button:hover,
2802
+ .ui.inverted.olive.button:hover,
2803
+ .ui.inverted.olive.buttons .button:focus,
2804
+ .ui.inverted.olive.button:focus,
2805
+ .ui.inverted.olive.buttons .button.active,
2806
+ .ui.inverted.olive.button.active,
2807
+ .ui.inverted.olive.buttons .button:active,
2808
+ .ui.inverted.olive.button:active {
2809
+ box-shadow: none !important;
2810
+ color: rgb(0 0 0 / 60%);
2811
+ }
2812
+ .ui.inverted.olive.buttons .button:hover,
2813
+ .ui.inverted.olive.button:hover {
2814
+ background-color: #d8ea5c;
2815
+ }
2816
+ .ui.inverted.olive.buttons .button:focus,
2817
+ .ui.inverted.olive.button:focus {
2818
+ background-color: #daef47;
2819
+ }
2820
+ .ui.inverted.olive.buttons .active.button,
2821
+ .ui.inverted.olive.active.button {
2822
+ background-color: #daed59;
2823
+ }
2824
+ .ui.inverted.olive.buttons .button:active,
2825
+ .ui.inverted.olive.button:active {
2826
+ background-color: #cddf4d;
2827
+ }
2828
+
2829
+ /* Inverted Basic */
2830
+ .ui.inverted.olive.basic.buttons .button,
2831
+ .ui.inverted.olive.buttons .basic.button,
2832
+ .ui.inverted.olive.basic.button {
2833
+ background-color: transparent;
2834
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
2835
+ color: #FFFFFF !important;
2836
+ }
2837
+ .ui.inverted.olive.basic.buttons .button:hover,
2838
+ .ui.inverted.olive.buttons .basic.button:hover,
2839
+ .ui.inverted.olive.basic.button:hover {
2840
+ box-shadow: 0px 0px 0px 2px #d8ea5c inset !important;
2841
+ color: #D9E778 !important;
2842
+ }
2843
+ .ui.inverted.olive.basic.buttons .button:focus,
2844
+ .ui.inverted.olive.basic.buttons .button:focus,
2845
+ .ui.inverted.olive.basic.button:focus {
2846
+ box-shadow: 0px 0px 0px 2px #daef47 inset !important;
2847
+ color: #D9E778 !important;
2848
+ }
2849
+ .ui.inverted.olive.basic.buttons .active.button,
2850
+ .ui.inverted.olive.buttons .basic.active.button,
2851
+ .ui.inverted.olive.basic.active.button {
2852
+ box-shadow: 0px 0px 0px 2px #daed59 inset !important;
2853
+ color: #D9E778 !important;
2854
+ }
2855
+ .ui.inverted.olive.basic.buttons .button:active,
2856
+ .ui.inverted.olive.buttons .basic.button:active,
2857
+ .ui.inverted.olive.basic.button:active {
2858
+ box-shadow: 0px 0px 0px 2px #cddf4d inset !important;
2859
+ color: #D9E778 !important;
2860
+ }
2861
+
2862
+ /*--- Yellow ---*/
2863
+
2864
+ .ui.yellow.buttons .button,
2865
+ .ui.yellow.button {
2866
+ background-color: #FBBD08;
2867
+ color: #FFFFFF;
2868
+ text-shadow: none;
2869
+ background-image: none;
2870
+ }
2871
+ .ui.yellow.button {
2872
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
2873
+ }
2874
+ .ui.yellow.buttons .button:hover,
2875
+ .ui.yellow.button:hover {
2876
+ background-color: #eaae00;
2877
+ color: #FFFFFF;
2878
+ text-shadow: none;
2879
+ }
2880
+ .ui.yellow.buttons .button:focus,
2881
+ .ui.yellow.button:focus {
2882
+ background-color: #daa300;
2883
+ color: #FFFFFF;
2884
+ text-shadow: none;
2885
+ }
2886
+ .ui.yellow.buttons .button:active,
2887
+ .ui.yellow.button:active {
2888
+ background-color: #cd9903;
2889
+ color: #FFFFFF;
2890
+ text-shadow: none;
2891
+ }
2892
+ .ui.yellow.buttons .active.button,
2893
+ .ui.yellow.buttons .active.button:active,
2894
+ .ui.yellow.active.button,
2895
+ .ui.yellow.button .active.button:active {
2896
+ background-color: #eaae00;
2897
+ color: #FFFFFF;
2898
+ text-shadow: none;
2899
+ }
2900
+
2901
+ /* Basic */
2902
+ .ui.basic.yellow.buttons .button,
2903
+ .ui.basic.yellow.button {
2904
+ box-shadow: 0px 0px 0px 1px #FBBD08 inset !important;
2905
+ color: #FBBD08 !important;
2906
+ }
2907
+ .ui.basic.yellow.buttons .button:hover,
2908
+ .ui.basic.yellow.button:hover {
2909
+ background: transparent !important;
2910
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
2911
+ color: #eaae00 !important;
2912
+ }
2913
+ .ui.basic.yellow.buttons .button:focus,
2914
+ .ui.basic.yellow.button:focus {
2915
+ background: transparent !important;
2916
+ box-shadow: 0px 0px 0px 1px #daa300 inset !important;
2917
+ color: #eaae00 !important;
2918
+ }
2919
+ .ui.basic.yellow.buttons .active.button,
2920
+ .ui.basic.yellow.active.button {
2921
+ background: transparent !important;
2922
+ box-shadow: 0px 0px 0px 1px #eaae00 inset !important;
2923
+ color: #cd9903 !important;
2924
+ }
2925
+ .ui.basic.yellow.buttons .button:active,
2926
+ .ui.basic.yellow.button:active {
2927
+ box-shadow: 0px 0px 0px 1px #cd9903 inset !important;
2928
+ color: #cd9903 !important;
2929
+ }
2930
+ .ui.buttons:not(.vertical) > .basic.yellow.button:not(:first-child) {
2931
+ margin-left: -1px;
2932
+ }
2933
+
2934
+ /* Inverted */
2935
+ .ui.inverted.yellow.buttons .button,
2936
+ .ui.inverted.yellow.button {
2937
+ background-color: transparent;
2938
+ box-shadow: 0px 0px 0px 2px #FFE21F inset !important;
2939
+ color: #FFE21F;
2940
+ }
2941
+ .ui.inverted.yellow.buttons .button:hover,
2942
+ .ui.inverted.yellow.button:hover,
2943
+ .ui.inverted.yellow.buttons .button:focus,
2944
+ .ui.inverted.yellow.button:focus,
2945
+ .ui.inverted.yellow.buttons .button.active,
2946
+ .ui.inverted.yellow.button.active,
2947
+ .ui.inverted.yellow.buttons .button:active,
2948
+ .ui.inverted.yellow.button:active {
2949
+ box-shadow: none !important;
2950
+ color: rgb(0 0 0 / 60%);
2951
+ }
2952
+ .ui.inverted.yellow.buttons .button:hover,
2953
+ .ui.inverted.yellow.button:hover {
2954
+ background-color: #ffdf05;
2955
+ }
2956
+ .ui.inverted.yellow.buttons .button:focus,
2957
+ .ui.inverted.yellow.button:focus {
2958
+ background-color: #f5d500;
2959
+ }
2960
+ .ui.inverted.yellow.buttons .active.button,
2961
+ .ui.inverted.yellow.active.button {
2962
+ background-color: #ffdf05;
2963
+ }
2964
+ .ui.inverted.yellow.buttons .button:active,
2965
+ .ui.inverted.yellow.button:active {
2966
+ background-color: #ebcd00;
2967
+ }
2968
+
2969
+ /* Inverted Basic */
2970
+ .ui.inverted.yellow.basic.buttons .button,
2971
+ .ui.inverted.yellow.buttons .basic.button,
2972
+ .ui.inverted.yellow.basic.button {
2973
+ background-color: transparent;
2974
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
2975
+ color: #FFFFFF !important;
2976
+ }
2977
+ .ui.inverted.yellow.basic.buttons .button:hover,
2978
+ .ui.inverted.yellow.buttons .basic.button:hover,
2979
+ .ui.inverted.yellow.basic.button:hover {
2980
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
2981
+ color: #FFE21F !important;
2982
+ }
2983
+ .ui.inverted.yellow.basic.buttons .button:focus,
2984
+ .ui.inverted.yellow.basic.buttons .button:focus,
2985
+ .ui.inverted.yellow.basic.button:focus {
2986
+ box-shadow: 0px 0px 0px 2px #f5d500 inset !important;
2987
+ color: #FFE21F !important;
2988
+ }
2989
+ .ui.inverted.yellow.basic.buttons .active.button,
2990
+ .ui.inverted.yellow.buttons .basic.active.button,
2991
+ .ui.inverted.yellow.basic.active.button {
2992
+ box-shadow: 0px 0px 0px 2px #ffdf05 inset !important;
2993
+ color: #FFE21F !important;
2994
+ }
2995
+ .ui.inverted.yellow.basic.buttons .button:active,
2996
+ .ui.inverted.yellow.buttons .basic.button:active,
2997
+ .ui.inverted.yellow.basic.button:active {
2998
+ box-shadow: 0px 0px 0px 2px #ebcd00 inset !important;
2999
+ color: #FFE21F !important;
3000
+ }
3001
+
3002
+ /*-------------------
3003
+ Primary
3004
+ --------------------*/
3005
+
3006
+
3007
+ /*--- Standard ---*/
3008
+
3009
+ .ui.primary.buttons .button,
3010
+ .ui.primary.button {
3011
+ background-color: #2185D0;
3012
+ color: #FFFFFF;
3013
+ text-shadow: none;
3014
+ background-image: none;
3015
+ }
3016
+ .ui.primary.button {
3017
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
3018
+ }
3019
+ .ui.primary.buttons .button:hover,
3020
+ .ui.primary.button:hover {
3021
+ background-color: #1678c2;
3022
+ color: #FFFFFF;
3023
+ text-shadow: none;
3024
+ }
3025
+ .ui.primary.buttons .button:focus,
3026
+ .ui.primary.button:focus {
3027
+ background-color: #0d71bb;
3028
+ color: #FFFFFF;
3029
+ text-shadow: none;
3030
+ }
3031
+ .ui.primary.buttons .button:active,
3032
+ .ui.primary.button:active {
3033
+ background-color: #1a69a4;
3034
+ color: #FFFFFF;
3035
+ text-shadow: none;
3036
+ }
3037
+ .ui.primary.buttons .active.button,
3038
+ .ui.primary.buttons .active.button:active,
3039
+ .ui.primary.active.button,
3040
+ .ui.primary.button .active.button:active {
3041
+ background-color: #1279c6;
3042
+ color: #FFFFFF;
3043
+ text-shadow: none;
3044
+ }
3045
+
3046
+ /* Basic */
3047
+ .ui.basic.primary.buttons .button,
3048
+ .ui.basic.primary.button {
3049
+ box-shadow: 0px 0px 0px 1px #2185D0 inset !important;
3050
+ color: #2185D0 !important;
3051
+ }
3052
+ .ui.basic.primary.buttons .button:hover,
3053
+ .ui.basic.primary.button:hover {
3054
+ background: transparent !important;
3055
+ box-shadow: 0px 0px 0px 1px #1678c2 inset !important;
3056
+ color: #1678c2 !important;
3057
+ }
3058
+ .ui.basic.primary.buttons .button:focus,
3059
+ .ui.basic.primary.button:focus {
3060
+ background: transparent !important;
3061
+ box-shadow: 0px 0px 0px 1px #0d71bb inset !important;
3062
+ color: #1678c2 !important;
3063
+ }
3064
+ .ui.basic.primary.buttons .active.button,
3065
+ .ui.basic.primary.active.button {
3066
+ background: transparent !important;
3067
+ box-shadow: 0px 0px 0px 1px #1279c6 inset !important;
3068
+ color: #1a69a4 !important;
3069
+ }
3070
+ .ui.basic.primary.buttons .button:active,
3071
+ .ui.basic.primary.button:active {
3072
+ box-shadow: 0px 0px 0px 1px #1a69a4 inset !important;
3073
+ color: #1a69a4 !important;
3074
+ }
3075
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3076
+ margin-left: -1px;
3077
+ }
3078
+
3079
+ /* Inverted */
3080
+ .ui.inverted.primary.buttons .button,
3081
+ .ui.inverted.primary.button {
3082
+ background-color: transparent;
3083
+ box-shadow: 0px 0px 0px 2px #54C8FF inset !important;
3084
+ color: #54C8FF;
3085
+ }
3086
+ .ui.inverted.primary.buttons .button:hover,
3087
+ .ui.inverted.primary.button:hover,
3088
+ .ui.inverted.primary.buttons .button:focus,
3089
+ .ui.inverted.primary.button:focus,
3090
+ .ui.inverted.primary.buttons .button.active,
3091
+ .ui.inverted.primary.button.active,
3092
+ .ui.inverted.primary.buttons .button:active,
3093
+ .ui.inverted.primary.button:active {
3094
+ box-shadow: none !important;
3095
+ color: #FFFFFF;
3096
+ }
3097
+ .ui.inverted.primary.buttons .button:hover,
3098
+ .ui.inverted.primary.button:hover {
3099
+ background-color: #3ac0ff;
3100
+ }
3101
+ .ui.inverted.primary.buttons .button:focus,
3102
+ .ui.inverted.primary.button:focus {
3103
+ background-color: #2bbbff;
3104
+ }
3105
+ .ui.inverted.primary.buttons .active.button,
3106
+ .ui.inverted.primary.active.button {
3107
+ background-color: #3ac0ff;
3108
+ }
3109
+ .ui.inverted.primary.buttons .button:active,
3110
+ .ui.inverted.primary.button:active {
3111
+ background-color: #21b8ff;
3112
+ }
3113
+
3114
+ /* Inverted Basic */
3115
+ .ui.inverted.primary.basic.buttons .button,
3116
+ .ui.inverted.primary.buttons .basic.button,
3117
+ .ui.inverted.primary.basic.button {
3118
+ background-color: transparent;
3119
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
3120
+ color: #FFFFFF !important;
3121
+ }
3122
+ .ui.inverted.primary.basic.buttons .button:hover,
3123
+ .ui.inverted.primary.buttons .basic.button:hover,
3124
+ .ui.inverted.primary.basic.button:hover {
3125
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
3126
+ color: #54C8FF !important;
3127
+ }
3128
+ .ui.inverted.primary.basic.buttons .button:focus,
3129
+ .ui.inverted.primary.basic.buttons .button:focus,
3130
+ .ui.inverted.primary.basic.button:focus {
3131
+ box-shadow: 0px 0px 0px 2px #2bbbff inset !important;
3132
+ color: #54C8FF !important;
3133
+ }
3134
+ .ui.inverted.primary.basic.buttons .active.button,
3135
+ .ui.inverted.primary.buttons .basic.active.button,
3136
+ .ui.inverted.primary.basic.active.button {
3137
+ box-shadow: 0px 0px 0px 2px #3ac0ff inset !important;
3138
+ color: #54C8FF !important;
3139
+ }
3140
+ .ui.inverted.primary.basic.buttons .button:active,
3141
+ .ui.inverted.primary.buttons .basic.button:active,
3142
+ .ui.inverted.primary.basic.button:active {
3143
+ box-shadow: 0px 0px 0px 2px #21b8ff inset !important;
3144
+ color: #54C8FF !important;
3145
+ }
3146
+
3147
+ /*-------------------
3148
+ Secondary
3149
+ --------------------*/
3150
+
3151
+
3152
+ /* Standard */
3153
+ .ui.secondary.buttons .button,
3154
+ .ui.secondary.button {
3155
+ background-color: #1B1C1D;
3156
+ color: #FFFFFF;
3157
+ text-shadow: none;
3158
+ background-image: none;
3159
+ }
3160
+ .ui.secondary.button {
3161
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
3162
+ }
3163
+ .ui.secondary.buttons .button:hover,
3164
+ .ui.secondary.button:hover {
3165
+ background-color: #27292a;
3166
+ color: #FFFFFF;
3167
+ text-shadow: none;
3168
+ }
3169
+ .ui.secondary.buttons .button:focus,
3170
+ .ui.secondary.button:focus {
3171
+ background-color: #2e3032;
3172
+ color: #FFFFFF;
3173
+ text-shadow: none;
3174
+ }
3175
+ .ui.secondary.buttons .button:active,
3176
+ .ui.secondary.button:active {
3177
+ background-color: #343637;
3178
+ color: #FFFFFF;
3179
+ text-shadow: none;
3180
+ }
3181
+ .ui.secondary.buttons .active.button,
3182
+ .ui.secondary.buttons .active.button:active,
3183
+ .ui.secondary.active.button,
3184
+ .ui.secondary.button .active.button:active {
3185
+ background-color: #27292a;
3186
+ color: #FFFFFF;
3187
+ text-shadow: none;
3188
+ }
3189
+
3190
+ /* Basic */
3191
+ .ui.basic.secondary.buttons .button,
3192
+ .ui.basic.secondary.button {
3193
+ box-shadow: 0px 0px 0px 1px #1B1C1D inset !important;
3194
+ color: #1B1C1D !important;
3195
+ }
3196
+ .ui.basic.secondary.buttons .button:hover,
3197
+ .ui.basic.secondary.button:hover {
3198
+ background: transparent !important;
3199
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
3200
+ color: #27292a !important;
3201
+ }
3202
+ .ui.basic.secondary.buttons .button:focus,
3203
+ .ui.basic.secondary.button:focus {
3204
+ background: transparent !important;
3205
+ box-shadow: 0px 0px 0px 1px #2e3032 inset !important;
3206
+ color: #27292a !important;
3207
+ }
3208
+ .ui.basic.secondary.buttons .active.button,
3209
+ .ui.basic.secondary.active.button {
3210
+ background: transparent !important;
3211
+ box-shadow: 0px 0px 0px 1px #27292a inset !important;
3212
+ color: #343637 !important;
3213
+ }
3214
+ .ui.basic.secondary.buttons .button:active,
3215
+ .ui.basic.secondary.button:active {
3216
+ box-shadow: 0px 0px 0px 1px #343637 inset !important;
3217
+ color: #343637 !important;
3218
+ }
3219
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3220
+ margin-left: -1px;
3221
+ }
3222
+
3223
+ /* Inverted */
3224
+ .ui.inverted.secondary.buttons .button,
3225
+ .ui.inverted.secondary.button {
3226
+ background-color: transparent;
3227
+ box-shadow: 0px 0px 0px 2px #545454 inset !important;
3228
+ color: #545454;
3229
+ }
3230
+ .ui.inverted.secondary.buttons .button:hover,
3231
+ .ui.inverted.secondary.button:hover,
3232
+ .ui.inverted.secondary.buttons .button:focus,
3233
+ .ui.inverted.secondary.button:focus,
3234
+ .ui.inverted.secondary.buttons .button.active,
3235
+ .ui.inverted.secondary.button.active,
3236
+ .ui.inverted.secondary.buttons .button:active,
3237
+ .ui.inverted.secondary.button:active {
3238
+ box-shadow: none !important;
3239
+ color: #FFFFFF;
3240
+ }
3241
+ .ui.inverted.secondary.buttons .button:hover,
3242
+ .ui.inverted.secondary.button:hover {
3243
+ background-color: #616161;
3244
+ }
3245
+ .ui.inverted.secondary.buttons .button:focus,
3246
+ .ui.inverted.secondary.button:focus {
3247
+ background-color: #686868;
3248
+ }
3249
+ .ui.inverted.secondary.buttons .active.button,
3250
+ .ui.inverted.secondary.active.button {
3251
+ background-color: #616161;
3252
+ }
3253
+ .ui.inverted.secondary.buttons .button:active,
3254
+ .ui.inverted.secondary.button:active {
3255
+ background-color: #6e6e6e;
3256
+ }
3257
+
3258
+ /* Inverted Basic */
3259
+ .ui.inverted.secondary.basic.buttons .button,
3260
+ .ui.inverted.secondary.buttons .basic.button,
3261
+ .ui.inverted.secondary.basic.button {
3262
+ background-color: transparent;
3263
+ box-shadow: 0px 0px 0px 2px rgb(255 255 255 / 50%) inset !important;
3264
+ color: #FFFFFF !important;
3265
+ }
3266
+ .ui.inverted.secondary.basic.buttons .button:hover,
3267
+ .ui.inverted.secondary.buttons .basic.button:hover,
3268
+ .ui.inverted.secondary.basic.button:hover {
3269
+ box-shadow: 0px 0px 0px 2px #616161 inset !important;
3270
+ color: #545454 !important;
3271
+ }
3272
+ .ui.inverted.secondary.basic.buttons .button:focus,
3273
+ .ui.inverted.secondary.basic.buttons .button:focus,
3274
+ .ui.inverted.secondary.basic.button:focus {
3275
+ box-shadow: 0px 0px 0px 2px #686868 inset !important;
3276
+ color: #545454 !important;
3277
+ }
3278
+ .ui.inverted.secondary.basic.buttons .active.button,
3279
+ .ui.inverted.secondary.buttons .basic.active.button,
3280
+ .ui.inverted.secondary.basic.active.button {
3281
+ box-shadow: 0px 0px 0px 2px #616161 inset !important;
3282
+ color: #545454 !important;
3283
+ }
3284
+ .ui.inverted.secondary.basic.buttons .button:active,
3285
+ .ui.inverted.secondary.buttons .basic.button:active,
3286
+ .ui.inverted.secondary.basic.button:active {
3287
+ box-shadow: 0px 0px 0px 2px #6e6e6e inset !important;
3288
+ color: #545454 !important;
3289
+ }
3290
+
3291
+ /*---------------
3292
+ Positive
3293
+ ----------------*/
3294
+
3295
+
3296
+ /* Standard */
3297
+ .ui.positive.buttons .button,
3298
+ .ui.positive.button {
3299
+ background-color: #21BA45;
3300
+ color: #FFFFFF;
3301
+ text-shadow: none;
3302
+ background-image: none;
3303
+ }
3304
+ .ui.positive.button {
3305
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
3306
+ }
3307
+ .ui.positive.buttons .button:hover,
3308
+ .ui.positive.button:hover {
3309
+ background-color: #16ab39;
3310
+ color: #FFFFFF;
3311
+ text-shadow: none;
3312
+ }
3313
+ .ui.positive.buttons .button:focus,
3314
+ .ui.positive.button:focus {
3315
+ background-color: #0ea432;
3316
+ color: #FFFFFF;
3317
+ text-shadow: none;
3318
+ }
3319
+ .ui.positive.buttons .button:active,
3320
+ .ui.positive.button:active {
3321
+ background-color: #198f35;
3322
+ color: #FFFFFF;
3323
+ text-shadow: none;
3324
+ }
3325
+ .ui.positive.buttons .active.button,
3326
+ .ui.positive.buttons .active.button:active,
3327
+ .ui.positive.active.button,
3328
+ .ui.positive.button .active.button:active {
3329
+ background-color: #13ae38;
3330
+ color: #FFFFFF;
3331
+ text-shadow: none;
3332
+ }
3333
+
3334
+ /* Basic */
3335
+ .ui.basic.positive.buttons .button,
3336
+ .ui.basic.positive.button {
3337
+ box-shadow: 0px 0px 0px 1px #21BA45 inset !important;
3338
+ color: #21BA45 !important;
3339
+ }
3340
+ .ui.basic.positive.buttons .button:hover,
3341
+ .ui.basic.positive.button:hover {
3342
+ background: transparent !important;
3343
+ box-shadow: 0px 0px 0px 1px #16ab39 inset !important;
3344
+ color: #16ab39 !important;
3345
+ }
3346
+ .ui.basic.positive.buttons .button:focus,
3347
+ .ui.basic.positive.button:focus {
3348
+ background: transparent !important;
3349
+ box-shadow: 0px 0px 0px 1px #0ea432 inset !important;
3350
+ color: #16ab39 !important;
3351
+ }
3352
+ .ui.basic.positive.buttons .active.button,
3353
+ .ui.basic.positive.active.button {
3354
+ background: transparent !important;
3355
+ box-shadow: 0px 0px 0px 1px #13ae38 inset !important;
3356
+ color: #198f35 !important;
3357
+ }
3358
+ .ui.basic.positive.buttons .button:active,
3359
+ .ui.basic.positive.button:active {
3360
+ box-shadow: 0px 0px 0px 1px #198f35 inset !important;
3361
+ color: #198f35 !important;
3362
+ }
3363
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3364
+ margin-left: -1px;
3365
+ }
3366
+
3367
+ /*---------------
3368
+ Negative
3369
+ ----------------*/
3370
+
3371
+
3372
+ /* Standard */
3373
+ .ui.negative.buttons .button,
3374
+ .ui.negative.button {
3375
+ background-color: #DB2828;
3376
+ color: #FFFFFF;
3377
+ text-shadow: none;
3378
+ background-image: none;
3379
+ }
3380
+ .ui.negative.button {
3381
+ box-shadow: 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
3382
+ }
3383
+ .ui.negative.buttons .button:hover,
3384
+ .ui.negative.button:hover {
3385
+ background-color: #d01919;
3386
+ color: #FFFFFF;
3387
+ text-shadow: none;
3388
+ }
3389
+ .ui.negative.buttons .button:focus,
3390
+ .ui.negative.button:focus {
3391
+ background-color: #ca1010;
3392
+ color: #FFFFFF;
3393
+ text-shadow: none;
3394
+ }
3395
+ .ui.negative.buttons .button:active,
3396
+ .ui.negative.button:active {
3397
+ background-color: #b21e1e;
3398
+ color: #FFFFFF;
3399
+ text-shadow: none;
3400
+ }
3401
+ .ui.negative.buttons .active.button,
3402
+ .ui.negative.buttons .active.button:active,
3403
+ .ui.negative.active.button,
3404
+ .ui.negative.button .active.button:active {
3405
+ background-color: #d41515;
3406
+ color: #FFFFFF;
3407
+ text-shadow: none;
3408
+ }
3409
+
3410
+ /* Basic */
3411
+ .ui.basic.negative.buttons .button,
3412
+ .ui.basic.negative.button {
3413
+ box-shadow: 0px 0px 0px 1px #DB2828 inset !important;
3414
+ color: #DB2828 !important;
3415
+ }
3416
+ .ui.basic.negative.buttons .button:hover,
3417
+ .ui.basic.negative.button:hover {
3418
+ background: transparent !important;
3419
+ box-shadow: 0px 0px 0px 1px #d01919 inset !important;
3420
+ color: #d01919 !important;
3421
+ }
3422
+ .ui.basic.negative.buttons .button:focus,
3423
+ .ui.basic.negative.button:focus {
3424
+ background: transparent !important;
3425
+ box-shadow: 0px 0px 0px 1px #ca1010 inset !important;
3426
+ color: #d01919 !important;
3427
+ }
3428
+ .ui.basic.negative.buttons .active.button,
3429
+ .ui.basic.negative.active.button {
3430
+ background: transparent !important;
3431
+ box-shadow: 0px 0px 0px 1px #d41515 inset !important;
3432
+ color: #b21e1e !important;
3433
+ }
3434
+ .ui.basic.negative.buttons .button:active,
3435
+ .ui.basic.negative.button:active {
3436
+ box-shadow: 0px 0px 0px 1px #b21e1e inset !important;
3437
+ color: #b21e1e !important;
3438
+ }
3439
+ .ui.buttons:not(.vertical) > .basic.primary.button:not(:first-child) {
3440
+ margin-left: -1px;
3441
+ }
3442
+
3443
+
3444
+ /*******************************
3445
+ Groups
3446
+ *******************************/
3447
+
3448
+ .ui.buttons {
3449
+ display: inline-flex;
3450
+ flex-direction: row;
3451
+ font-size: 0em;
3452
+ vertical-align: baseline;
3453
+ margin: 0em 0.25em 0em 0em;
3454
+ }
3455
+ .ui.buttons:not(.basic, .inverted) {
3456
+ box-shadow: none;
3457
+ }
3458
+
3459
+ /* Clearfix */
3460
+ .ui.buttons::after {
3461
+ content: ".";
3462
+ display: block;
3463
+ height: 0;
3464
+ clear: both;
3465
+ visibility: hidden;
3466
+ }
3467
+
3468
+ /* Standard Group */
3469
+ .ui.buttons .button {
3470
+ flex: 1 0 auto;
3471
+ border-radius: 0em;
3472
+ margin: 0px;
3473
+ }
3474
+ .ui.buttons > .ui.button:not(.basic, .inverted),
3475
+ .ui.buttons:not(.basic, .inverted) > .button {
3476
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgb(34 36 38 / 15%) inset;
3477
+ }
3478
+ .ui.buttons .button:first-child {
3479
+ border-left: none;
3480
+ margin-left: 0em;
3481
+ border-top-left-radius: 0.2857rem;
3482
+ border-bottom-left-radius: 0.2857rem;
3483
+ }
3484
+ .ui.buttons .button:last-child {
3485
+ border-top-right-radius: 0.2857rem;
3486
+ border-bottom-right-radius: 0.2857rem;
3487
+ }
3488
+
3489
+ /* Vertical Style */
3490
+ .ui.vertical.buttons {
3491
+ display: inline-flex;
3492
+ flex-direction: column;
3493
+ }
3494
+ .ui.vertical.buttons .button {
3495
+ display: block;
3496
+ float: none;
3497
+ width: 100%;
3498
+ margin: 0px;
3499
+ box-shadow: none;
3500
+ border-radius: 0em;
3501
+ }
3502
+ .ui.vertical.buttons .button:first-child {
3503
+ border-top-left-radius: 0.2857rem;
3504
+ border-top-right-radius: 0.2857rem;
3505
+ }
3506
+ .ui.vertical.buttons .button:last-child {
3507
+ margin-bottom: 0px;
3508
+ border-bottom-left-radius: 0.2857rem;
3509
+ border-bottom-right-radius: 0.2857rem;
3510
+ }
3511
+ .ui.vertical.buttons .button:only-child {
3512
+ border-radius: 0.2857rem;
3513
+ }
3514
+
3515
+
3516
+ /*******************************
3517
+ Theme Overrides
3518
+ *******************************/
3519
+
3520
+
3521
+
3522
+ /*******************************
3523
+ Site Overrides
3524
+ *******************************/
3525
+