@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
  /* --------------
@@ -805,6 +805,14 @@ input::selection {
805
805
  box-shadow: none;
806
806
  }
807
807
 
808
+ .ui.basic.loading.button::before {
809
+ border-color: rgba(0, 0, 0, 0.1);
810
+ }
811
+
812
+ .ui.basic.loading.button::after {
813
+ border-color: #a3b3c0;
814
+ }
815
+
808
816
  /* -------------------
809
817
  Disabled
810
818
  -------------------- */
@@ -820,6 +828,8 @@ input::selection {
820
828
  pointer-events: none !important;
821
829
  }
822
830
 
831
+ /* Basic Group With Disabled */
832
+
823
833
  /*******************************
824
834
  Types
825
835
  *******************************/
@@ -887,7 +897,7 @@ input::selection {
887
897
 
888
898
  .ui.button > .icon:not(.button) {
889
899
  height: auto;
890
- opacity: 0.8;
900
+ opacity: 1;
891
901
  transition: opacity 0.1s ease;
892
902
  color: "";
893
903
  }
@@ -996,11 +1006,55 @@ input::selection {
996
1006
 
997
1007
  .ui.animated.icon.button > .content > .icon,
998
1008
  .ui.icon.button > .icon {
999
- opacity: 0.9;
1009
+ opacity: 1;
1000
1010
  margin: 0 !important;
1001
1011
  vertical-align: top;
1002
1012
  }
1003
1013
 
1014
+ /* -------------------
1015
+ Basic
1016
+ -------------------- */
1017
+
1018
+ .ui.basic.button {
1019
+ background: #fff none;
1020
+ color: rgba(0, 0, 0, 0.6);
1021
+ font-weight: normal;
1022
+ border-radius: 0;
1023
+ text-transform: none;
1024
+ text-shadow: none !important;
1025
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
1026
+ }
1027
+
1028
+ .ui.basic.button:hover {
1029
+ background: #f9fafb;
1030
+ color: rgba(0, 0, 0, 0.8);
1031
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
1032
+ }
1033
+
1034
+ .ui.basic.button:focus {
1035
+ background: #f9fafb;
1036
+ color: rgba(0, 0, 0, 0.8);
1037
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.35) inset, 0 0 0 0 rgba(34, 36, 38, 0.15) inset;
1038
+ }
1039
+
1040
+ .ui.basic.button:active {
1041
+ background: #f8f8f8;
1042
+ color: rgba(0, 0, 0, 0.9);
1043
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 4px 0 rgba(34, 36, 38, 0.15) inset;
1044
+ }
1045
+
1046
+ .ui.basic.active.button {
1047
+ background: rgba(0, 0, 0, 0.05);
1048
+ box-shadow: "";
1049
+ color: rgba(0, 0, 0, 0.95);
1050
+ }
1051
+
1052
+ .ui.basic.active.button:hover {
1053
+ background-color: rgba(0, 0, 0, 0.05);
1054
+ }
1055
+
1056
+ /* Basic Group */
1057
+
1004
1058
  /* --------------
1005
1059
  Labeled Icon
1006
1060
  --------------- */
@@ -1117,6 +1171,37 @@ input::selection {
1117
1171
  text-shadow: none;
1118
1172
  }
1119
1173
 
1174
+ /* Basic */
1175
+
1176
+ .ui.basic.primary.button {
1177
+ background: transparent;
1178
+ box-shadow: 0 0 0 1px #007388 inset;
1179
+ color: #007388;
1180
+ }
1181
+
1182
+ .ui.basic.primary.button:hover {
1183
+ background: transparent;
1184
+ box-shadow: 0 0 0 1px #005d6f inset;
1185
+ color: #005d6f;
1186
+ }
1187
+
1188
+ .ui.basic.primary.button:focus {
1189
+ background: transparent;
1190
+ box-shadow: 0 0 0 1px #00505f inset;
1191
+ color: #005d6f;
1192
+ }
1193
+
1194
+ .ui.basic.primary.active.button {
1195
+ background: transparent;
1196
+ box-shadow: 0 0 0 1px #005d6f inset;
1197
+ color: #004855;
1198
+ }
1199
+
1200
+ .ui.basic.primary.button:active {
1201
+ box-shadow: 0 0 0 1px #004855 inset;
1202
+ color: #004855;
1203
+ }
1204
+
1120
1205
  .ui.secondary.button {
1121
1206
  background-color: #294755;
1122
1207
  color: #fff;
@@ -1153,6 +1238,37 @@ input::selection {
1153
1238
  text-shadow: none;
1154
1239
  }
1155
1240
 
1241
+ /* Basic */
1242
+
1243
+ .ui.basic.secondary.button {
1244
+ background: transparent;
1245
+ box-shadow: 0 0 0 1px #294755 inset;
1246
+ color: #294755;
1247
+ }
1248
+
1249
+ .ui.basic.secondary.button:hover {
1250
+ background: transparent;
1251
+ box-shadow: 0 0 0 1px #2f5669 inset;
1252
+ color: #2f5669;
1253
+ }
1254
+
1255
+ .ui.basic.secondary.button:focus {
1256
+ background: transparent;
1257
+ box-shadow: 0 0 0 1px #306076 inset;
1258
+ color: #2f5669;
1259
+ }
1260
+
1261
+ .ui.basic.secondary.active.button {
1262
+ background: transparent;
1263
+ box-shadow: 0 0 0 1px #2d576a inset;
1264
+ color: #3a6477;
1265
+ }
1266
+
1267
+ .ui.basic.secondary.button:active {
1268
+ box-shadow: 0 0 0 1px #3a6477 inset;
1269
+ color: #3a6477;
1270
+ }
1271
+
1156
1272
  .ui.green.button {
1157
1273
  background-color: #81b08c;
1158
1274
  color: #fff;
@@ -1189,6 +1305,37 @@ input::selection {
1189
1305
  text-shadow: none;
1190
1306
  }
1191
1307
 
1308
+ /* Basic */
1309
+
1310
+ .ui.basic.green.button {
1311
+ background: transparent;
1312
+ box-shadow: 0 0 0 1px #81b08c inset;
1313
+ color: #81b08c;
1314
+ }
1315
+
1316
+ .ui.basic.green.button:hover {
1317
+ background: transparent;
1318
+ box-shadow: 0 0 0 1px #6fa97c inset;
1319
+ color: #6fa97c;
1320
+ }
1321
+
1322
+ .ui.basic.green.button:focus {
1323
+ background: transparent;
1324
+ box-shadow: 0 0 0 1px #62a672 inset;
1325
+ color: #6fa97c;
1326
+ }
1327
+
1328
+ .ui.basic.green.active.button {
1329
+ background: transparent;
1330
+ box-shadow: 0 0 0 1px #6daa7c inset;
1331
+ color: #629c70;
1332
+ }
1333
+
1334
+ .ui.basic.green.button:active {
1335
+ box-shadow: 0 0 0 1px #629c70 inset;
1336
+ color: #629c70;
1337
+ }
1338
+
1192
1339
  .ui.red.button {
1193
1340
  background-color: #af4e4a;
1194
1341
  color: #fff;
@@ -1225,6 +1372,37 @@ input::selection {
1225
1372
  text-shadow: none;
1226
1373
  }
1227
1374
 
1375
+ /* Basic */
1376
+
1377
+ .ui.basic.red.button {
1378
+ background: transparent;
1379
+ box-shadow: 0 0 0 1px #af4e4a inset;
1380
+ color: #af4e4a;
1381
+ }
1382
+
1383
+ .ui.basic.red.button:hover {
1384
+ background: transparent;
1385
+ box-shadow: 0 0 0 1px #a2423e inset;
1386
+ color: #a2423e;
1387
+ }
1388
+
1389
+ .ui.basic.red.button:focus {
1390
+ background: transparent;
1391
+ box-shadow: 0 0 0 1px #9b3935 inset;
1392
+ color: #a2423e;
1393
+ }
1394
+
1395
+ .ui.basic.red.active.button {
1396
+ background: transparent;
1397
+ box-shadow: 0 0 0 1px #a4403c inset;
1398
+ color: #8b3e3b;
1399
+ }
1400
+
1401
+ .ui.basic.red.button:active {
1402
+ box-shadow: 0 0 0 1px #8b3e3b inset;
1403
+ color: #8b3e3b;
1404
+ }
1405
+
1228
1406
  /* Standard */
1229
1407
 
1230
1408
  .ui.positive.button {
@@ -1263,6 +1441,37 @@ input::selection {
1263
1441
  text-shadow: none;
1264
1442
  }
1265
1443
 
1444
+ /* Basic */
1445
+
1446
+ .ui.basic.positive.button {
1447
+ background: transparent;
1448
+ box-shadow: 0 0 0 1px #81b08c inset;
1449
+ color: #81b08c;
1450
+ }
1451
+
1452
+ .ui.basic.positive.button:hover {
1453
+ background: transparent;
1454
+ box-shadow: 0 0 0 1px #6fa97c inset;
1455
+ color: #6fa97c;
1456
+ }
1457
+
1458
+ .ui.basic.positive.button:focus {
1459
+ background: transparent;
1460
+ box-shadow: 0 0 0 1px #62a672 inset;
1461
+ color: #6fa97c;
1462
+ }
1463
+
1464
+ .ui.basic.positive.active.button {
1465
+ background: transparent;
1466
+ box-shadow: 0 0 0 1px #6daa7c inset;
1467
+ color: #629c70;
1468
+ }
1469
+
1470
+ .ui.basic.positive.button:active {
1471
+ box-shadow: 0 0 0 1px #629c70 inset;
1472
+ color: #629c70;
1473
+ }
1474
+
1266
1475
  /* Standard */
1267
1476
 
1268
1477
  .ui.negative.button {
@@ -1301,6 +1510,37 @@ input::selection {
1301
1510
  text-shadow: none;
1302
1511
  }
1303
1512
 
1513
+ /* Basic */
1514
+
1515
+ .ui.basic.negative.button {
1516
+ background: transparent;
1517
+ box-shadow: 0 0 0 1px #af4e4a inset;
1518
+ color: #af4e4a;
1519
+ }
1520
+
1521
+ .ui.basic.negative.button:hover {
1522
+ background: transparent;
1523
+ box-shadow: 0 0 0 1px #a2423e inset;
1524
+ color: #a2423e;
1525
+ }
1526
+
1527
+ .ui.basic.negative.button:focus {
1528
+ background: transparent;
1529
+ box-shadow: 0 0 0 1px #9b3935 inset;
1530
+ color: #a2423e;
1531
+ }
1532
+
1533
+ .ui.basic.negative.active.button {
1534
+ background: transparent;
1535
+ box-shadow: 0 0 0 1px #a4403c inset;
1536
+ color: #8b3e3b;
1537
+ }
1538
+
1539
+ .ui.basic.negative.button:active {
1540
+ box-shadow: 0 0 0 1px #8b3e3b inset;
1541
+ color: #8b3e3b;
1542
+ }
1543
+
1304
1544
  /*******************************
1305
1545
  Groups
1306
1546
  *******************************/
@@ -2044,7 +2284,7 @@ i.flag.us::before {
2044
2284
  opacity: 1;
2045
2285
  font-size: 1.5em;
2046
2286
  padding-top: 0.14285714em;
2047
- vertical-align: middle;
2287
+ vertical-align: baseline;
2048
2288
  }
2049
2289
 
2050
2290
  /* With Text Node */
@@ -2798,6 +3038,15 @@ i.emphasized.icon {
2798
3038
  Variations
2799
3039
  *******************************/
2800
3040
 
3041
+ /* -------------------
3042
+ Fitted
3043
+ -------------------- */
3044
+
3045
+ i.fitted.icon {
3046
+ width: auto;
3047
+ margin: 0 !important;
3048
+ }
3049
+
2801
3050
  /* -------------------
2802
3051
  Link
2803
3052
  -------------------- */
@@ -3145,6 +3394,22 @@ i.icon.american.sign.language.interpreting::before {
3145
3394
  content: "\f2a3";
3146
3395
  }
3147
3396
 
3397
+ i.icon.arrow.down::before {
3398
+ content: "\f063";
3399
+ }
3400
+
3401
+ i.icon.arrow.left::before {
3402
+ content: "\f060";
3403
+ }
3404
+
3405
+ i.icon.arrow.right::before {
3406
+ content: "\f061";
3407
+ }
3408
+
3409
+ i.icon.arrow.up::before {
3410
+ content: "\f062";
3411
+ }
3412
+
3148
3413
  i.icon.assistive.listening.systems::before {
3149
3414
  content: "\f2a2";
3150
3415
  }
@@ -3793,6 +4058,10 @@ i.icon.project.diagram::before {
3793
4058
  content: "\f542";
3794
4059
  }
3795
4060
 
4061
+ i.icon.rocket::before {
4062
+ content: "\f135";
4063
+ }
4064
+
3796
4065
  i.icon.ruble.sign::before {
3797
4066
  content: "\f158";
3798
4067
  }
@@ -4618,6 +4887,11 @@ i.icon.researchgate::before {
4618
4887
  font-family: "brand-icons";
4619
4888
  }
4620
4889
 
4890
+ i.icon.rocketchat::before {
4891
+ content: "\f3e8";
4892
+ font-family: "brand-icons";
4893
+ }
4894
+
4621
4895
  i.icon.searchengin::before {
4622
4896
  content: "\f3eb";
4623
4897
  font-family: "brand-icons";
@@ -5784,39 +6058,39 @@ input[type="file"].ui.invisible.file.input,
5784
6058
  position: absolute;
5785
6059
  }
5786
6060
 
5787
- input[type="file"].ui.file.input:focus + label.ui.button,
5788
- .ui.file.input input[type="file"]:focus + label.ui.button {
6061
+ input[type="file"].ui.file.input:focus + label.ui.button:not(.basic),
6062
+ .ui.file.input input[type="file"]:focus + label.ui.button:not(.basic) {
5789
6063
  background: #cacbcd;
5790
6064
  color: rgba(0, 0, 0, 0.8);
5791
6065
  }
5792
6066
 
5793
- input[type="file"].ui.file.input:focus + label.ui.button.inverted,
5794
- .ui.file.input input[type="file"]:focus + label.ui.button.inverted {
6067
+ input[type="file"].ui.file.input:focus + label.ui.button:not(.basic).inverted,
6068
+ .ui.file.input input[type="file"]:focus + label.ui.button:not(.basic).inverted {
5795
6069
  background: #fff;
5796
6070
  }
5797
6071
 
5798
6072
  /* this is related to existing buttons, so the button color variable is used here! */
5799
6073
 
5800
- input[type="file"].ui.file.input:focus + label.ui.primary.button,
5801
- .ui.file.input input[type="file"]:focus + label.ui.primary.button {
6074
+ input[type="file"].ui.file.input:focus + label.ui.primary.button:not(.basic),
6075
+ .ui.file.input input[type="file"]:focus + label.ui.primary.button:not(.basic) {
5802
6076
  background-color: #005d6f;
5803
6077
  color: #fff;
5804
6078
  }
5805
6079
 
5806
- input[type="file"].ui.file.input:focus + label.ui.secondary.button,
5807
- .ui.file.input input[type="file"]:focus + label.ui.secondary.button {
6080
+ input[type="file"].ui.file.input:focus + label.ui.secondary.button:not(.basic),
6081
+ .ui.file.input input[type="file"]:focus + label.ui.secondary.button:not(.basic) {
5808
6082
  background-color: #2f5669;
5809
6083
  color: #fff;
5810
6084
  }
5811
6085
 
5812
- input[type="file"].ui.file.input:focus + label.ui.green.button,
5813
- .ui.file.input input[type="file"]:focus + label.ui.green.button {
6086
+ input[type="file"].ui.file.input:focus + label.ui.green.button:not(.basic),
6087
+ .ui.file.input input[type="file"]:focus + label.ui.green.button:not(.basic) {
5814
6088
  background-color: #6fa97c;
5815
6089
  color: #fff;
5816
6090
  }
5817
6091
 
5818
- input[type="file"].ui.file.input:focus + label.ui.red.button,
5819
- .ui.file.input input[type="file"]:focus + label.ui.red.button {
6092
+ input[type="file"].ui.file.input:focus + label.ui.red.button:not(.basic),
6093
+ .ui.file.input input[type="file"]:focus + label.ui.red.button:not(.basic) {
5820
6094
  background-color: #a2423e;
5821
6095
  color: #fff;
5822
6096
  }
@@ -7469,7 +7743,7 @@ ul.ui.list,
7469
7743
  ol.ui.list,
7470
7744
  .ui.list {
7471
7745
  list-style-type: none;
7472
- margin: 1em 0;
7746
+ margin: 1.14285714rem 0;
7473
7747
  padding: 0 0;
7474
7748
  }
7475
7749
 
@@ -7501,7 +7775,7 @@ ol.ui.list li,
7501
7775
  table-layout: fixed;
7502
7776
  list-style-type: none;
7503
7777
  list-style-position: outside;
7504
- padding: 0.21428571em 0;
7778
+ padding: 0 0;
7505
7779
  line-height: 1.14285714em;
7506
7780
  }
7507
7781
 
@@ -7637,8 +7911,8 @@ ol.ui.list ol li,
7637
7911
  .ui.list > .item .header {
7638
7912
  display: block;
7639
7913
  margin: 0;
7640
- font-family: "Josefin Sans", serif;
7641
- font-weight: bold;
7914
+ font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
7915
+ font-weight: 500;
7642
7916
  color: rgba(0, 0, 0, 0.87);
7643
7917
  }
7644
7918
 
@@ -7723,7 +7997,7 @@ ol.ui.list ol li,
7723
7997
  background-color: transparent;
7724
7998
  list-style-type: none;
7725
7999
  list-style-position: outside;
7726
- padding: 0.21428571em 0;
8000
+ padding: 0 0;
7727
8001
  line-height: 1.14285714em;
7728
8002
  }
7729
8003
 
@@ -7785,8 +8059,8 @@ ol.ui.list ol li,
7785
8059
 
7786
8060
  .ui.horizontal.list > .item:first-child,
7787
8061
  .ui.horizontal.list > .item:last-child {
7788
- padding-top: 0.21428571em;
7789
- padding-bottom: 0.21428571em;
8062
+ padding-top: 0;
8063
+ padding-bottom: 0;
7790
8064
  }
7791
8065
 
7792
8066
  /* Horizontal List */
@@ -8156,7 +8430,7 @@ ol.ui.suffixed.list li::before,
8156
8430
  .ui.divided.ordered.list .item .list:not(.icon) {
8157
8431
  margin-left: 0;
8158
8432
  margin-right: 0;
8159
- padding-bottom: 0.21428571em;
8433
+ padding-bottom: 0;
8160
8434
  }
8161
8435
 
8162
8436
  .ui.divided.ordered.list .item .list > .item {
@@ -8215,8 +8489,8 @@ ol.ui.suffixed.list li::before,
8215
8489
 
8216
8490
  .ui.celled.list > .item:first-child,
8217
8491
  .ui.celled.list > .item:last-child {
8218
- padding-top: 0.21428571em;
8219
- padding-bottom: 0.21428571em;
8492
+ padding-top: 0;
8493
+ padding-bottom: 0;
8220
8494
  }
8221
8495
 
8222
8496
  /* Sub Menu */
@@ -8243,7 +8517,7 @@ ol.ui.suffixed.list li::before,
8243
8517
  .ui.celled.bulleted.list .item .list:not(.icon) {
8244
8518
  margin-left: -1.25rem;
8245
8519
  margin-right: -1.25rem;
8246
- padding-bottom: 0.21428571em;
8520
+ padding-bottom: 0;
8247
8521
  }
8248
8522
 
8249
8523
  /* Celled Ordered */
@@ -8260,7 +8534,7 @@ ol.ui.suffixed.list li::before,
8260
8534
  .ui.celled.ordered.list .item .list:not(.icon) {
8261
8535
  margin-left: 0;
8262
8536
  margin-right: 0;
8263
- padding-bottom: 0.21428571em;
8537
+ padding-bottom: 0;
8264
8538
  }
8265
8539
 
8266
8540
  .ui.celled.ordered.list .list > .item {
@@ -8389,6 +8663,12 @@ ol.ui.suffixed.list li::before,
8389
8663
  /*******************************
8390
8664
  Site Overrides
8391
8665
  *******************************/
8666
+
8667
+ .ui.list .list > .item .sub.header,
8668
+ .ui.list > .item .sub.header {
8669
+ font-weight: 300;
8670
+ margin-top: 0.28571429em;
8671
+ }
8392
8672
  /*!
8393
8673
  * # Fomantic-UI 2.9.4 - Loader
8394
8674
  * https://github.com/fomantic/Fomantic-UI/
@@ -14176,9 +14456,9 @@ Floated Menu / Item
14176
14456
  .ui.message {
14177
14457
  position: relative;
14178
14458
  min-height: 1em;
14179
- margin: 1em 0;
14459
+ margin: 1.14285714rem 0;
14180
14460
  background: #f8f8f9;
14181
- padding: 1em 1.5em;
14461
+ padding: 1.14285714em;
14182
14462
  line-height: 1.4285em;
14183
14463
  color: rgba(0, 0, 0, 0.87);
14184
14464
  transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
@@ -14202,9 +14482,9 @@ Floated Menu / Item
14202
14482
 
14203
14483
  .ui.message .header {
14204
14484
  display: block;
14205
- font-family: "Josefin Sans", serif;
14206
- font-weight: bold;
14207
- margin: -0.14285714em 0 0 0;
14485
+ font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
14486
+ font-weight: 300;
14487
+ margin: 0 0 0 0;
14208
14488
  }
14209
14489
 
14210
14490
  /* Default font size */
@@ -14229,7 +14509,7 @@ Floated Menu / Item
14229
14509
  }
14230
14510
 
14231
14511
  .ui.message .header + p {
14232
- margin-top: 0.25em;
14512
+ margin-top: 0.28571429em;
14233
14513
  }
14234
14514
 
14235
14515
  /* List */
@@ -14392,7 +14672,7 @@ Floated Menu / Item
14392
14672
  }
14393
14673
 
14394
14674
  .ui.bottom.attached.message:not(:last-child) {
14395
- margin-bottom: 1em;
14675
+ margin-bottom: 1.14285714rem;
14396
14676
  }
14397
14677
 
14398
14678
  .ui.attached.icon.message {
@@ -14604,6 +14884,42 @@ Floated Menu / Item
14604
14884
  color: rgba(255, 255, 255, 0.9);
14605
14885
  }
14606
14886
 
14887
+ .ui.violet.message {
14888
+ background-color: #eae7ff;
14889
+ color: #9461ac;
14890
+ }
14891
+
14892
+ .ui.violet.message,
14893
+ .ui.attached.violet.message {
14894
+ box-shadow: 0 0 0 1px #9461ac inset, 0 0 0 0 rgba(0, 0, 0, 0);
14895
+ }
14896
+
14897
+ .ui.floating.violet.message {
14898
+ box-shadow: 0 0 0 1px #9461ac inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
14899
+ }
14900
+
14901
+ .ui.violet.message .header {
14902
+ color: #8754a0;
14903
+ }
14904
+
14905
+ .ui.purple.message {
14906
+ background-color: #f6e7ff;
14907
+ color: #6667af;
14908
+ }
14909
+
14910
+ .ui.purple.message,
14911
+ .ui.attached.purple.message {
14912
+ box-shadow: 0 0 0 1px #6667af inset, 0 0 0 0 rgba(0, 0, 0, 0);
14913
+ }
14914
+
14915
+ .ui.floating.purple.message {
14916
+ box-shadow: 0 0 0 1px #6667af inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
14917
+ }
14918
+
14919
+ .ui.purple.message .header {
14920
+ color: #5657a5;
14921
+ }
14922
+
14607
14923
  /* --------------
14608
14924
  Sizes
14609
14925
  --------------- */
@@ -14647,6 +14963,22 @@ Floated Menu / Item
14647
14963
  /*******************************
14648
14964
  Site Overrides
14649
14965
  *******************************/
14966
+
14967
+ .ui.icon.message {
14968
+ align-items: flex-start;
14969
+ }
14970
+
14971
+ .ui.icon.message > .content.details {
14972
+ flex: 0 0 auto;
14973
+ align-self: center;
14974
+ margin-left: 0.57142857em;
14975
+ }
14976
+
14977
+ @media only screen and (max-width: 767.98px) {
14978
+ .ui.icon.message > .content.details {
14979
+ display: none;
14980
+ }
14981
+ }
14650
14982
  /*!
14651
14983
  * # Fomantic-UI 2.9.4 - Table
14652
14984
  * https://github.com/fomantic/Fomantic-UI/
@@ -18850,6 +19182,11 @@ a.ui.secondary.card:hover,
18850
19182
  transform: none;
18851
19183
  }
18852
19184
 
19185
+ .plain-accordion .title > .dropdown.icon.right {
19186
+ float: right;
19187
+ transform: rotate(180deg);
19188
+ }
19189
+
18853
19190
  /* States */
18854
19191
 
18855
19192
  .plain-accordion[open] .title > .dropdown.icon,
@@ -22187,7 +22524,7 @@ select.ui.dropdown {
22187
22524
  display: block;
22188
22525
  width: 100%;
22189
22526
  font-size: 1em;
22190
- line-height: 1.4;
22527
+ line-height: 1.4285em;
22191
22528
  padding: 1.5rem;
22192
22529
  background: #fff;
22193
22530
  }
@@ -22252,7 +22589,7 @@ select.ui.dropdown {
22252
22589
 
22253
22590
  .ui.modal > .actions {
22254
22591
  background: #f9fafb;
22255
- padding: 1rem;
22592
+ padding: 1.5rem;
22256
22593
  border-top: 1px solid rgba(34, 36, 38, 0.15);
22257
22594
  text-align: right;
22258
22595
  }
@@ -22934,6 +23271,14 @@ select.ui.dropdown {
22934
23271
  /*******************************
22935
23272
  Site Overrides
22936
23273
  *******************************/
23274
+
23275
+ .ui.modal > .actions > .ui.button {
23276
+ margin-inline: 1rem 0;
23277
+ }
23278
+
23279
+ .ui.modal > .left.actions > .ui.button {
23280
+ margin-inline: 0 1rem;
23281
+ }
22937
23282
  /*!
22938
23283
  * # Fomantic-UI 2.9.4 - Popup
22939
23284
  * https://github.com/fomantic/Fomantic-UI/
@@ -24402,6 +24747,346 @@ select.ui.dropdown {
24402
24747
  /*******************************
24403
24748
  User Overrides
24404
24749
  *******************************/
24750
+ /*!
24751
+ * # Fomantic-UI 2.9.4 - Toast
24752
+ * https://github.com/fomantic/Fomantic-UI/
24753
+ *
24754
+ *
24755
+ * Released under the MIT license
24756
+ * https://opensource.org/licenses/MIT
24757
+ *
24758
+ */
24759
+
24760
+ /*******************************
24761
+ Toast container
24762
+ *******************************/
24763
+
24764
+ .ui.toast-container {
24765
+ position: fixed;
24766
+ z-index: 9999;
24767
+ }
24768
+
24769
+ .ui.toast-container.absolute {
24770
+ position: absolute;
24771
+ }
24772
+
24773
+ .ui.toast-container.top.right {
24774
+ top: 0.85714286em;
24775
+ right: 0.85714286em;
24776
+ margin-left: 0.85714286em;
24777
+ }
24778
+
24779
+ .ui.toast-container.top.left {
24780
+ top: 0.85714286em;
24781
+ left: 0.85714286em;
24782
+ margin-right: 0.85714286em;
24783
+ }
24784
+
24785
+ .ui.toast-container.top.center {
24786
+ left: 50%;
24787
+ transform: translate(-50%, 0);
24788
+ top: 0.85714286em;
24789
+ }
24790
+
24791
+ .ui.toast-container.bottom.right {
24792
+ bottom: 0.85714286em;
24793
+ right: 0.85714286em;
24794
+ margin-left: 0.85714286em;
24795
+ }
24796
+
24797
+ .ui.toast-container.bottom.left {
24798
+ bottom: 0.85714286em;
24799
+ left: 0.85714286em;
24800
+ margin-right: 0.85714286em;
24801
+ }
24802
+
24803
+ .ui.toast-container.bottom.center {
24804
+ left: 50%;
24805
+ transform: translate(-50%, 0);
24806
+ bottom: 0.85714286em;
24807
+ }
24808
+
24809
+ .ui.toast-container .visible.toast-box,
24810
+ .ui.toast-container .animating.toast-box,
24811
+ .ui.toast-container .toast-box {
24812
+ display: table !important;
24813
+ }
24814
+
24815
+ .ui.toast-container .toast-box {
24816
+ margin-bottom: 0.5em;
24817
+ border-radius: 0;
24818
+ cursor: default;
24819
+ will-change: transform, opacity;
24820
+ }
24821
+
24822
+ .ui.toast-container .toast-box:hover {
24823
+ opacity: 1;
24824
+ }
24825
+
24826
+ .ui.toast-container .toast-box:hover {
24827
+ cursor: pointer;
24828
+ }
24829
+
24830
+ .ui.toast-container .toast-box.floating,
24831
+ .ui.toast-container .toast-box.hoverfloating:hover {
24832
+ box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
24833
+ border: none;
24834
+ }
24835
+
24836
+ .ui.toast-container .toast-box.compact,
24837
+ .ui.toast-container .toast-box > .compact {
24838
+ width: 416px;
24839
+ }
24840
+
24841
+ .ui.toast-container .toast-box > .ui.toast,
24842
+ .ui.toast-container .toast-box > .ui.message {
24843
+ margin: 0;
24844
+ position: relative;
24845
+ }
24846
+
24847
+ .ui.toast-container .toast-box > .ui.message > .close.icon {
24848
+ top: 1rem;
24849
+ right: 1rem;
24850
+ }
24851
+
24852
+ .ui.toast-container .toast-box > .ui.message.icon {
24853
+ align-items: inherit;
24854
+ }
24855
+
24856
+ .ui.toast-container .toast-box > .ui.message.icon > :not(.icon) {
24857
+ padding-left: 0;
24858
+ }
24859
+
24860
+ .ui.toast-container .toast-box > .ui.message.icon > i.icon:not(.close) {
24861
+ display: inline-block;
24862
+ position: absolute;
24863
+ width: 4rem;
24864
+ top: 50%;
24865
+ transform: translateY(-50%);
24866
+ }
24867
+
24868
+ .ui.toast-container .toast-box > .ui.message.icon:not(.vertical).icon.icon.icon {
24869
+ display: block;
24870
+ }
24871
+
24872
+ .ui.toast-container .toast-box .ui.toast > .close.icon {
24873
+ cursor: pointer;
24874
+ margin: 0;
24875
+ opacity: 0.7;
24876
+ transition: opacity 0.1s ease;
24877
+ }
24878
+
24879
+ .ui.toast-container .toast-box .ui.toast > .close.icon:hover {
24880
+ opacity: 1;
24881
+ }
24882
+
24883
+ .ui.toast-container .toast-box .ui.toast.vertical > .close.icon {
24884
+ margin-top: -1rem;
24885
+ margin-right: -1rem;
24886
+ }
24887
+
24888
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon {
24889
+ position: absolute;
24890
+ top: 1rem;
24891
+ }
24892
+
24893
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon:not(.left) {
24894
+ right: 1rem;
24895
+ }
24896
+
24897
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon.left {
24898
+ margin-left: -1rem;
24899
+ }
24900
+
24901
+ .ui.toast-container .toast-box .progressing {
24902
+ animation-iteration-count: 1;
24903
+ animation-timing-function: linear;
24904
+ }
24905
+
24906
+ .ui.toast-container .toast-box .progressing.wait {
24907
+ animation-name: progressWait;
24908
+ }
24909
+
24910
+ .ui.toast-container .toast-box:hover .pausable.progressing {
24911
+ animation-play-state: paused;
24912
+ }
24913
+
24914
+ .ui.toast-container .toast-box .ui.toast:not(.vertical) {
24915
+ display: block;
24916
+ }
24917
+
24918
+ .ui.toast-container .toast-box .vertical.actions > .button,
24919
+ .ui.toast-container .toast-box > .vertical > .vertical.vertical,
24920
+ .ui.toast-container .toast-box > .vertical.vertical.vertical {
24921
+ display: flex;
24922
+ }
24923
+
24924
+ /*******************************
24925
+ Toast
24926
+ *******************************/
24927
+
24928
+ .ui.toast {
24929
+ display: none;
24930
+ border-radius: 0;
24931
+ padding: 0.78571429em 1em;
24932
+ margin: 0;
24933
+ color: rgba(0, 0, 0, 0.87);
24934
+ background-color: #fff;
24935
+ }
24936
+
24937
+ .ui.toast > .content > .header {
24938
+ font-weight: bold;
24939
+ color: inherit;
24940
+ margin: 0;
24941
+ }
24942
+
24943
+ .ui.toast.info {
24944
+ background-color: #31ccec;
24945
+ color: rgba(255, 255, 255, 0.9);
24946
+ }
24947
+
24948
+ .ui.toast.warning {
24949
+ background-color: #f2c037;
24950
+ color: rgba(255, 255, 255, 0.9);
24951
+ }
24952
+
24953
+ .ui.toast.success {
24954
+ background-color: #81b08c;
24955
+ color: rgba(255, 255, 255, 0.9);
24956
+ }
24957
+
24958
+ .ui.toast.error {
24959
+ background-color: #af4e4a;
24960
+ color: rgba(255, 255, 255, 0.9);
24961
+ }
24962
+
24963
+ .ui.toast.neutral {
24964
+ background-color: #fff;
24965
+ color: rgba(0, 0, 0, 0.87);
24966
+ }
24967
+
24968
+ .ui.toast > i.icon:not(.close) {
24969
+ font-size: 1.5em;
24970
+ }
24971
+
24972
+ .ui.toast:not(.vertical):not(.center) > i.icon:not(.close) {
24973
+ position: absolute;
24974
+ }
24975
+
24976
+ .ui.toast:not(.vertical) > i.icon:not(.close) + .content {
24977
+ padding-left: 3em;
24978
+ }
24979
+
24980
+ .ui.toast:not(.vertical) > .close.icon + .content {
24981
+ padding-left: 1.5em;
24982
+ }
24983
+
24984
+ .ui.toast:not(.vertical):not(.center) > .centered.image,
24985
+ .ui.toast:not(.vertical):not(.center) > .centered.icon {
24986
+ transform: translateY(-50%);
24987
+ top: 50%;
24988
+ }
24989
+
24990
+ .ui.toast.vertical > .content {
24991
+ flex-grow: 1;
24992
+ }
24993
+
24994
+ .ui.toast.vertical > .close.icon + .content {
24995
+ padding-left: 1em;
24996
+ }
24997
+
24998
+ .ui.toast.vertical > .ui.image + .content,
24999
+ .ui.toast.vertical > i.icon:not(.close) + .content {
25000
+ padding-left: 1em;
25001
+ }
25002
+
25003
+ .ui.toast.vertical > .centered.image,
25004
+ .ui.toast.vertical > .centered.icon {
25005
+ align-self: center;
25006
+ }
25007
+
25008
+ .ui.hoverfloating.message:hover {
25009
+ 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);
25010
+ }
25011
+
25012
+ .ui.center.toast-container .toast-box,
25013
+ .ui.right.toast-container .toast-box {
25014
+ margin-left: auto;
25015
+ }
25016
+
25017
+ .ui.center.toast-container .toast-box {
25018
+ margin-right: auto;
25019
+ }
25020
+
25021
+ /* --------------
25022
+ Colors
25023
+ -------------- */
25024
+
25025
+ @media only screen and (max-width: 420px) {
25026
+ .ui.toast-container .toast-box.toast-box,
25027
+ .ui.toast-container .toast-box > .compact,
25028
+ .ui.toast-container .toast-box > .vertical > *,
25029
+ .ui.toast-container .toast-box > * {
25030
+ width: auto;
25031
+ max-width: 100%;
25032
+ }
25033
+
25034
+ .ui.toast-container .toast-box > *:not(.vertical) {
25035
+ min-width: 280px;
25036
+ }
25037
+ }
25038
+
25039
+ /* ---------------
25040
+ Progress Bar
25041
+ ---------------- */
25042
+
25043
+ @keyframes progressWait {
25044
+ 0% {
25045
+ opacity: 1;
25046
+ }
25047
+
25048
+ 100% {
25049
+ opacity: 0;
25050
+ }
25051
+ }
25052
+
25053
+ /*******************************
25054
+ Theme Overrides
25055
+ *******************************/
25056
+
25057
+ /*******************************
25058
+ User Overrides
25059
+ *******************************/
25060
+
25061
+ .ui.toast-container .toast-box > .ui.message > .close.icon,
25062
+ .ui.toast-container .toast-box > .ui.toast > .close.icon {
25063
+ color: rgba(0, 0, 0, 0.87);
25064
+ font-size: 1.075em;
25065
+ }
25066
+
25067
+ .ui.toast-container .toast-box > .ui.message {
25068
+ padding: 0.85714286rem 3.42857143rem 0.85714286rem 1rem;
25069
+ }
25070
+
25071
+ .ui.toast-container .toast-box > .ui.message .header {
25072
+ font-size: 1.14285714rem;
25073
+ font-weight: 500;
25074
+ }
25075
+
25076
+ .ui.toast-container .toast-box > .ui.message .header + .message {
25077
+ margin-top: 0.28571429em;
25078
+ }
25079
+
25080
+ .ui.toast-container .toast-box > .ui.icon.message > i.icon:not(.close) {
25081
+ width: auto;
25082
+ top: 1rem;
25083
+ transform: none;
25084
+ font-size: 1.075em;
25085
+ }
25086
+
25087
+ .ui.toast-container .toast-box > .ui.icon.message > .content {
25088
+ padding-left: 1.57142857em;
25089
+ }
24405
25090
  /*!
24406
25091
  * # Fomantic-UI 2.9.4 - Transition
24407
25092
  * https://github.com/fomantic/Fomantic-UI/