@northdata/fomantic-ui 2.9.419 → 2.9.421

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 (29) hide show
  1. package/lib/semantic-ui/dist/components/accordion.css +10 -0
  2. package/lib/semantic-ui/dist/components/accordion.min.css +1 -1
  3. package/lib/semantic-ui/dist/components/button.css +322 -7
  4. package/lib/semantic-ui/dist/components/button.min.css +1 -1
  5. package/lib/semantic-ui/dist/components/header.css +1 -1
  6. package/lib/semantic-ui/dist/components/header.min.css +1 -1
  7. package/lib/semantic-ui/dist/components/icon.css +9 -0
  8. package/lib/semantic-ui/dist/components/icon.min.css +1 -1
  9. package/lib/semantic-ui/dist/components/input.css +12 -12
  10. package/lib/semantic-ui/dist/components/input.min.css +1 -1
  11. package/lib/semantic-ui/dist/components/list.css +17 -12
  12. package/lib/semantic-ui/dist/components/list.min.css +1 -1
  13. package/lib/semantic-ui/dist/components/message.css +48 -7
  14. package/lib/semantic-ui/dist/components/message.min.css +1 -1
  15. package/lib/semantic-ui/dist/components/modal.css +8 -2
  16. package/lib/semantic-ui/dist/components/modal.min.css +1 -1
  17. package/lib/semantic-ui/dist/components/toast.css +288 -0
  18. package/lib/semantic-ui/dist/components/toast.js +964 -0
  19. package/lib/semantic-ui/dist/components/toast.min.css +9 -0
  20. package/lib/semantic-ui/dist/components/toast.min.js +11 -0
  21. package/lib/semantic-ui/dist/less/site/variation.variables +13 -13
  22. package/lib/semantic-ui/dist/semantic-packed.css +723 -38
  23. package/lib/semantic-ui/dist/semantic.css +847 -43
  24. package/lib/semantic-ui/dist/semantic.full.css +1028 -39
  25. package/lib/semantic-ui/dist/semantic.full.min.css +1 -1
  26. package/lib/semantic-ui/dist/semantic.js +965 -0
  27. package/lib/semantic-ui/dist/semantic.min.css +16 -8
  28. package/lib/semantic-ui/dist/semantic.min.js +1 -1
  29. package/package.json +2 -2
@@ -699,7 +699,7 @@ input::selection {
699
699
  }
700
700
 
701
701
  .ui.button:hover .icon {
702
- opacity: 0.85;
702
+ opacity: 1;
703
703
  }
704
704
 
705
705
  /* --------------
@@ -714,7 +714,7 @@ input::selection {
714
714
  }
715
715
 
716
716
  .ui.button:focus .icon {
717
- opacity: 0.85;
717
+ opacity: 1;
718
718
  }
719
719
 
720
720
  /* --------------
@@ -1295,7 +1295,7 @@ input::selection {
1295
1295
 
1296
1296
  .ui.button > .icon:not(.button) {
1297
1297
  height: auto;
1298
- opacity: 0.8;
1298
+ opacity: 1;
1299
1299
  transition: opacity 0.1s ease;
1300
1300
  color: "";
1301
1301
  }
@@ -1465,7 +1465,7 @@ input::selection {
1465
1465
  .ui.animated.icon.button > .content > .icon,
1466
1466
  .ui.icon.buttons .button > .icon,
1467
1467
  .ui.icon.button > .icon {
1468
- opacity: 0.9;
1468
+ opacity: 1;
1469
1469
  margin: 0 !important;
1470
1470
  vertical-align: top;
1471
1471
  }
@@ -1480,7 +1480,7 @@ input::selection {
1480
1480
 
1481
1481
  .ui.basic.buttons .button,
1482
1482
  .ui.basic.button {
1483
- background: transparent none;
1483
+ background: #fff none;
1484
1484
  color: rgba(0, 0, 0, 0.6);
1485
1485
  font-weight: normal;
1486
1486
  border-radius: 0;
@@ -1491,7 +1491,7 @@ input::selection {
1491
1491
 
1492
1492
  .ui.basic.buttons {
1493
1493
  box-shadow: none;
1494
- border: 1px solid rgba(34, 36, 38, 0.15);
1494
+ border: 1px solid rgba(0, 0, 0, 0.1);
1495
1495
  border-radius: 0;
1496
1496
  border-right: none;
1497
1497
  }
@@ -1502,14 +1502,14 @@ input::selection {
1502
1502
 
1503
1503
  .ui.basic.buttons .button:hover,
1504
1504
  .ui.basic.button:hover {
1505
- background: #fff;
1505
+ background: #f9fafb;
1506
1506
  color: rgba(0, 0, 0, 0.8);
1507
1507
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
1508
1508
  }
1509
1509
 
1510
1510
  .ui.basic.buttons .button:focus,
1511
1511
  .ui.basic.button:focus {
1512
- background: #fff;
1512
+ background: #f9fafb;
1513
1513
  color: rgba(0, 0, 0, 0.8);
1514
1514
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
1515
1515
  }
@@ -1590,14 +1590,14 @@ input::selection {
1590
1590
  /* Basic Group */
1591
1591
 
1592
1592
  .ui.basic.buttons:not(.inverted) .button:not(.basic) {
1593
- border-right: 1px solid rgba(34, 36, 38, 0.15);
1593
+ border-right: 1px solid rgba(0, 0, 0, 0.1);
1594
1594
  box-shadow: none;
1595
1595
  }
1596
1596
 
1597
1597
  .ui.basic.vertical.buttons .button {
1598
1598
  border-left: none;
1599
1599
  border-left-width: 0;
1600
- border-top: 1px solid rgba(34, 36, 38, 0.15);
1600
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
1601
1601
  }
1602
1602
 
