@northdata/fomantic-ui 2.9.419 → 2.9.420
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/semantic-ui/dist/components/accordion.css +10 -0
- package/lib/semantic-ui/dist/components/accordion.min.css +1 -1
- package/lib/semantic-ui/dist/components/button.css +322 -7
- package/lib/semantic-ui/dist/components/button.min.css +1 -1
- package/lib/semantic-ui/dist/components/header.css +1 -1
- package/lib/semantic-ui/dist/components/header.min.css +1 -1
- package/lib/semantic-ui/dist/components/icon.css +9 -0
- package/lib/semantic-ui/dist/components/icon.min.css +1 -1
- package/lib/semantic-ui/dist/components/input.css +12 -12
- package/lib/semantic-ui/dist/components/input.min.css +1 -1
- package/lib/semantic-ui/dist/components/list.css +17 -12
- package/lib/semantic-ui/dist/components/list.min.css +1 -1
- package/lib/semantic-ui/dist/components/message.css +48 -7
- package/lib/semantic-ui/dist/components/message.min.css +1 -1
- package/lib/semantic-ui/dist/components/modal.css +8 -2
- package/lib/semantic-ui/dist/components/modal.min.css +1 -1
- package/lib/semantic-ui/dist/components/toast.css +288 -0
- package/lib/semantic-ui/dist/components/toast.js +964 -0
- package/lib/semantic-ui/dist/components/toast.min.css +9 -0
- package/lib/semantic-ui/dist/components/toast.min.js +11 -0
- package/lib/semantic-ui/dist/less/site/variation.variables +13 -13
- package/lib/semantic-ui/dist/semantic-packed.css +714 -38
- package/lib/semantic-ui/dist/semantic.css +847 -43
- package/lib/semantic-ui/dist/semantic.full.css +1028 -39
- package/lib/semantic-ui/dist/semantic.full.min.css +1 -1
- package/lib/semantic-ui/dist/semantic.js +965 -0
- package/lib/semantic-ui/dist/semantic.min.css +16 -8
- package/lib/semantic-ui/dist/semantic.min.js +1 -1
- package/package.json +2 -2
|
@@ -699,7 +699,7 @@ input::selection {
|
|
|
699
699
|
}
|
|
700
700
|
|
|
701
701
|
.ui.button:hover .icon {
|
|
702
|
-
opacity:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
}
|
|
@@ -5784,39 +6049,39 @@ input[type="file"].ui.invisible.file.input,
|
|
|
5784
6049
|
position: absolute;
|
|
5785
6050
|
}
|
|
5786
6051
|
|
|
5787
|
-
input[type="file"].ui.file.input:focus + label.ui.button,
|
|
5788
|
-
.ui.file.input input[type="file"]:focus + label.ui.button {
|
|
6052
|
+
input[type="file"].ui.file.input:focus + label.ui.button:not(.basic),
|
|
6053
|
+
.ui.file.input input[type="file"]:focus + label.ui.button:not(.basic) {
|
|
5789
6054
|
background: #cacbcd;
|
|
5790
6055
|
color: rgba(0, 0, 0, 0.8);
|
|
5791
6056
|
}
|
|
5792
6057
|
|
|
5793
|
-
input[type="file"].ui.file.input:focus + label.ui.button.inverted,
|
|
5794
|
-
.ui.file.input input[type="file"]:focus + label.ui.button.inverted {
|
|
6058
|
+
input[type="file"].ui.file.input:focus + label.ui.button:not(.basic).inverted,
|
|
6059
|
+
.ui.file.input input[type="file"]:focus + label.ui.button:not(.basic).inverted {
|
|
5795
6060
|
background: #fff;
|
|
5796
6061
|
}
|
|
5797
6062
|
|
|
5798
6063
|
/* this is related to existing buttons, so the button color variable is used here! */
|
|
5799
6064
|
|
|
5800
|
-
input[type="file"].ui.file.input:focus + label.ui.primary.button,
|
|
5801
|
-
.ui.file.input input[type="file"]:focus + label.ui.primary.button {
|
|
6065
|
+
input[type="file"].ui.file.input:focus + label.ui.primary.button:not(.basic),
|
|
6066
|
+
.ui.file.input input[type="file"]:focus + label.ui.primary.button:not(.basic) {
|
|
5802
6067
|
background-color: #005d6f;
|
|
5803
6068
|
color: #fff;
|
|
5804
6069
|
}
|
|
5805
6070
|
|
|
5806
|
-
input[type="file"].ui.file.input:focus + label.ui.secondary.button,
|
|
5807
|
-
.ui.file.input input[type="file"]:focus + label.ui.secondary.button {
|
|
6071
|
+
input[type="file"].ui.file.input:focus + label.ui.secondary.button:not(.basic),
|
|
6072
|
+
.ui.file.input input[type="file"]:focus + label.ui.secondary.button:not(.basic) {
|
|
5808
6073
|
background-color: #2f5669;
|
|
5809
6074
|
color: #fff;
|
|
5810
6075
|
}
|
|
5811
6076
|
|
|
5812
|
-
input[type="file"].ui.file.input:focus + label.ui.green.button,
|
|
5813
|
-
.ui.file.input input[type="file"]:focus + label.ui.green.button {
|
|
6077
|
+
input[type="file"].ui.file.input:focus + label.ui.green.button:not(.basic),
|
|
6078
|
+
.ui.file.input input[type="file"]:focus + label.ui.green.button:not(.basic) {
|
|
5814
6079
|
background-color: #6fa97c;
|
|
5815
6080
|
color: #fff;
|
|
5816
6081
|
}
|
|
5817
6082
|
|
|
5818
|
-
input[type="file"].ui.file.input:focus + label.ui.red.button,
|
|
5819
|
-
.ui.file.input input[type="file"]:focus + label.ui.red.button {
|
|
6083
|
+
input[type="file"].ui.file.input:focus + label.ui.red.button:not(.basic),
|
|
6084
|
+
.ui.file.input input[type="file"]:focus + label.ui.red.button:not(.basic) {
|
|
5820
6085
|
background-color: #a2423e;
|
|
5821
6086
|
color: #fff;
|
|
5822
6087
|
}
|
|
@@ -7469,7 +7734,7 @@ ul.ui.list,
|
|
|
7469
7734
|
ol.ui.list,
|
|
7470
7735
|
.ui.list {
|
|
7471
7736
|
list-style-type: none;
|
|
7472
|
-
margin:
|
|
7737
|
+
margin: 1.14285714rem 0;
|
|
7473
7738
|
padding: 0 0;
|
|
7474
7739
|
}
|
|
7475
7740
|
|
|
@@ -7501,7 +7766,7 @@ ol.ui.list li,
|
|
|
7501
7766
|
table-layout: fixed;
|
|
7502
7767
|
list-style-type: none;
|
|
7503
7768
|
list-style-position: outside;
|
|
7504
|
-
padding: 0
|
|
7769
|
+
padding: 0 0;
|
|
7505
7770
|
line-height: 1.14285714em;
|
|
7506
7771
|
}
|
|
7507
7772
|
|
|
@@ -7637,8 +7902,8 @@ ol.ui.list ol li,
|
|
|
7637
7902
|
.ui.list > .item .header {
|
|
7638
7903
|
display: block;
|
|
7639
7904
|
margin: 0;
|
|
7640
|
-
font-family: "
|
|
7641
|
-
font-weight:
|
|
7905
|
+
font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
7906
|
+
font-weight: 500;
|
|
7642
7907
|
color: rgba(0, 0, 0, 0.87);
|
|
7643
7908
|
}
|
|
7644
7909
|
|
|
@@ -7723,7 +7988,7 @@ ol.ui.list ol li,
|
|
|
7723
7988
|
background-color: transparent;
|
|
7724
7989
|
list-style-type: none;
|
|
7725
7990
|
list-style-position: outside;
|
|
7726
|
-
padding: 0
|
|
7991
|
+
padding: 0 0;
|
|
7727
7992
|
line-height: 1.14285714em;
|
|
7728
7993
|
}
|
|
7729
7994
|
|
|
@@ -7785,8 +8050,8 @@ ol.ui.list ol li,
|
|
|
7785
8050
|
|
|
7786
8051
|
.ui.horizontal.list > .item:first-child,
|
|
7787
8052
|
.ui.horizontal.list > .item:last-child {
|
|
7788
|
-
padding-top: 0
|
|
7789
|
-
padding-bottom: 0
|
|
8053
|
+
padding-top: 0;
|
|
8054
|
+
padding-bottom: 0;
|
|
7790
8055
|
}
|
|
7791
8056
|
|
|
7792
8057
|
/* Horizontal List */
|
|
@@ -8156,7 +8421,7 @@ ol.ui.suffixed.list li::before,
|
|
|
8156
8421
|
.ui.divided.ordered.list .item .list:not(.icon) {
|
|
8157
8422
|
margin-left: 0;
|
|
8158
8423
|
margin-right: 0;
|
|
8159
|
-
padding-bottom: 0
|
|
8424
|
+
padding-bottom: 0;
|
|
8160
8425
|
}
|
|
8161
8426
|
|
|
8162
8427
|
.ui.divided.ordered.list .item .list > .item {
|
|
@@ -8215,8 +8480,8 @@ ol.ui.suffixed.list li::before,
|
|
|
8215
8480
|
|
|
8216
8481
|
.ui.celled.list > .item:first-child,
|
|
8217
8482
|
.ui.celled.list > .item:last-child {
|
|
8218
|
-
padding-top: 0
|
|
8219
|
-
padding-bottom: 0
|
|
8483
|
+
padding-top: 0;
|
|
8484
|
+
padding-bottom: 0;
|
|
8220
8485
|
}
|
|
8221
8486
|
|
|
8222
8487
|
/* Sub Menu */
|
|
@@ -8243,7 +8508,7 @@ ol.ui.suffixed.list li::before,
|
|
|
8243
8508
|
.ui.celled.bulleted.list .item .list:not(.icon) {
|
|
8244
8509
|
margin-left: -1.25rem;
|
|
8245
8510
|
margin-right: -1.25rem;
|
|
8246
|
-
padding-bottom: 0
|
|
8511
|
+
padding-bottom: 0;
|
|
8247
8512
|
}
|
|
8248
8513
|
|
|
8249
8514
|
/* Celled Ordered */
|
|
@@ -8260,7 +8525,7 @@ ol.ui.suffixed.list li::before,
|
|
|
8260
8525
|
.ui.celled.ordered.list .item .list:not(.icon) {
|
|
8261
8526
|
margin-left: 0;
|
|
8262
8527
|
margin-right: 0;
|
|
8263
|
-
padding-bottom: 0
|
|
8528
|
+
padding-bottom: 0;
|
|
8264
8529
|
}
|
|
8265
8530
|
|
|
8266
8531
|
.ui.celled.ordered.list .list > .item {
|
|
@@ -8389,6 +8654,12 @@ ol.ui.suffixed.list li::before,
|
|
|
8389
8654
|
/*******************************
|
|
8390
8655
|
Site Overrides
|
|
8391
8656
|
*******************************/
|
|
8657
|
+
|
|
8658
|
+
.ui.list .list > .item .sub.header,
|
|
8659
|
+
.ui.list > .item .sub.header {
|
|
8660
|
+
font-weight: 300;
|
|
8661
|
+
margin-top: 0.28571429em;
|
|
8662
|
+
}
|
|
8392
8663
|
/*!
|
|
8393
8664
|
* # Fomantic-UI 2.9.4 - Loader
|
|
8394
8665
|
* https://github.com/fomantic/Fomantic-UI/
|
|
@@ -14176,9 +14447,9 @@ Floated Menu / Item
|
|
|
14176
14447
|
.ui.message {
|
|
14177
14448
|
position: relative;
|
|
14178
14449
|
min-height: 1em;
|
|
14179
|
-
margin:
|
|
14450
|
+
margin: 1.14285714rem 0;
|
|
14180
14451
|
background: #f8f8f9;
|
|
14181
|
-
padding:
|
|
14452
|
+
padding: 1.14285714em;
|
|
14182
14453
|
line-height: 1.4285em;
|
|
14183
14454
|
color: rgba(0, 0, 0, 0.87);
|
|
14184
14455
|
transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
|
|
@@ -14202,9 +14473,9 @@ Floated Menu / Item
|
|
|
14202
14473
|
|
|
14203
14474
|
.ui.message .header {
|
|
14204
14475
|
display: block;
|
|
14205
|
-
font-family: "
|
|
14206
|
-
font-weight:
|
|
14207
|
-
margin:
|
|
14476
|
+
font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
14477
|
+
font-weight: 300;
|
|
14478
|
+
margin: 0 0 0 0;
|
|
14208
14479
|
}
|
|
14209
14480
|
|
|
14210
14481
|
/* Default font size */
|
|
@@ -14229,7 +14500,7 @@ Floated Menu / Item
|
|
|
14229
14500
|
}
|
|
14230
14501
|
|
|
14231
14502
|
.ui.message .header + p {
|
|
14232
|
-
margin-top: 0.
|
|
14503
|
+
margin-top: 0.28571429em;
|
|
14233
14504
|
}
|
|
14234
14505
|
|
|
14235
14506
|
/* List */
|
|
@@ -14392,7 +14663,7 @@ Floated Menu / Item
|
|
|
14392
14663
|
}
|
|
14393
14664
|
|
|
14394
14665
|
.ui.bottom.attached.message:not(:last-child) {
|
|
14395
|
-
margin-bottom:
|
|
14666
|
+
margin-bottom: 1.14285714rem;
|
|
14396
14667
|
}
|
|
14397
14668
|
|
|
14398
14669
|
.ui.attached.icon.message {
|
|
@@ -14604,6 +14875,42 @@ Floated Menu / Item
|
|
|
14604
14875
|
color: rgba(255, 255, 255, 0.9);
|
|
14605
14876
|
}
|
|
14606
14877
|
|
|
14878
|
+
.ui.violet.message {
|
|
14879
|
+
background-color: #eae7ff;
|
|
14880
|
+
color: #9461ac;
|
|
14881
|
+
}
|
|
14882
|
+
|
|
14883
|
+
.ui.violet.message,
|
|
14884
|
+
.ui.attached.violet.message {
|
|
14885
|
+
box-shadow: 0 0 0 1px #9461ac inset, 0 0 0 0 rgba(0, 0, 0, 0);
|
|
14886
|
+
}
|
|
14887
|
+
|
|
14888
|
+
.ui.floating.violet.message {
|
|
14889
|
+
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);
|
|
14890
|
+
}
|
|
14891
|
+
|
|
14892
|
+
.ui.violet.message .header {
|
|
14893
|
+
color: #8754a0;
|
|
14894
|
+
}
|
|
14895
|
+
|
|
14896
|
+
.ui.purple.message {
|
|
14897
|
+
background-color: #f6e7ff;
|
|
14898
|
+
color: #6667af;
|
|
14899
|
+
}
|
|
14900
|
+
|
|
14901
|
+
.ui.purple.message,
|
|
14902
|
+
.ui.attached.purple.message {
|
|
14903
|
+
box-shadow: 0 0 0 1px #6667af inset, 0 0 0 0 rgba(0, 0, 0, 0);
|
|
14904
|
+
}
|
|
14905
|
+
|
|
14906
|
+
.ui.floating.purple.message {
|
|
14907
|
+
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);
|
|
14908
|
+
}
|
|
14909
|
+
|
|
14910
|
+
.ui.purple.message .header {
|
|
14911
|
+
color: #5657a5;
|
|
14912
|
+
}
|
|
14913
|
+
|
|
14607
14914
|
/* --------------
|
|
14608
14915
|
Sizes
|
|
14609
14916
|
--------------- */
|
|
@@ -14647,6 +14954,22 @@ Floated Menu / Item
|
|
|
14647
14954
|
/*******************************
|
|
14648
14955
|
Site Overrides
|
|
14649
14956
|
*******************************/
|
|
14957
|
+
|
|
14958
|
+
.ui.icon.message {
|
|
14959
|
+
align-items: flex-start;
|
|
14960
|
+
}
|
|
14961
|
+
|
|
14962
|
+
.ui.icon.message > .content.details {
|
|
14963
|
+
flex: 0 0 auto;
|
|
14964
|
+
align-self: center;
|
|
14965
|
+
margin-left: 0.57142857em;
|
|
14966
|
+
}
|
|
14967
|
+
|
|
14968
|
+
@media only screen and (max-width: 767.98px) {
|
|
14969
|
+
.ui.icon.message > .content.details {
|
|
14970
|
+
display: none;
|
|
14971
|
+
}
|
|
14972
|
+
}
|
|
14650
14973
|
/*!
|
|
14651
14974
|
* # Fomantic-UI 2.9.4 - Table
|
|
14652
14975
|
* https://github.com/fomantic/Fomantic-UI/
|
|
@@ -18850,6 +19173,11 @@ a.ui.secondary.card:hover,
|
|
|
18850
19173
|
transform: none;
|
|
18851
19174
|
}
|
|
18852
19175
|
|
|
19176
|
+
.plain-accordion .title > .dropdown.icon.right {
|
|
19177
|
+
float: right;
|
|
19178
|
+
transform: rotate(180deg);
|
|
19179
|
+
}
|
|
19180
|
+
|
|
18853
19181
|
/* States */
|
|
18854
19182
|
|
|
18855
19183
|
.plain-accordion[open] .title > .dropdown.icon,
|
|
@@ -22187,7 +22515,7 @@ select.ui.dropdown {
|
|
|
22187
22515
|
display: block;
|
|
22188
22516
|
width: 100%;
|
|
22189
22517
|
font-size: 1em;
|
|
22190
|
-
line-height: 1.
|
|
22518
|
+
line-height: 1.4285em;
|
|
22191
22519
|
padding: 1.5rem;
|
|
22192
22520
|
background: #fff;
|
|
22193
22521
|
}
|
|
@@ -22252,7 +22580,7 @@ select.ui.dropdown {
|
|
|
22252
22580
|
|
|
22253
22581
|
.ui.modal > .actions {
|
|
22254
22582
|
background: #f9fafb;
|
|
22255
|
-
padding:
|
|
22583
|
+
padding: 1.5rem;
|
|
22256
22584
|
border-top: 1px solid rgba(34, 36, 38, 0.15);
|
|
22257
22585
|
text-align: right;
|
|
22258
22586
|
}
|
|
@@ -22934,6 +23262,14 @@ select.ui.dropdown {
|
|
|
22934
23262
|
/*******************************
|
|
22935
23263
|
Site Overrides
|
|
22936
23264
|
*******************************/
|
|
23265
|
+
|
|
23266
|
+
.ui.modal > .actions > .ui.button {
|
|
23267
|
+
margin-inline: 1rem 0;
|
|
23268
|
+
}
|
|
23269
|
+
|
|
23270
|
+
.ui.modal > .left.actions > .ui.button {
|
|
23271
|
+
margin-inline: 0 1rem;
|
|
23272
|
+
}
|
|
22937
23273
|
/*!
|
|
22938
23274
|
* # Fomantic-UI 2.9.4 - Popup
|
|
22939
23275
|
* https://github.com/fomantic/Fomantic-UI/
|
|
@@ -24402,6 +24738,346 @@ select.ui.dropdown {
|
|
|
24402
24738
|
/*******************************
|
|
24403
24739
|
User Overrides
|
|
24404
24740
|
*******************************/
|
|
24741
|
+
/*!
|
|
24742
|
+
* # Fomantic-UI 2.9.4 - Toast
|
|
24743
|
+
* https://github.com/fomantic/Fomantic-UI/
|
|
24744
|
+
*
|
|
24745
|
+
*
|
|
24746
|
+
* Released under the MIT license
|
|
24747
|
+
* https://opensource.org/licenses/MIT
|
|
24748
|
+
*
|
|
24749
|
+
*/
|
|
24750
|
+
|
|
24751
|
+
/*******************************
|
|
24752
|
+
Toast container
|
|
24753
|
+
*******************************/
|
|
24754
|
+
|
|
24755
|
+
.ui.toast-container {
|
|
24756
|
+
position: fixed;
|
|
24757
|
+
z-index: 9999;
|
|
24758
|
+
}
|
|
24759
|
+
|
|
24760
|
+
.ui.toast-container.absolute {
|
|
24761
|
+
position: absolute;
|
|
24762
|
+
}
|
|
24763
|
+
|
|
24764
|
+
.ui.toast-container.top.right {
|
|
24765
|
+
top: 0.85714286em;
|
|
24766
|
+
right: 0.85714286em;
|
|
24767
|
+
margin-left: 0.85714286em;
|
|
24768
|
+
}
|
|
24769
|
+
|
|
24770
|
+
.ui.toast-container.top.left {
|
|
24771
|
+
top: 0.85714286em;
|
|
24772
|
+
left: 0.85714286em;
|
|
24773
|
+
margin-right: 0.85714286em;
|
|
24774
|
+
}
|
|
24775
|
+
|
|
24776
|
+
.ui.toast-container.top.center {
|
|
24777
|
+
left: 50%;
|
|
24778
|
+
transform: translate(-50%, 0);
|
|
24779
|
+
top: 0.85714286em;
|
|
24780
|
+
}
|
|
24781
|
+
|
|
24782
|
+
.ui.toast-container.bottom.right {
|
|
24783
|
+
bottom: 0.85714286em;
|
|
24784
|
+
right: 0.85714286em;
|
|
24785
|
+
margin-left: 0.85714286em;
|
|
24786
|
+
}
|
|
24787
|
+
|
|
24788
|
+
.ui.toast-container.bottom.left {
|
|
24789
|
+
bottom: 0.85714286em;
|
|
24790
|
+
left: 0.85714286em;
|
|
24791
|
+
margin-right: 0.85714286em;
|
|
24792
|
+
}
|
|
24793
|
+
|
|
24794
|
+
.ui.toast-container.bottom.center {
|
|
24795
|
+
left: 50%;
|
|
24796
|
+
transform: translate(-50%, 0);
|
|
24797
|
+
bottom: 0.85714286em;
|
|
24798
|
+
}
|
|
24799
|
+
|
|
24800
|
+
.ui.toast-container .visible.toast-box,
|
|
24801
|
+
.ui.toast-container .animating.toast-box,
|
|
24802
|
+
.ui.toast-container .toast-box {
|
|
24803
|
+
display: table !important;
|
|
24804
|
+
}
|
|
24805
|
+
|
|
24806
|
+
.ui.toast-container .toast-box {
|
|
24807
|
+
margin-bottom: 0.5em;
|
|
24808
|
+
border-radius: 0;
|
|
24809
|
+
cursor: default;
|
|
24810
|
+
will-change: transform, opacity;
|
|
24811
|
+
}
|
|
24812
|
+
|
|
24813
|
+
.ui.toast-container .toast-box:hover {
|
|
24814
|
+
opacity: 1;
|
|
24815
|
+
}
|
|
24816
|
+
|
|
24817
|
+
.ui.toast-container .toast-box:hover {
|
|
24818
|
+
cursor: pointer;
|
|
24819
|
+
}
|
|
24820
|
+
|
|
24821
|
+
.ui.toast-container .toast-box.floating,
|
|
24822
|
+
.ui.toast-container .toast-box.hoverfloating:hover {
|
|
24823
|
+
box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
|
|
24824
|
+
border: none;
|
|
24825
|
+
}
|
|
24826
|
+
|
|
24827
|
+
.ui.toast-container .toast-box.compact,
|
|
24828
|
+
.ui.toast-container .toast-box > .compact {
|
|
24829
|
+
width: 416px;
|
|
24830
|
+
}
|
|
24831
|
+
|
|
24832
|
+
.ui.toast-container .toast-box > .ui.toast,
|
|
24833
|
+
.ui.toast-container .toast-box > .ui.message {
|
|
24834
|
+
margin: 0;
|
|
24835
|
+
position: relative;
|
|
24836
|
+
}
|
|
24837
|
+
|
|
24838
|
+
.ui.toast-container .toast-box > .ui.message > .close.icon {
|
|
24839
|
+
top: 1rem;
|
|
24840
|
+
right: 1rem;
|
|
24841
|
+
}
|
|
24842
|
+
|
|
24843
|
+
.ui.toast-container .toast-box > .ui.message.icon {
|
|
24844
|
+
align-items: inherit;
|
|
24845
|
+
}
|
|
24846
|
+
|
|
24847
|
+
.ui.toast-container .toast-box > .ui.message.icon > :not(.icon) {
|
|
24848
|
+
padding-left: 0;
|
|
24849
|
+
}
|
|
24850
|
+
|
|
24851
|
+
.ui.toast-container .toast-box > .ui.message.icon > i.icon:not(.close) {
|
|
24852
|
+
display: inline-block;
|
|
24853
|
+
position: absolute;
|
|
24854
|
+
width: 4rem;
|
|
24855
|
+
top: 50%;
|
|
24856
|
+
transform: translateY(-50%);
|
|
24857
|
+
}
|
|
24858
|
+
|
|
24859
|
+
.ui.toast-container .toast-box > .ui.message.icon:not(.vertical).icon.icon.icon {
|
|
24860
|
+
display: block;
|
|
24861
|
+
}
|
|
24862
|
+
|
|
24863
|
+
.ui.toast-container .toast-box .ui.toast > .close.icon {
|
|
24864
|
+
cursor: pointer;
|
|
24865
|
+
margin: 0;
|
|
24866
|
+
opacity: 0.7;
|
|
24867
|
+
transition: opacity 0.1s ease;
|
|
24868
|
+
}
|
|
24869
|
+
|
|
24870
|
+
.ui.toast-container .toast-box .ui.toast > .close.icon:hover {
|
|
24871
|
+
opacity: 1;
|
|
24872
|
+
}
|
|
24873
|
+
|
|
24874
|
+
.ui.toast-container .toast-box .ui.toast.vertical > .close.icon {
|
|
24875
|
+
margin-top: -1rem;
|
|
24876
|
+
margin-right: -1rem;
|
|
24877
|
+
}
|
|
24878
|
+
|
|
24879
|
+
.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon {
|
|
24880
|
+
position: absolute;
|
|
24881
|
+
top: 1rem;
|
|
24882
|
+
}
|
|
24883
|
+
|
|
24884
|
+
.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon:not(.left) {
|
|
24885
|
+
right: 1rem;
|
|
24886
|
+
}
|
|
24887
|
+
|
|
24888
|
+
.ui.toast-container .toast-box .ui.toast:not(.vertical) > .close.icon.left {
|
|
24889
|
+
margin-left: -1rem;
|
|
24890
|
+
}
|
|
24891
|
+
|
|
24892
|
+
.ui.toast-container .toast-box .progressing {
|
|
24893
|
+
animation-iteration-count: 1;
|
|
24894
|
+
animation-timing-function: linear;
|
|
24895
|
+
}
|
|
24896
|
+
|
|
24897
|
+
.ui.toast-container .toast-box .progressing.wait {
|
|
24898
|
+
animation-name: progressWait;
|
|
24899
|
+
}
|
|
24900
|
+
|
|
24901
|
+
.ui.toast-container .toast-box:hover .pausable.progressing {
|
|
24902
|
+
animation-play-state: paused;
|
|
24903
|
+
}
|
|
24904
|
+
|
|
24905
|
+
.ui.toast-container .toast-box .ui.toast:not(.vertical) {
|
|
24906
|
+
display: block;
|
|
24907
|
+
}
|
|
24908
|
+
|
|
24909
|
+
.ui.toast-container .toast-box .vertical.actions > .button,
|
|
24910
|
+
.ui.toast-container .toast-box > .vertical > .vertical.vertical,
|
|
24911
|
+
.ui.toast-container .toast-box > .vertical.vertical.vertical {
|
|
24912
|
+
display: flex;
|
|
24913
|
+
}
|
|
24914
|
+
|
|
24915
|
+
/*******************************
|
|
24916
|
+
Toast
|
|
24917
|
+
*******************************/
|
|
24918
|
+
|
|
24919
|
+
.ui.toast {
|
|
24920
|
+
display: none;
|
|
24921
|
+
border-radius: 0;
|
|
24922
|
+
padding: 0.78571429em 1em;
|
|
24923
|
+
margin: 0;
|
|
24924
|
+
color: rgba(0, 0, 0, 0.87);
|
|
24925
|
+
background-color: #fff;
|
|
24926
|
+
}
|
|
24927
|
+
|
|
24928
|
+
.ui.toast > .content > .header {
|
|
24929
|
+
font-weight: bold;
|
|
24930
|
+
color: inherit;
|
|
24931
|
+
margin: 0;
|
|
24932
|
+
}
|
|
24933
|
+
|
|
24934
|
+
.ui.toast.info {
|
|
24935
|
+
background-color: #31ccec;
|
|
24936
|
+
color: rgba(255, 255, 255, 0.9);
|
|
24937
|
+
}
|
|
24938
|
+
|
|
24939
|
+
.ui.toast.warning {
|
|
24940
|
+
background-color: #f2c037;
|
|
24941
|
+
color: rgba(255, 255, 255, 0.9);
|
|
24942
|
+
}
|
|
24943
|
+
|
|
24944
|
+
.ui.toast.success {
|
|
24945
|
+
background-color: #81b08c;
|
|
24946
|
+
color: rgba(255, 255, 255, 0.9);
|
|
24947
|
+
}
|
|
24948
|
+
|
|
24949
|
+
.ui.toast.error {
|
|
24950
|
+
background-color: #af4e4a;
|
|
24951
|
+
color: rgba(255, 255, 255, 0.9);
|
|
24952
|
+
}
|
|
24953
|
+
|
|
24954
|
+
.ui.toast.neutral {
|
|
24955
|
+
background-color: #fff;
|
|
24956
|
+
color: rgba(0, 0, 0, 0.87);
|
|
24957
|
+
}
|
|
24958
|
+
|
|
24959
|
+
.ui.toast > i.icon:not(.close) {
|
|
24960
|
+
font-size: 1.5em;
|
|
24961
|
+
}
|
|
24962
|
+
|
|
24963
|
+
.ui.toast:not(.vertical):not(.center) > i.icon:not(.close) {
|
|
24964
|
+
position: absolute;
|
|
24965
|
+
}
|
|
24966
|
+
|
|
24967
|
+
.ui.toast:not(.vertical) > i.icon:not(.close) + .content {
|
|
24968
|
+
padding-left: 3em;
|
|
24969
|
+
}
|
|
24970
|
+
|
|
24971
|
+
.ui.toast:not(.vertical) > .close.icon + .content {
|
|
24972
|
+
padding-left: 1.5em;
|
|
24973
|
+
}
|
|
24974
|
+
|
|
24975
|
+
.ui.toast:not(.vertical):not(.center) > .centered.image,
|
|
24976
|
+
.ui.toast:not(.vertical):not(.center) > .centered.icon {
|
|
24977
|
+
transform: translateY(-50%);
|
|
24978
|
+
top: 50%;
|
|
24979
|
+
}
|
|
24980
|
+
|
|
24981
|
+
.ui.toast.vertical > .content {
|
|
24982
|
+
flex-grow: 1;
|
|
24983
|
+
}
|
|
24984
|
+
|
|
24985
|
+
.ui.toast.vertical > .close.icon + .content {
|
|
24986
|
+
padding-left: 1em;
|
|
24987
|
+
}
|
|
24988
|
+
|
|
24989
|
+
.ui.toast.vertical > .ui.image + .content,
|
|
24990
|
+
.ui.toast.vertical > i.icon:not(.close) + .content {
|
|
24991
|
+
padding-left: 1em;
|
|
24992
|
+
}
|
|
24993
|
+
|
|
24994
|
+
.ui.toast.vertical > .centered.image,
|
|
24995
|
+
.ui.toast.vertical > .centered.icon {
|
|
24996
|
+
align-self: center;
|
|
24997
|
+
}
|
|
24998
|
+
|
|
24999
|
+
.ui.hoverfloating.message:hover {
|
|
25000
|
+
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);
|
|
25001
|
+
}
|
|
25002
|
+
|
|
25003
|
+
.ui.center.toast-container .toast-box,
|
|
25004
|
+
.ui.right.toast-container .toast-box {
|
|
25005
|
+
margin-left: auto;
|
|
25006
|
+
}
|
|
25007
|
+
|
|
25008
|
+
.ui.center.toast-container .toast-box {
|
|
25009
|
+
margin-right: auto;
|
|
25010
|
+
}
|
|
25011
|
+
|
|
25012
|
+
/* --------------
|
|
25013
|
+
Colors
|
|
25014
|
+
-------------- */
|
|
25015
|
+
|
|
25016
|
+
@media only screen and (max-width: 420px) {
|
|
25017
|
+
.ui.toast-container .toast-box.toast-box,
|
|
25018
|
+
.ui.toast-container .toast-box > .compact,
|
|
25019
|
+
.ui.toast-container .toast-box > .vertical > *,
|
|
25020
|
+
.ui.toast-container .toast-box > * {
|
|
25021
|
+
width: auto;
|
|
25022
|
+
max-width: 100%;
|
|
25023
|
+
}
|
|
25024
|
+
|
|
25025
|
+
.ui.toast-container .toast-box > *:not(.vertical) {
|
|
25026
|
+
min-width: 280px;
|
|
25027
|
+
}
|
|
25028
|
+
}
|
|
25029
|
+
|
|
25030
|
+
/* ---------------
|
|
25031
|
+
Progress Bar
|
|
25032
|
+
---------------- */
|
|
25033
|
+
|
|
25034
|
+
@keyframes progressWait {
|
|
25035
|
+
0% {
|
|
25036
|
+
opacity: 1;
|
|
25037
|
+
}
|
|
25038
|
+
|
|
25039
|
+
100% {
|
|
25040
|
+
opacity: 0;
|
|
25041
|
+
}
|
|
25042
|
+
}
|
|
25043
|
+
|
|
25044
|
+
/*******************************
|
|
25045
|
+
Theme Overrides
|
|
25046
|
+
*******************************/
|
|
25047
|
+
|
|
25048
|
+
/*******************************
|
|
25049
|
+
User Overrides
|
|
25050
|
+
*******************************/
|
|
25051
|
+
|
|
25052
|
+
.ui.toast-container .toast-box > .ui.message > .close.icon,
|
|
25053
|
+
.ui.toast-container .toast-box > .ui.toast > .close.icon {
|
|
25054
|
+
color: rgba(0, 0, 0, 0.87);
|
|
25055
|
+
font-size: 1.075em;
|
|
25056
|
+
}
|
|
25057
|
+
|
|
25058
|
+
.ui.toast-container .toast-box > .ui.message {
|
|
25059
|
+
padding: 0.85714286rem 3.42857143rem 0.85714286rem 1rem;
|
|
25060
|
+
}
|
|
25061
|
+
|
|
25062
|
+
.ui.toast-container .toast-box > .ui.message .header {
|
|
25063
|
+
font-size: 1.14285714rem;
|
|
25064
|
+
font-weight: 500;
|
|
25065
|
+
}
|
|
25066
|
+
|
|
25067
|
+
.ui.toast-container .toast-box > .ui.message .header + .message {
|
|
25068
|
+
margin-top: 0.28571429em;
|
|
25069
|
+
}
|
|
25070
|
+
|
|
25071
|
+
.ui.toast-container .toast-box > .ui.icon.message > i.icon:not(.close) {
|
|
25072
|
+
width: auto;
|
|
25073
|
+
top: 1rem;
|
|
25074
|
+
transform: none;
|
|
25075
|
+
font-size: 1.075em;
|
|
25076
|
+
}
|
|
25077
|
+
|
|
25078
|
+
.ui.toast-container .toast-box > .ui.icon.message > .content {
|
|
25079
|
+
padding-left: 1.57142857em;
|
|
25080
|
+
}
|
|
24405
25081
|
/*!
|
|
24406
25082
|
* # Fomantic-UI 2.9.4 - Transition
|
|
24407
25083
|
* https://github.com/fomantic/Fomantic-UI/
|