1603
1603
  .ui.basic.vertical.buttons:not(.spaced):not(.circular) .button:first-child {
@@ -1779,7 +1779,7 @@ input::selection {
1779
1779
  }
1780
1780
 
1781
1781
  .ui.circular.basic.buttons .button {
1782
- border: 1px solid rgba(34, 36, 38, 0.15);
1782
+ border: 1px solid rgba(0, 0, 0, 0.1);
1783
1783
  }
1784
1784
 
1785
1785
  .ui.circular.basic.buttons .button.basic {
@@ -5248,7 +5248,7 @@ input::selection {
5248
5248
  }
5249
5249
 
5250
5250
  .ui.wrapping.basic.buttons .button {
5251
- border-bottom: 1px solid rgba(34, 36, 38, 0.15);
5251
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
5252
5252
  }
5253
5253
 
5254
5254
  .ui.wrapping.basic.buttons .button:hover {
@@ -5298,7 +5298,7 @@ input::selection {
5298
5298
  }
5299
5299
 
5300
5300
  .ui.spaced.basic.buttons .button {
5301
- border: 1px solid rgba(34, 36, 38, 0.15);
5301
+ border: 1px solid rgba(0, 0, 0, 0.1);
5302
5302
  }
5303
5303
 
5304
5304
  .ui.spaced.basic.buttons .button.basic {
@@ -5306,16 +5306,16 @@ input::selection {
5306
5306
  }
5307
5307
 
5308
5308
  .ui.spaced.basic.vertical.buttons .button:first-child {
5309
- border-top: 1px solid rgba(34, 36, 38, 0.15);
5309
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
5310
5310
  }
5311
5311
 
5312
5312
  .ui.spaced.basic.wrapping.buttons .button:not(.basic) {
5313
- border-top: 1px solid rgba(34, 36, 38, 0.15);
5314
- border-right: 1px solid rgba(34, 36, 38, 0.15);
5313
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
5314
+ border-right: 1px solid rgba(0, 0, 0, 0.1);
5315
5315
  }
5316
5316
 
5317
5317
  .ui.spaced.basic.wrapping.buttons .button:not(.basic):first-child {
5318
- border-left: 1px solid rgba(34, 36, 38, 0.15);
5318
+ border-left: 1px solid rgba(0, 0, 0, 0.1);
5319
5319
  }
5320
5320
 
5321
5321
  .ui.spaced.basic.inverted.buttons .basic.button {
@@ -7389,7 +7389,7 @@ i.flag.zimbabwe::before {
7389
7389
  opacity: 1;
7390
7390
  font-size: 1.5em;
7391
7391
  padding-top: 0.14285714em;
7392
- vertical-align: middle;
7392
+ vertical-align: baseline;
7393
7393
  }
7394
7394
 
7395
7395
  /* With Text Node */
@@ -21605,7 +21605,7 @@ ul.ui.list,
21605
21605
  ol.ui.list,
21606
21606
  .ui.list {
21607
21607
  list-style-type: none;
21608
- margin: 1em 0;
21608
+ margin: 1.14285714rem 0;
21609
21609
  padding: 0 0;
21610
21610
  }
21611
21611
 
@@ -21637,7 +21637,7 @@ ol.ui.list li,
21637
21637
  table-layout: fixed;
21638
21638
  list-style-type: none;
21639
21639
  list-style-position: outside;
21640
- padding: 0.21428571em 0;
21640
+ padding: 0 0;
21641
21641
  line-height: 1.14285714em;
21642
21642
  }
21643
21643
 
@@ -21777,8 +21777,8 @@ ol.ui.list ol li,
21777
21777
  .ui.list > .item .header {
21778
21778
  display: block;
21779
21779
  margin: 0;
21780
- font-family: "Josefin Sans", serif;
21781
- font-weight: bold;
21780
+ font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
21781
+ font-weight: 500;
21782
21782
  color: rgba(0, 0, 0, 0.87);
21783
21783
  }
21784
21784
 
@@ -21865,7 +21865,7 @@ ol.ui.list ol li,
21865
21865
  background-color: transparent;
21866
21866
  list-style-type: none;
21867
21867
  list-style-position: outside;
21868
- padding: 0.21428571em 0;
21868
+ padding: 0 0;
21869
21869
  line-height: 1.14285714em;
21870
21870
  }
21871
21871
 
@@ -21927,8 +21927,8 @@ ol.ui.list ol li,
21927
21927
 
21928
21928
  .ui.horizontal.list > .item:first-child,
21929
21929
  .ui.horizontal.list > .item:last-child {
21930
- padding-top: 0.21428571em;
21931
- padding-bottom: 0.21428571em;
21930
+ padding-top: 0;
21931
+ padding-bottom: 0;
21932
21932
  }
21933
21933
 
21934
21934
  /* Horizontal List */
@@ -22414,7 +22414,7 @@ ol.ui.suffixed.list li::before,
22414
22414
  .ui.divided.ordered.list .item .list:not(.icon) {
22415
22415
  margin-left: 0;
22416
22416
  margin-right: 0;
22417
- padding-bottom: 0.21428571em;
22417
+ padding-bottom: 0;
22418
22418
  }
22419
22419
 
22420
22420
  .ui.divided.ordered.list .item .list > .item {
@@ -22481,8 +22481,8 @@ ol.ui.suffixed.list li::before,
22481
22481
 
22482
22482
  .ui.celled.list > .item:first-child,
22483
22483
  .ui.celled.list > .item:last-child {
22484
- padding-top: 0.21428571em;
22485
- padding-bottom: 0.21428571em;
22484
+ padding-top: 0;
22485
+ padding-bottom: 0;
22486
22486
  }
22487
22487
 
22488
22488
  /* Sub Menu */
@@ -22509,7 +22509,7 @@ ol.ui.suffixed.list li::before,
22509
22509
  .ui.celled.bulleted.list .item .list:not(.icon) {
22510
22510
  margin-left: -1.25rem;
22511
22511
  margin-right: -1.25rem;
22512
- padding-bottom: 0.21428571em;
22512
+ padding-bottom: 0;
22513
22513
  }
22514
22514
 
22515
22515
  /* Celled Ordered */
@@ -22526,7 +22526,7 @@ ol.ui.suffixed.list li::before,
22526
22526
  .ui.celled.ordered.list .item .list:not(.icon) {
22527
22527
  margin-left: 0;
22528
22528
  margin-right: 0;
22529
- padding-bottom: 0.21428571em;
22529
+ padding-bottom: 0;
22530
22530
  }
22531
22531
 
22532
22532
  .ui.celled.ordered.list .list > .item {
@@ -22687,6 +22687,12 @@ ol.ui.suffixed.list li::before,
22687
22687
  /*******************************
22688
22688
  Site Overrides
22689
22689
  *******************************/
22690
+
22691
+ .ui.list .list > .item .sub.header,
22692
+ .ui.list > .item .sub.header {
22693
+ font-weight: 300;
22694
+ margin-top: 0.28571429em;
22695
+ }
22690
22696
  /*!
22691
22697
  * # Fomantic-UI 2.9.4 - Loader
22692
22698
  * https://github.com/fomantic/Fomantic-UI/
@@ -31680,9 +31686,9 @@ Floated Menu / Item
31680
31686
  .ui.message {
31681
31687
  position: relative;
31682
31688
  min-height: 1em;
31683
- margin: 1em 0;
31689
+ margin: 1.14285714rem 0;
31684
31690
  background: #f8f8f9;
31685
- padding: 1em 1.5em;
31691
+ padding: 1.14285714em;
31686
31692
  line-height: 1.4285em;
31687
31693
  color: rgba(0, 0, 0, 0.87);
31688
31694
  transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
@@ -31706,9 +31712,9 @@ Floated Menu / Item
31706
31712
 
31707
31713
  .ui.message .header {
31708
31714
  display: block;
31709
- font-family: "Josefin Sans", serif;
31710
- font-weight: bold;
31711
- margin: -0.14285714em 0 0 0;
31715
+ font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
31716
+ font-weight: 300;
31717
+ margin: 0 0 0 0;
31712
31718
  }
31713
31719
 
31714
31720
  /* Default font size */
@@ -31733,7 +31739,7 @@ Floated Menu / Item
31733
31739
  }
31734
31740
 
31735
31741
  .ui.message .header + p {
31736
- margin-top: 0.25em;
31742
+ margin-top: 0.28571429em;
31737
31743
  }
31738
31744
 
31739
31745
  /* List */
@@ -31900,7 +31906,7 @@ Floated Menu / Item
31900
31906
  }
31901
31907
 
31902
31908
  .ui.bottom.attached.message:not(:last-child) {
31903
- margin-bottom: 1em;
31909
+ margin-bottom: 1.14285714rem;
31904
31910
  }
31905
31911
 
31906
31912
  .ui.attached.icon.message {
@@ -32408,6 +32414,22 @@ Floated Menu / Item
32408
32414
  /*******************************
32409
32415
  Site Overrides
32410
32416
  *******************************/
32417
+
32418
+ .ui.icon.message {
32419
+ align-items: flex-start;
32420
+ }
32421
+
32422
+ .ui.icon.message > .content.details {
32423
+ flex: 0 0 auto;
32424
+ align-self: center;
32425
+ margin-left: 0.57142857em;
32426
+ }
32427
+
32428
+ @media only screen and (max-width: 767.98px) {
32429
+ .ui.icon.message > .content.details {
32430
+ display: none;
32431
+ }
32432
+ }
32411
32433
  /*!
32412
32434
  * # Fomantic-UI 2.9.4 - Table
32413
32435
  * https://github.com/fomantic/Fomantic-UI/
@@ -46072,7 +46094,7 @@ select.ui.dropdown {
46072
46094
  display: block;
46073
46095
  width: 100%;
46074
46096
  font-size: 1em;
46075
- line-height: 1.4;
46097
+ line-height: 1.4285em;
46076
46098
  padding: 1.5rem;
46077
46099
  background: #fff;
46078
46100
  }
@@ -46137,7 +46159,7 @@ select.ui.dropdown {
46137
46159
 
46138
46160
  .ui.modal > .actions {
46139
46161
  background: #f9fafb;
46140
- padding: 1rem;
46162
+ padding: 1.5rem;
46141
46163
  border-top: 1px solid rgba(34, 36, 38, 0.15);
46142
46164
  text-align: right;
46143
46165
  }
@@ -46861,6 +46883,14 @@ select.ui.dropdown {
46861
46883
  /*******************************
46862
46884
  Site Overrides
46863
46885
  *******************************/
46886
+
46887
+ .ui.modal > .actions > .ui.button {
46888
+ margin-inline: 1rem 0;
46889
+ }
46890
+
46891
+ .ui.modal > .left.actions > .ui.button {
46892
+ margin-inline: 0 1rem;
46893
+ }
46864
46894
  /*!
46865
46895
  * # Fomantic-UI 2.9.4 - Popup
46866
46896
  * https://github.com/fomantic/Fomantic-UI/
@@ -48920,6 +48950,965 @@ select.ui.dropdown {
48920
48950
  /*******************************
48921
48951
  User Overrides
48922
48952
  *******************************/
48953
+ /*!
48954
+ * # Fomantic-UI 2.9.4 - Toast
48955
+ * https://github.com/fomantic/Fomantic-UI/
48956
+ *
48957
+ *
48958
+ * Released under the MIT license
48959
+ * https://opensource.org/licenses/MIT
48960
+ *
48961
+ */
48962
+
48963
+ /*******************************
48964
+ Toast container
48965
+ *******************************/
48966
+
48967
+ .ui.toast-container {
48968
+ position: fixed;
48969
+ z-index: 9999;
48970
+ }
48971
+
48972
+ .ui.toast-container.absolute {
48973
+ position: absolute;
48974
+ }
48975
+
48976
+ .ui.toast-container.ui.attached {
48977
+ width: 100%;
48978
+ left: 0;
48979
+ }
48980
+
48981
+ .ui.toast-container.ui.attached .vertical.attached {
48982
+ border-radius: 0;
48983
+ }
48984
+
48985
+ .ui.toast-container.ui.attached.ui.ui .attached.actions .button {
48986
+ border-radius: 0;
48987
+ }
48988
+
48989
+ .ui.toast-container.ui.attached .toast-box {
48990
+ margin: 0;
48991
+ width: 100%;
48992
+ border-radius: 0;
48993
+ }
48994
+
48995
+ .ui.toast-container.ui.attached .toast-box > .ui.toast,
48996
+ .ui.toast-container.ui.attached .toast-box > .ui.message {
48997
+ margin-left: 0;
48998
+ }
48999
+
49000
+ .ui.toast-container.ui.attached .toast-box.floating,
49001
+ .ui.toast-container.ui.attached .toast-box.hoverfloating:hover {
49002
+ border: none;
49003
+ }
49004
+
49005
+ .ui.toast-container.ui.attached .toast-box > .vertical > .content {
49006
+ flex: 1;
49007
+ }
49008
+
49009
+ .ui.toast-container.ui.attached .toast-box > * {
49010
+ width: 100%;
49011
+ border-radius: 0;
49012
+ }
49013
+
49014
+ .ui.toast-container.ui.attached .toast-box > * > .vertical:not(.actions) {
49015
+ flex: 1;
49016
+ }
49017
+
49018
+ .ui.toast-container.ui.attached .toast-box > .attached.actions {
49019
+ margin-right: 1px;
49020
+ }
49021
+
49022
+ .ui.toast-container.ui.attached.top {
49023
+ top: 0;
49024
+ }
49025
+
49026
+ .ui.toast-container.ui.attached.bottom {
49027
+ bottom: 0;
49028
+ }
49029
+
49030
+ .ui.toast-container.top.right {
49031
+ top: 0.85714286em;
49032
+ right: 0.85714286em;
49033
+ margin-left: 0.85714286em;
49034
+ }
49035
+
49036
+ .ui.toast-container.top.left {
49037
+ top: 0.85714286em;
49038
+ left: 0.85714286em;
49039
+ margin-right: 0.85714286em;
49040
+ }
49041
+
49042
+ .ui.toast-container.top.center {
49043
+ left: 50%;
49044
+ transform: translate(-50%, 0);
49045
+ top: 0.85714286em;
49046
+ }
49047
+
49048
+ .ui.toast-container.bottom.right {
49049
+ bottom: 0.85714286em;
49050
+ right: 0.85714286em;
49051
+ margin-left: 0.85714286em;
49052
+ }
49053
+
49054
+ .ui.toast-container.bottom.left {
49055
+ bottom: 0.85714286em;
49056
+ left: 0.85714286em;
49057
+ margin-right: 0.85714286em;
49058
+ }
49059
+
49060
+ .ui.toast-container.bottom.center {
49061
+ left: 50%;
49062
+ transform: translate(-50%, 0);
49063
+ bottom: 0.85714286em;
49064
+ }
49065
+
49066
+ .ui.toast-container.centered {
49067
+ transform: translate(-50%, -50%);
49068
+ top: 50%;
49069
+ left: 50%;
49070
+ }
49071
+
49072
+ .ui.toast-container .visible.toast-box,
49073
+ .ui.toast-container .animating.toast-box,
49074
+ .ui.toast-container .toast-box {
49075
+ display: table !important;
49076
+ }
49077
+
49078
+ .ui.toast-container.horizontal {
49079
+ display: flex;
49080
+ flex-direction: row;
49081
+ }
49082
+
49083
+ .ui.toast-container.horizontal .toast-box {
49084
+ margin-right: 0.5em;
49085
+ }
49086
+
49087
+ .ui.toast-container .toast-box {
49088
+ margin-bottom: 0.5em;
49089
+ border-radius: 0;
49090
+ cursor: default;
49091
+ will-change: transform, opacity;
49092
+ }
49093
+
49094
+ .ui.toast-container .toast-box:hover {
49095
+ opacity: 1;
49096
+ }
49097
+
49098
+ .ui.toast-container .toast-box:not(.unclickable):hover {
49099
+ cursor: pointer;
49100
+ }
49101
+
49102
+ .ui.toast-container .toast-box.floating,
49103
+ .ui.toast-container .toast-box.hoverfloating:hover {
49104
+ box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
49105
+ border: none;
49106
+ }
49107
+
49108
+ .ui.toast-container .toast-box.inverted.floating,
49109
+ .ui.toast-container .toast-box.inverted.hoverfloating:hover {
49110
+ box-shadow: 0 2px 4px 0 rgba(225, 225, 225, 0.1), 0 2px 10px 0 rgba(225, 225, 225, 0.5);
49111
+ border: 1px solid rgba(225, 225, 225, 0.5);
49112
+ }
49113
+
49114
+ .ui.toast-container .toast-box.compact,
49115
+ .ui.toast-container .toast-box > .compact {
49116
+ width: 416px;
49117
+ }
49118
+
49119
+ .ui.toast-container .toast-box > .ui.toast,
49120
+ .ui.toast-container .toast-box > .ui.message {
49121
+ margin: 0;
49122
+ position: relative;
49123
+ }
49124
+
49125
+ .ui.toast-container .toast-box > .attached.progress {
49126
+ z-index: 1;
49127
+ }
49128
+
49129
+ .ui.toast-container .toast-box > .attached.progress.bottom {
49130
+ margin: -0.2em -1px -0.01em;
49131
+ }
49132
+
49133
+ .ui.toast-container .toast-box > .attached.progress.top {
49134
+ margin: -0.01em -1px -0.2em;
49135
+ }
49136
+
49137
+ .ui.toast-container .toast-box > .attached.progress .bar {
49138
+ min-width: 0;
49139
+ }
49140
+
49141
+ .ui.toast-container .toast-box > .attached.progress.info .bar.bar.bar {
49142
+ background: #12a1bf;
49143
+ }
49144
+
49145
+ .ui.toast-container .toast-box > .attached.progress.warning .bar.bar.bar {
49146
+ background: #cf9b0d;
49147
+ }
49148
+
49149
+ .ui.toast-container .toast-box > .attached.progress.success .bar.bar.bar {
49150
+ background: #588c64;
49151
+ }
49152
+
49153
+ .ui.toast-container .toast-box > .attached.progress.error .bar.bar.bar {
49154
+ background: #793633;
49155
+ }
49156
+
49157
+ .ui.toast-container .toast-box > .attached.progress.neutral .bar.bar.bar {
49158
+ background: #d9d9d9;
49159
+ }
49160
+
49161
+ .ui.toast-container .toast-box > .ui.message > .close.icon {
49162
+ top: 1rem;
49163
+ right: 1rem;
49164
+ }
49165
+
49166
+ .ui.toast-container .toast-box > .ui.message > .actions:last-child {
49167
+ margin-bottom: -1em;
49168
+ }
49169
+
49170
+ .ui.toast-container .toast-box > .ui.message.icon {
49171
+ align-items: inherit;
49172
+ }
49173
+
49174
+ .ui.toast-container .toast-box > .ui.message.icon > :not(.icon):not(.actions) {
49175
+ padding-left: 0;
49176
+ }
49177
+
49178
+ .ui.toast-container .toast-box > .ui.message.icon > i.icon:not(.close) {
49179
+ display: inline-block;
49180
+ position: absolute;
49181
+ width: 4rem;
49182
+ top: 50%;
49183
+ transform: translateY(-50%);
49184
+ }
49185
+
49186
+ .ui.toast-container .toast-box > .ui.message.icon:not(.vertical).actions > i.icon:not(.close) {
49187
+ top: calc(50% - 1.2em);
49188
+ transform: none;
49189
+ }
49190
+
49191
+ .ui.toast-container .toast-box > .ui.message.icon:not(.vertical).icon.icon.icon {
49192
+ display: block;
49193
+ }
49194
+
49195
+ .ui.toast-container .toast-box .ui.toast > .close.icon {
49196
+ cursor: pointer;
49197
+ margin: 0;
49198
+ opacity: 0.7;
49199
+ transition: opacity 0.1s ease;
49200
+ }
49201
+
49202
+ .ui.toast-container .toast-box .ui.toast > .close.icon:hover {
49203
+ opacity: 1;
49204
+ }
49205
+
49206
+ .ui.toast-container .toast-box .ui.toast.vertical > .close.icon {
49207
+ margin-top: -1rem;
49208
+ margin-right: -1rem;
49209
+ }
49210
+
49211
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon {
49212
+ position: absolute;
49213
+ top: 1rem;
49214
+ }
49215
+
49216
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon:not(.left) {
49217
+ right: 1rem;
49218
+ }
49219
+
49220
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon.left {
49221
+ margin-left: -1rem;
49222
+ }
49223
+
49224
+ .ui.toast-container .toast-box .ui.card {
49225
+ margin: 0;
49226
+ }
49227
+
49228
+ .ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom {
49229
+ border-top-left-radius: 0;
49230
+ border-top-right-radius: 0;
49231
+ }
49232
+
49233
+ .ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom.horizontal > .image > img {
49234
+ border-top-left-radius: 0;
49235
+ }
49236
+
49237
+ .ui.toast-container .toast-box .ui.card.attached:not(.vertical).bottom.horizontal > .image:last-child > img {
49238
+ border-top-right-radius: 0;
49239
+ }
49240
+
49241
+ .ui.toast-container .toast-box .ui.card.attached:not(.vertical).top {
49242
+ border-bottom-left-radius: 0;
49243
+ border-bottom-right-radius: 0;
49244
+ }
49245
+
49246
+ .ui.toast-container .toast-box .ui.card.attached:not(.vertical).top.horizontal > .image > img {
49247
+ border-bottom-left-radius: 0;
49248
+ }
49249
+
49250
+ .ui.toast-container .toast-box .ui.card.attached:not(.vertical).top.horizontal > .image:last-child > img {
49251
+ border-bottom-right-radius: 0;
49252
+ }
49253
+
49254
+ .ui.toast-container .toast-box .ui.card.horizontal.actions > .image > img {
49255
+ border-bottom-left-radius: 0;
49256
+ }
49257
+
49258
+ .ui.toast-container .toast-box .ui.card.horizontal.actions > .image:last-child > img {
49259
+ border-bottom-right-radius: 0;
49260
+ }
49261
+
49262
+ .ui.toast-container .toast-box .progressing {
49263
+ animation-iteration-count: 1;
49264
+ animation-timing-function: linear;
49265
+ }
49266
+
49267
+ .ui.toast-container .toast-box .progressing.up {
49268
+ animation-name: progressUp;
49269
+ }
49270
+
49271
+ .ui.toast-container .toast-box .progressing.down {
49272
+ animation-name: progressDown;
49273
+ }
49274
+
49275
+ .ui.toast-container .toast-box .progressing.wait {
49276
+ animation-name: progressWait;
49277
+ }
49278
+
49279
+ .ui.toast-container .toast-box:hover .pausable.progressing {
49280
+ animation-play-state: paused;
49281
+ }
49282
+
49283
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) {
49284
+ display: block;
49285
+ }
49286
+
49287
+ .ui.toast-container .toast-box :not(.comment):not(.card) .actions {
49288
+ margin: 0.5em -1em -1em -1em;
49289
+ }
49290
+
49291
+ .ui.toast-container .toast-box :not(.comment) .actions {
49292
+ padding: 0.5em 0.5em 0.75em 0.5em;
49293
+ text-align: right;
49294
+ }
49295
+
49296
+ .ui.toast-container .toast-box :not(.comment) .actions.attached:not(.vertical) {
49297
+ margin-right: 1px;
49298
+ }
49299
+
49300
+ .ui.toast-container .toast-box :not(.comment) .actions:not(.basic):not(.attached) {
49301
+ background: rgba(255, 255, 255, 0.25);
49302
+ border-top: 1px solid rgba(0, 0, 0, 0.2);
49303
+ }
49304
+
49305
+ .ui.toast-container .toast-box :not(.comment) .actions.left {
49306
+ text-align: left;
49307
+ }
49308
+
49309
+ .ui.toast-container .toast-box .vertical.actions > .button,
49310
+ .ui.toast-container .toast-box > .vertical > .vertical.vertical,
49311
+ .ui.toast-container .toast-box > .vertical.vertical.vertical {
49312
+ display: flex;
49313
+ }
49314
+
49315
+ .ui.toast-container .toast-box :not(.comment) .vertical.actions {
49316
+ flex-direction: column;
49317
+ }
49318
+
49319
+ .ui.toast-container .toast-box :not(.comment) .vertical.actions > .button {
49320
+ justify-content: center;
49321
+ }
49322
+
49323
+ .ui.toast-container .toast-box :not(.comment) .vertical.actions.attached > .button {
49324
+ align-items: center;
49325
+ }
49326
+
49327
+ .ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached) {
49328
+ border-top: 0;
49329
+ margin-top: -0.75em;
49330
+ margin-bottom: -0.75em;
49331
+ margin-left: 1em;
49332
+ justify-content: space-around;
49333
+ }
49334
+
49335
+ .ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached):not(.basic) {
49336
+ border-left: 1px solid rgba(0, 0, 0, 0.2);
49337
+ }
49338
+
49339
+ .ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached) > .button:not(:last-child) {
49340
+ margin-bottom: 0.3em;
49341
+ }
49342
+
49343
+ .ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached).top {
49344
+ justify-content: flex-start;
49345
+ }
49346
+
49347
+ .ui.toast-container .toast-box :not(.comment) .vertical.actions:not(.attached).bottom {
49348
+ justify-content: flex-end;
49349
+ }
49350
+
49351
+ .ui.vertical.attached:not(.left).card > .image > img {
49352
+ border-top-right-radius: 0;
49353
+ }
49354
+
49355
+ .ui.vertical.attached:not(.left).card.horizontal > .image:last-child > img {
49356
+ border-top-right-radius: 0;
49357
+ border-bottom-right-radius: 0;
49358
+ }
49359
+
49360
+ .ui.vertical.attached:not(.left).card,
49361
+ .ui.vertical.attached:not(.left).toast {
49362
+ border-top-right-radius: 0;
49363
+ border-bottom-right-radius: 0;
49364
+ }
49365
+
49366
+ .ui.vertical.attached:not(.left).actions {
49367
+ border-top-right-radius: 0;
49368
+ border-bottom-right-radius: 0;
49369
+ }
49370
+
49371
+ .ui.vertical.attached:not(.left).actions .button:first-child,
49372
+ .ui.vertical.attached:not(.left).actions .button:last-child {
49373
+ border-top-left-radius: 0;
49374
+ border-bottom-left-radius: 0;
49375
+ }
49376
+
49377
+ .ui.vertical.attached:not(.left).message {
49378
+ border-top-right-radius: 0;
49379
+ border-bottom-left-radius: 0;
49380
+ }
49381
+
49382
+ .ui.vertical.attached.left.card > .image > img {
49383
+ border-top-left-radius: 0;
49384
+ }
49385
+
49386
+ .ui.vertical.attached.left.card.horizontal > .image > img {
49387
+ border-top-left-radius: 0;
49388
+ border-bottom-left-radius: 0;
49389
+ }
49390
+
49391
+ .ui.vertical.attached.left.card,
49392
+ .ui.vertical.attached.left.toast {
49393
+ border-top-left-radius: 0;
49394
+ border-bottom-left-radius: 0;
49395
+ }
49396
+
49397
+ .ui.vertical.attached.left.actions {
49398
+ border-top-left-radius: 0;
49399
+ border-bottom-left-radius: 0;
49400
+ }
49401
+
49402
+ .ui.vertical.attached.left.actions .button:first-child,
49403
+ .ui.vertical.attached.left.actions .button:last-child {
49404
+ border-top-right-radius: 0;
49405
+ border-bottom-right-radius: 0;
49406
+ }
49407
+
49408
+ .ui.vertical.attached.left.message.message.message {
49409
+ border-top-right-radius: 0;
49410
+ border-bottom-right-radius: 0;
49411
+ }
49412
+
49413
+ .ui.attached:not(.vertical):not(.top).actions {
49414
+ border-bottom-left-radius: 0;
49415
+ border-bottom-right-radius: 0;
49416
+ }
49417
+
49418
+ .ui.attached:not(.vertical):not(.top).actions .button:first-child {
49419
+ border-bottom-left-radius: 0;
49420
+ }
49421
+
49422
+ .ui.attached:not(.vertical):not(.top).actions .button:last-child {
49423
+ border-bottom-right-radius: 0;
49424
+ }
49425
+
49426
+ .ui.attached:not(.vertical).top.actions {
49427
+ border-top-left-radius: 0;
49428
+ border-top-right-radius: 0;
49429
+ }
49430
+
49431
+ .ui.attached:not(.vertical).top.actions .button:first-child {
49432
+ border-top-left-radius: 0;
49433
+ }
49434
+
49435
+ .ui.attached:not(.vertical).top.actions .button:last-child {
49436
+ border-top-right-radius: 0;
49437
+ }
49438
+
49439
+ /*******************************
49440
+ Toast
49441
+ *******************************/
49442
+
49443
+ .ui.toast {
49444
+ display: none;
49445
+ border-radius: 0;
49446
+ padding: 0.78571429em 1em;
49447
+ margin: 0;
49448
+ color: rgba(0, 0, 0, 0.87);
49449
+ background-color: #fff;
49450
+ }
49451
+
49452
+ .ui.toast > .content > .header {
49453
+ font-weight: bold;
49454
+ color: inherit;
49455
+ margin: 0;
49456
+ }
49457
+
49458
+ .ui.toast.info {
49459
+ background-color: #31ccec;
49460
+ color: rgba(255, 255, 255, 0.9);
49461
+ }
49462
+
49463
+ .ui.toast.warning {
49464
+ background-color: #f2c037;
49465
+ color: rgba(255, 255, 255, 0.9);
49466
+ }
49467
+
49468
+ .ui.toast.success {
49469
+ background-color: #81b08c;
49470
+ color: rgba(255, 255, 255, 0.9);
49471
+ }
49472
+
49473
+ .ui.toast.error {
49474
+ background-color: #af4e4a;
49475
+ color: rgba(255, 255, 255, 0.9);
49476
+ }
49477
+
49478
+ .ui.toast.neutral {
49479
+ background-color: #fff;
49480
+ color: rgba(0, 0, 0, 0.87);
49481
+ }
49482
+
49483
+ .ui.toast > i.icon:not(.close) {
49484
+ font-size: 1.5em;
49485
+ }
49486
+
49487
+ .ui.toast:not(.vertical):not(.centered):not(.center) > i.icon:not(.close) {
49488
+ position: absolute;
49489
+ }
49490
+
49491
+ .ui.toast:not(.vertical):not(.centered):not(.center) > .ui.image {
49492
+ position: absolute;
49493
+ }
49494
+
49495
+ .ui.toast:not(.vertical) > i.icon:not(.close) + .content {
49496
+ padding-left: 3em;
49497
+ }
49498
+
49499
+ .ui.toast:not(.vertical) > .close.icon + .content {
49500
+ padding-left: 1.5em;
49501
+ }
49502
+
49503
+ .ui.toast:not(.vertical) > .ui.image.avatar + .content {
49504
+ padding-left: 3em;
49505
+ min-height: 2em;
49506
+ }
49507
+
49508
+ .ui.toast:not(.vertical) > .ui.image.mini + .content {
49509
+ padding-left: 3.4em;
49510
+ min-height: 35px;
49511
+ }
49512
+
49513
+ .ui.toast:not(.vertical) > .ui.image.tiny + .content {
49514
+ padding-left: 7em;
49515
+ min-height: 80px;
49516
+ }
49517
+
49518
+ .ui.toast:not(.vertical) > .ui.image.small + .content {
49519
+ padding-left: 12em;
49520
+ min-height: 150px;
49521
+ }
49522
+
49523
+ .ui.toast:not(.vertical):not(.centered):not(.center) > .centered.image,
49524
+ .ui.toast:not(.vertical):not(.centered):not(.center) > .centered.icon {
49525
+ transform: translateY(-50%);
49526
+ top: 50%;
49527
+ }
49528
+
49529
+ .ui.toast:not(.vertical).actions > .centered.image {
49530
+ top: calc(50% - 2em);
49531
+ }
49532
+
49533
+ .ui.toast:not(.vertical).actions > .centered.icon {
49534
+ top: calc(50% - 1.2em);
49535
+ }
49536
+
49537
+ .ui.toast.vertical > .content {
49538
+ flex-grow: 1;
49539
+ }
49540
+
49541
+ .ui.toast.vertical.attached {
49542
+ flex-grow: 1;
49543
+ }
49544
+
49545
+ .ui.toast.vertical > .close.icon + .content {
49546
+ padding-left: 1em;
49547
+ }
49548
+
49549
+ .ui.toast.vertical > .ui.image + .content,
49550
+ .ui.toast.vertical > i.icon:not(.close) + .content {
49551
+ padding-left: 1em;
49552
+ }
49553
+
49554
+ .ui.toast.vertical > .ui.image {
49555
+ align-self: flex-start;
49556
+ flex-shrink: 0;
49557
+ /* IE11 fix */
49558
+ }
49559
+
49560
+ .ui.toast.vertical > .centered.image,
49561
+ .ui.toast.vertical > .centered.icon {
49562
+ align-self: center;
49563
+ }
49564
+
49565
+ .ui.toast.attached.bottom {
49566
+ border-top-left-radius: 0;
49567
+ border-top-right-radius: 0;
49568
+ }
49569
+
49570
+ .ui.toast.attached.top {
49571
+ border-bottom-left-radius: 0;
49572
+ border-bottom-right-radius: 0;
49573
+ }
49574
+
49575
+ .ui.toast.ui.ui.ui.image {
49576
+ padding: 0;
49577
+ }
49578
+
49579
+ .ui.toast.ui.ui.ui.image > .content {
49580
+ padding-top: 0.78571429em;
49581
+ padding-bottom: 0.78571429em;
49582
+ padding-right: 1em;
49583
+ }
49584
+
49585
+ .ui.toast.ui.ui.ui.image > .actions {
49586
+ margin: 0;
49587
+ }
49588
+
49589
+ .ui.toast.ui.ui.ui.image > .ui.image {
49590
+ border-top-left-radius: 0;
49591
+ border-bottom-left-radius: 0;
49592
+ }
49593
+
49594
+ .ui.toast.ui.ui.ui.image > .ui.image.mini {
49595
+ min-width: calc(0.7857142857142857em + 35px);
49596
+ }
49597
+
49598
+ .ui.toast.ui.ui.ui.image > .ui.image.mini + .content {
49599
+ min-height: calc(0.7857142857142857em + 35px);
49600
+ padding-left: 4.4em;
49601
+ }
49602
+
49603
+ .ui.hoverfloating.message:hover {
49604
+ box-shadow: 0 0 0 1px inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
49605
+ }
49606
+
49607
+ .ui.center.toast-container .toast-box,
49608
+ .ui.right.toast-container .toast-box {
49609
+ margin-left: auto;
49610
+ }
49611
+
49612
+ .ui.center.toast-container .toast-box {
49613
+ margin-right: auto;
49614
+ }
49615
+
49616
+ .ui.ui.toast-container .toast-box .centered.toast,
49617
+ .ui.ui.toast-container .toast-box .center.aligned.toast {
49618
+ text-align: center;
49619
+ display: flex;
49620
+ justify-content: center;
49621
+ }
49622
+
49623
+ .ui.ui.toast-container .toast-box .centered.toast > .content,
49624
+ .ui.ui.toast-container .toast-box .center.aligned.toast > .content,
49625
+ .ui.ui.toast-container .toast-box .centered.toast > .ui.image,
49626
+ .ui.ui.toast-container .toast-box .center.aligned.toast > .ui.image,
49627
+ .ui.ui.toast-container .toast-box .centered.toast > i.icon:not(.close),
49628
+ .ui.ui.toast-container .toast-box .center.aligned.toast > i.icon:not(.close) {
49629
+ align-self: center;
49630
+ }
49631
+
49632
+ .ui.toast-container .toast-box .toast .centered.content,
49633
+ .ui.toast-container .toast-box .toast .center.aligned.content {
49634
+ text-align: center;
49635
+ }
49636
+
49637
+ .ui.toast-container .toast-box .centered.actions,
49638
+ .ui.toast-container .toast-box .center.aligned.actions {
49639
+ text-align: center;
49640
+ }
49641
+
49642
+ .ui.toast-container .toast-box .centered.actions:not(.attached) > .button:not(.fluid),
49643
+ .ui.toast-container .toast-box .center.aligned.actions:not(.attached) > .button:not(.fluid) {
49644
+ margin-left: 0.25em;
49645
+ margin-right: 0.25em;
49646
+ }
49647
+
49648
+ /* --------------
49649
+ Colors
49650
+ -------------- */
49651
+
49652
+ .ui.primary.toast {
49653
+ background-color: #007388;
49654
+ color: rgba(255, 255, 255, 0.9);
49655
+ }
49656
+
49657
+ .ui.inverted.primary.toast,
49658
+ .ui.toast-container .toast-box > .inverted.primary.attached.progress .bar {
49659
+ background-color: #54c8ff;
49660
+ color: rgba(0, 0, 0, 0.87);
49661
+ }
49662
+
49663
+ .ui.secondary.toast {
49664
+ background-color: #294755;
49665
+ color: rgba(255, 255, 255, 0.9);
49666
+ }
49667
+
49668
+ .ui.inverted.secondary.toast,
49669
+ .ui.toast-container .toast-box > .inverted.secondary.attached.progress .bar {
49670
+ background-color: #545454;
49671
+ color: rgba(0, 0, 0, 0.87);
49672
+ }
49673
+
49674
+ .ui.red.toast {
49675
+ background-color: #af4e4a;
49676
+ color: rgba(255, 255, 255, 0.9);
49677
+ }
49678
+
49679
+ .ui.inverted.red.toast,
49680
+ .ui.toast-container .toast-box > .inverted.red.attached.progress .bar {
49681
+ background-color: #ff695e;
49682
+ color: rgba(0, 0, 0, 0.87);
49683
+ }
49684
+
49685
+ .ui.orange.toast {
49686
+ background-color: #af6a66;
49687
+ color: rgba(255, 255, 255, 0.9);
49688
+ }
49689
+
49690
+ .ui.inverted.orange.toast,
49691
+ .ui.toast-container .toast-box > .inverted.orange.attached.progress .bar {
49692
+ background-color: #ff851b;
49693
+ color: rgba(0, 0, 0, 0.87);
49694
+ }
49695
+
49696
+ .ui.yellow.toast {
49697
+ background-color: #fbbd08;
49698
+ color: rgba(255, 255, 255, 0.9);
49699
+ }
49700
+
49701
+ .ui.inverted.yellow.toast,
49702
+ .ui.toast-container .toast-box > .inverted.yellow.attached.progress .bar {
49703
+ background-color: #ffe21f;
49704
+ color: rgba(0, 0, 0, 0.87);
49705
+ }
49706
+
49707
+ .ui.olive.toast {
49708
+ background-color: #a0b06c;
49709
+ color: rgba(255, 255, 255, 0.9);
49710
+ }
49711
+
49712
+ .ui.inverted.olive.toast,
49713
+ .ui.toast-container .toast-box > .inverted.olive.attached.progress .bar {
49714
+ background-color: #d9e778;
49715
+ color: rgba(0, 0, 0, 0.87);
49716
+ }
49717
+
49718
+ .ui.green.toast {
49719
+ background-color: #81b08c;
49720
+ color: rgba(255, 255, 255, 0.9);
49721
+ }
49722
+
49723
+ .ui.inverted.green.toast,
49724
+ .ui.toast-container .toast-box > .inverted.green.attached.progress .bar {
49725
+ background-color: #2ecc40;
49726
+ color: rgba(0, 0, 0, 0.87);
49727
+ }
49728
+
49729
+ .ui.teal.toast {
49730
+ background-color: #7fb5c2;
49731
+ color: rgba(255, 255, 255, 0.9);
49732
+ }
49733
+
49734
+ .ui.inverted.teal.toast,
49735
+ .ui.toast-container .toast-box > .inverted.teal.attached.progress .bar {
49736
+ background-color: #6dffff;
49737
+ color: rgba(0, 0, 0, 0.87);
49738
+ }
49739
+
49740
+ .ui.blue.toast {
49741
+ background-color: #007388;
49742
+ color: rgba(255, 255, 255, 0.9);
49743
+ }
49744
+
49745
+ .ui.inverted.blue.toast,
49746
+ .ui.toast-container .toast-box > .inverted.blue.attached.progress .bar {
49747
+ background-color: #54c8ff;
49748
+ color: rgba(0, 0, 0, 0.87);
49749
+ }
49750
+
49751
+ .ui.violet.toast {
49752
+ background-color: #9461ac;
49753
+ color: rgba(255, 255, 255, 0.9);
49754
+ }
49755
+
49756
+ .ui.inverted.violet.toast,
49757
+ .ui.toast-container .toast-box > .inverted.violet.attached.progress .bar {
49758
+ background-color: #a291fb;
49759
+ color: rgba(0, 0, 0, 0.87);
49760
+ }
49761
+
49762
+ .ui.purple.toast {
49763
+ background-color: #6667af;
49764
+ color: rgba(255, 255, 255, 0.9);
49765
+ }
49766
+
49767
+ .ui.inverted.purple.toast,
49768
+ .ui.toast-container .toast-box > .inverted.purple.attached.progress .bar {
49769
+ background-color: #dc73ff;
49770
+ color: rgba(0, 0, 0, 0.87);
49771
+ }
49772
+
49773
+ .ui.pink.toast {
49774
+ background-color: #af6687;
49775
+ color: rgba(255, 255, 255, 0.9);
49776
+ }
49777
+
49778
+ .ui.inverted.pink.toast,
49779
+ .ui.toast-container .toast-box > .inverted.pink.attached.progress .bar {
49780
+ background-color: #ff8edf;
49781
+ color: rgba(0, 0, 0, 0.87);
49782
+ }
49783
+
49784
+ .ui.brown.toast {
49785
+ background-color: #af9066;
49786
+ color: rgba(255, 255, 255, 0.9);
49787
+ }
49788
+
49789
+ .ui.inverted.brown.toast,
49790
+ .ui.toast-container .toast-box > .inverted.brown.attached.progress .bar {
49791
+ background-color: #d67c1c;
49792
+ color: rgba(0, 0, 0, 0.87);
49793
+ }
49794
+
49795
+ .ui.grey.toast {
49796
+ background-color: #a3b3c0;
49797
+ color: rgba(255, 255, 255, 0.9);
49798
+ }
49799
+
49800
+ .ui.inverted.grey.toast,
49801
+ .ui.toast-container .toast-box > .inverted.grey.attached.progress .bar {
49802
+ background-color: #dcddde;
49803
+ color: rgba(0, 0, 0, 0.87);
49804
+ }
49805
+
49806
+ .ui.black.toast {
49807
+ background-color: #1b1c1d;
49808
+ color: rgba(255, 255, 255, 0.9);
49809
+ }
49810
+
49811
+ .ui.inverted.black.toast,
49812
+ .ui.toast-container .toast-box > .inverted.black.attached.progress .bar {
49813
+ background-color: #545454;
49814
+ color: rgba(0, 0, 0, 0.87);
49815
+ }
49816
+
49817
+ .ui.inverted.toast {
49818
+ color: rgba(255, 255, 255, 0.9);
49819
+ background-color: #1b1c1d;
49820
+ }
49821
+
49822
+ @media only screen and (max-width: 420px) {
49823
+ .ui.toast-container .toast-box.toast-box,
49824
+ .ui.toast-container .toast-box > .compact,
49825
+ .ui.toast-container .toast-box > .vertical > *,
49826
+ .ui.toast-container .toast-box > * {
49827
+ width: auto;
49828
+ max-width: 100%;
49829
+ }
49830
+
49831
+ .ui.toast-container .toast-box > *:not(.vertical) {
49832
+ min-width: 280px;
49833
+ }
49834
+
49835
+ .ui.toast-container .toast-box > .ui.card.horizontal,
49836
+ .ui.toast-container .toast-box > .vertical > .ui.horizontal.card {
49837
+ min-width: initial;
49838
+ }
49839
+ }
49840
+
49841
+ /* ---------------
49842
+ Progress Bar
49843
+ ---------------- */
49844
+
49845
+ @keyframes progressDown {
49846
+ 0% {
49847
+ width: 100%;
49848
+ }
49849
+
49850
+ 100% {
49851
+ width: 0;
49852
+ }
49853
+ }
49854
+
49855
+ @keyframes progressUp {
49856
+ 0% {
49857
+ width: 0;
49858
+ }
49859
+
49860
+ 100% {
49861
+ width: 100%;
49862
+ }
49863
+ }
49864
+
49865
+ @keyframes progressWait {
49866
+ 0% {
49867
+ opacity: 1;
49868
+ }
49869
+
49870
+ 100% {
49871
+ opacity: 0;
49872
+ }
49873
+ }
49874
+
49875
+ /*******************************
49876
+ Theme Overrides
49877
+ *******************************/
49878
+
49879
+ /*******************************
49880
+ User Overrides
49881
+ *******************************/
49882
+
49883
+ .ui.toast-container .toast-box > .ui.message > .close.icon,
49884
+ .ui.toast-container .toast-box > .ui.toast > .close.icon {
49885
+ color: rgba(0, 0, 0, 0.87);
49886
+ font-size: 1.075em;
49887
+ }
49888
+
49889
+ .ui.toast-container .toast-box > .ui.message {
49890
+ padding: 0.85714286rem 3.42857143rem 0.85714286rem 1rem;
49891
+ }
49892
+
49893
+ .ui.toast-container .toast-box > .ui.message .header {
49894
+ font-size: 1.14285714rem;
49895
+ font-weight: 500;
49896
+ }
49897
+
49898
+ .ui.toast-container .toast-box > .ui.message .header + .message {
49899
+ margin-top: 0.28571429em;
49900
+ }
49901
+
49902
+ .ui.toast-container .toast-box > .ui.icon.message > i.icon:not(.close) {
49903
+ width: auto;
49904
+ top: 1rem;
49905
+ transform: none;
49906
+ font-size: 1.075em;
49907
+ }
49908
+
49909
+ .ui.toast-container .toast-box > .ui.icon.message > .content {
49910
+ padding-left: 1.57142857em;
49911
+ }
48923
49912
  /*!
48924
49913
  * # Fomantic-UI 2.9.4 - Transition
48925
49914
  * https://github.com/fomantic/Fomantic-UI/