@northdata/fomantic-ui 2.9.401 → 2.9.403

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 (48) hide show
  1. package/lib/semantic-ui/dist/components/button.css +15 -15
  2. package/lib/semantic-ui/dist/components/button.min.css +1 -1
  3. package/lib/semantic-ui/dist/components/card.css +2 -2
  4. package/lib/semantic-ui/dist/components/card.min.css +1 -1
  5. package/lib/semantic-ui/dist/components/dropdown.css +4 -4
  6. package/lib/semantic-ui/dist/components/dropdown.min.css +1 -1
  7. package/lib/semantic-ui/dist/components/form.css +4 -11
  8. package/lib/semantic-ui/dist/components/form.min.css +1 -1
  9. package/lib/semantic-ui/dist/components/grid.css +1 -1
  10. package/lib/semantic-ui/dist/components/grid.min.css +1 -1
  11. package/lib/semantic-ui/dist/components/header.css +18 -18
  12. package/lib/semantic-ui/dist/components/header.min.css +1 -1
  13. package/lib/semantic-ui/dist/components/icon.css +12 -12
  14. package/lib/semantic-ui/dist/components/icon.min.css +1 -1
  15. package/lib/semantic-ui/dist/components/input.css +11 -11
  16. package/lib/semantic-ui/dist/components/input.min.css +1 -1
  17. package/lib/semantic-ui/dist/components/label.css +54 -54
  18. package/lib/semantic-ui/dist/components/label.min.css +1 -1
  19. package/lib/semantic-ui/dist/components/loader.css +3 -3
  20. package/lib/semantic-ui/dist/components/loader.min.css +1 -1
  21. package/lib/semantic-ui/dist/components/menu.css +1 -1
  22. package/lib/semantic-ui/dist/components/menu.min.css +1 -1
  23. package/lib/semantic-ui/dist/components/message.css +2 -2
  24. package/lib/semantic-ui/dist/components/message.min.css +1 -1
  25. package/lib/semantic-ui/dist/components/popup.css +3 -3
  26. package/lib/semantic-ui/dist/components/popup.min.css +1 -1
  27. package/lib/semantic-ui/dist/components/search.css +2 -2
  28. package/lib/semantic-ui/dist/components/search.min.css +1 -1
  29. package/lib/semantic-ui/dist/components/segment.css +14 -14
  30. package/lib/semantic-ui/dist/components/segment.min.css +1 -1
  31. package/lib/semantic-ui/dist/components/tab.css +1 -1
  32. package/lib/semantic-ui/dist/components/tab.min.css +1 -1
  33. package/lib/semantic-ui/dist/components/table.css +1 -1
  34. package/lib/semantic-ui/dist/components/table.min.css +1 -1
  35. package/lib/semantic-ui/dist/less/colors.less +623 -0
  36. package/lib/semantic-ui/dist/less/default/reset.variables +3 -0
  37. package/lib/semantic-ui/dist/less/default/site.variables +1547 -0
  38. package/lib/semantic-ui/dist/less/default/variation.variables +796 -0
  39. package/lib/semantic-ui/dist/less/site/reset.variables +3 -0
  40. package/lib/semantic-ui/dist/less/site/site.variables +68 -0
  41. package/lib/semantic-ui/dist/less/site/variation.variables +792 -0
  42. package/lib/semantic-ui/dist/less/theme.less +22 -0
  43. package/lib/semantic-ui/dist/semantic-packed.css +148 -156
  44. package/lib/semantic-ui/dist/semantic.css +148 -156
  45. package/lib/semantic-ui/dist/semantic.full.css +505 -505
  46. package/lib/semantic-ui/dist/semantic.full.min.css +1 -1
  47. package/lib/semantic-ui/dist/semantic.min.css +17 -17
  48. package/package.json +1 -1
@@ -1333,7 +1333,7 @@ input::selection {
1333
1333
 
1334
1334
  .ui.secondary.buttons .button,
1335
1335
  .ui.secondary.button {
1336
- background-color: #1b1c1d;
1336
+ background-color: #294755;
1337
1337
  color: #fff;
1338
1338
  text-shadow: none;
1339
1339
  background-image: none;
@@ -1345,21 +1345,21 @@ input::selection {
1345
1345
 
1346
1346
  .ui.secondary.buttons .button:hover,
1347
1347
  .ui.secondary.button:hover {
1348
- background-color: #27292a;
1348
+ background-color: #2f5669;
1349
1349
  color: #fff;
1350
1350
  text-shadow: none;
1351
1351
  }
1352
1352
 
1353
1353
  .ui.secondary.buttons .button:focus,
1354
1354
  .ui.secondary.button:focus {
1355
- background-color: #2e3032;
1355
+ background-color: #306076;
1356
1356
  color: #fff;
1357
1357
  text-shadow: none;
1358
1358
  }
1359
1359
 
1360
1360
  .ui.secondary.buttons .button:active,
1361
1361
  .ui.secondary.button:active {
1362
- background-color: #343637;
1362
+ background-color: #3a6477;
1363
1363
  color: #fff;
1364
1364
  text-shadow: none;
1365
1365
  }
@@ -1368,14 +1368,14 @@ input::selection {
1368
1368
  .ui.secondary.buttons .active.button:active,
1369
1369
  .ui.secondary.active.button,
1370
1370
  .ui.secondary.button .active.button:active {
1371
- background-color: #27292a;
1371
+ background-color: #2d576a;
1372
1372
  color: #fff;
1373
1373
  text-shadow: none;
1374
1374
  }
1375
1375
 
1376
1376
  .ui.green.buttons .button,
1377
1377
  .ui.green.button {
1378
- background-color: #66af8b;
1378
+ background-color: #81b08c;
1379
1379
  color: #fff;
1380
1380
  text-shadow: none;
1381
1381
  background-image: none;
@@ -1387,21 +1387,21 @@ input::selection {
1387
1387
 
1388
1388
  .ui.green.buttons .button:hover,
1389
1389
  .ui.green.button:hover {
1390
- background-color: #52a97e;
1390
+ background-color: #6fa97c;
1391
1391
  color: #fff;
1392
1392
  text-shadow: none;
1393
1393
  }
1394
1394
 
1395
1395
  .ui.green.buttons .button:focus,
1396
1396
  .ui.green.button:focus {
1397
- background-color: #4aa377;
1397
+ background-color: #62a672;
1398
1398
  color: #fff;
1399
1399
  text-shadow: none;
1400
1400
  }
1401
1401
 
1402
1402
  .ui.green.buttons .button:active,
1403
1403
  .ui.green.button:active {
1404
- background-color: #4e9471;
1404
+ background-color: #629c70;
1405
1405
  color: #fff;
1406
1406
  text-shadow: none;
1407
1407
  }
@@ -1410,7 +1410,7 @@ input::selection {
1410
1410
  .ui.green.buttons .active.button:active,
1411
1411
  .ui.green.active.button,
1412
1412
  .ui.green.button .active.button:active {
1413
- background-color: #50ab7e;
1413
+ background-color: #6daa7c;
1414
1414
  color: #fff;
1415
1415
  text-shadow: none;
1416
1416
  }
@@ -1461,7 +1461,7 @@ input::selection {
1461
1461
 
1462
1462
  .ui.positive.buttons .button,
1463
1463
  .ui.positive.button {
1464
- background-color: #66af8b;
1464
+ background-color: #81b08c;
1465
1465
  color: #fff;
1466
1466
  text-shadow: none;
1467
1467
  background-image: none;
@@ -1473,21 +1473,21 @@ input::selection {
1473
1473
 
1474
1474
  .ui.positive.buttons .button:hover,
1475
1475
  .ui.positive.button:hover {
1476
- background-color: #52a97e;
1476
+ background-color: #6fa97c;
1477
1477
  color: #fff;
1478
1478
  text-shadow: none;
1479
1479
  }
1480
1480
 
1481
1481
  .ui.positive.buttons .button:focus,
1482
1482
  .ui.positive.button:focus {
1483
- background-color: #4aa377;
1483
+ background-color: #62a672;
1484
1484
  color: #fff;
1485
1485
  text-shadow: none;
1486
1486
  }
1487
1487
 
1488
1488
  .ui.positive.buttons .button:active,
1489
1489
  .ui.positive.button:active {
1490
- background-color: #4e9471;
1490
+ background-color: #629c70;
1491
1491
  color: #fff;
1492
1492
  text-shadow: none;
1493
1493
  }
@@ -1496,7 +1496,7 @@ input::selection {
1496
1496
  .ui.positive.buttons .active.button:active,
1497
1497
  .ui.positive.active.button,
1498
1498
  .ui.positive.button .active.button:active {
1499
- background-color: #50ab7e;
1499
+ background-color: #6daa7c;
1500
1500
  color: #fff;
1501
1501
  text-shadow: none;
1502
1502
  }
@@ -3787,15 +3787,15 @@ a.ui.primary.header:hover {
3787
3787
  }
3788
3788
 
3789
3789
  .ui.secondary.header {
3790
- color: #1b1c1d;
3790
+ color: #294755;
3791
3791
  }
3792
3792
 
3793
3793
  a.ui.secondary.header:hover {
3794
- color: #27292a;
3794
+ color: #2f5669;
3795
3795
  }
3796
3796
 
3797
3797
  .ui.secondary.dividing.header {
3798
- border-bottom: 2px solid #1b1c1d;
3798
+ border-bottom: 2px solid #294755;
3799
3799
  }
3800
3800
 
3801
3801
  .ui.red.header {
@@ -3835,39 +3835,39 @@ a.ui.yellow.header:hover {
3835
3835
  }
3836
3836
 
3837
3837
  .ui.olive.header {
3838
- color: #9baf66;
3838
+ color: #a0b06c;
3839
3839
  }
3840
3840
 
3841
3841
  a.ui.olive.header:hover {
3842
- color: #91a952;
3842
+ color: #97ab58;
3843
3843
  }
3844
3844
 
3845
3845
  .ui.olive.dividing.header {
3846
- border-bottom: 2px solid #9baf66;
3846
+ border-bottom: 2px solid #a0b06c;
3847
3847
  }
3848
3848
 
3849
3849
  .ui.green.header {
3850
- color: #66af8b;
3850
+ color: #81b08c;
3851
3851
  }
3852
3852
 
3853
3853
  a.ui.green.header:hover {
3854
- color: #52a97e;
3854
+ color: #6fa97c;
3855
3855
  }
3856
3856
 
3857
3857
  .ui.green.dividing.header {
3858
- border-bottom: 2px solid #66af8b;
3858
+ border-bottom: 2px solid #81b08c;
3859
3859
  }
3860
3860
 
3861
3861
  .ui.teal.header {
3862
- color: #66afac;
3862
+ color: #7fb5c2;
3863
3863
  }
3864
3864
 
3865
3865
  a.ui.teal.header:hover {
3866
- color: #52a9a6;
3866
+ color: #6aadbe;
3867
3867
  }
3868
3868
 
3869
3869
  .ui.teal.dividing.header {
3870
- border-bottom: 2px solid #66afac;
3870
+ border-bottom: 2px solid #7fb5c2;
3871
3871
  }
3872
3872
 
3873
3873
  .ui.blue.header {
@@ -3883,15 +3883,15 @@ a.ui.blue.header:hover {
3883
3883
  }
3884
3884
 
3885
3885
  .ui.violet.header {
3886
- color: #a166af;
3886
+ color: #9461ac;
3887
3887
  }
3888
3888
 
3889
3889
  a.ui.violet.header:hover {
3890
- color: #9852a9;
3890
+ color: #8950a3;
3891
3891
  }
3892
3892
 
3893
3893
  .ui.violet.dividing.header {
3894
- border-bottom: 2px solid #a166af;
3894
+ border-bottom: 2px solid #9461ac;
3895
3895
  }
3896
3896
 
3897
3897
  .ui.purple.header {
@@ -3931,15 +3931,15 @@ a.ui.brown.header:hover {
3931
3931
  }
3932
3932
 
3933
3933
  .ui.grey.header {
3934
- color: #9ab5c1;
3934
+ color: #a3b3c0;
3935
3935
  }
3936
3936
 
3937
3937
  a.ui.grey.header:hover {
3938
- color: #aac1cb;
3938
+ color: #b2c0ca;
3939
3939
  }
3940
3940
 
3941
3941
  .ui.grey.dividing.header {
3942
- border-bottom: 2px solid #9ab5c1;
3942
+ border-bottom: 2px solid #a3b3c0;
3943
3943
  }
3944
3944
 
3945
3945
  .ui.black.header {
@@ -4304,7 +4304,7 @@ i.inverted.circular.primary.icons {
4304
4304
  }
4305
4305
 
4306
4306
  i.secondary.icon.icon.icon.icon.icon.icon {
4307
- color: #1b1c1d;
4307
+ color: #294755;
4308
4308
  }
4309
4309
 
4310
4310
  i.inverted.secondary.icon.icon.icon.icon.icon.icon {
@@ -4315,7 +4315,7 @@ i.inverted.bordered.secondary.icon.icon.icon.icon.icon.icon,
4315
4315
  i.inverted.circular.secondary.icon.icon.icon.icon.icon.icon,
4316
4316
  i.inverted.bordered.secondary.icons,
4317
4317
  i.inverted.circular.secondary.icons {
4318
- background-color: #1b1c1d;
4318
+ background-color: #294755;
4319
4319
  color: #fff;
4320
4320
  }
4321
4321
 
@@ -4368,7 +4368,7 @@ i.inverted.circular.yellow.icons {
4368
4368
  }
4369
4369
 
4370
4370
  i.olive.icon.icon.icon.icon.icon.icon {
4371
- color: #9baf66;
4371
+ color: #a0b06c;
4372
4372
  }
4373
4373
 
4374
4374
  i.inverted.olive.icon.icon.icon.icon.icon.icon {
@@ -4379,12 +4379,12 @@ i.inverted.bordered.olive.icon.icon.icon.icon.icon.icon,
4379
4379
  i.inverted.circular.olive.icon.icon.icon.icon.icon.icon,
4380
4380
  i.inverted.bordered.olive.icons,
4381
4381
  i.inverted.circular.olive.icons {
4382
- background-color: #9baf66;
4382
+ background-color: #a0b06c;
4383
4383
  color: #fff;
4384
4384
  }
4385
4385
 
4386
4386
  i.green.icon.icon.icon.icon.icon.icon {
4387
- color: #66af8b;
4387
+ color: #81b08c;
4388
4388
  }
4389
4389
 
4390
4390
  i.inverted.green.icon.icon.icon.icon.icon.icon {
@@ -4395,12 +4395,12 @@ i.inverted.bordered.green.icon.icon.icon.icon.icon.icon,
4395
4395
  i.inverted.circular.green.icon.icon.icon.icon.icon.icon,
4396
4396
  i.inverted.bordered.green.icons,
4397
4397
  i.inverted.circular.green.icons {
4398
- background-color: #66af8b;
4398
+ background-color: #81b08c;
4399
4399
  color: #fff;
4400
4400
  }
4401
4401
 
4402
4402
  i.teal.icon.icon.icon.icon.icon.icon {
4403
- color: #66afac;
4403
+ color: #7fb5c2;
4404
4404
  }
4405
4405
 
4406
4406
  i.inverted.teal.icon.icon.icon.icon.icon.icon {
@@ -4411,7 +4411,7 @@ i.inverted.bordered.teal.icon.icon.icon.icon.icon.icon,
4411
4411
  i.inverted.circular.teal.icon.icon.icon.icon.icon.icon,
4412
4412
  i.inverted.bordered.teal.icons,
4413
4413
  i.inverted.circular.teal.icons {
4414
- background-color: #66afac;
4414
+ background-color: #7fb5c2;
4415
4415
  color: #fff;
4416
4416
  }
4417
4417
 
@@ -4432,7 +4432,7 @@ i.inverted.circular.blue.icons {
4432
4432
  }
4433
4433
 
4434
4434
  i.violet.icon.icon.icon.icon.icon.icon {
4435
- color: #a166af;
4435
+ color: #9461ac;
4436
4436
  }
4437
4437
 
4438
4438
  i.inverted.violet.icon.icon.icon.icon.icon.icon {
@@ -4443,7 +4443,7 @@ i.inverted.bordered.violet.icon.icon.icon.icon.icon.icon,
4443
4443
  i.inverted.circular.violet.icon.icon.icon.icon.icon.icon,
4444
4444
  i.inverted.bordered.violet.icons,
4445
4445
  i.inverted.circular.violet.icons {
4446
- background-color: #a166af;
4446
+ background-color: #9461ac;
4447
4447
  color: #fff;
4448
4448
  }
4449
4449
 
@@ -4496,7 +4496,7 @@ i.inverted.circular.brown.icons {
4496
4496
  }
4497
4497
 
4498
4498
  i.grey.icon.icon.icon.icon.icon.icon {
4499
- color: #9ab5c1;
4499
+ color: #a3b3c0;
4500
4500
  }
4501
4501
 
4502
4502
  i.inverted.grey.icon.icon.icon.icon.icon.icon {
@@ -4507,7 +4507,7 @@ i.inverted.bordered.grey.icon.icon.icon.icon.icon.icon,
4507
4507
  i.inverted.circular.grey.icon.icon.icon.icon.icon.icon,
4508
4508
  i.inverted.bordered.grey.icons,
4509
4509
  i.inverted.circular.grey.icons {
4510
- background-color: #9ab5c1;
4510
+ background-color: #a3b3c0;
4511
4511
  color: #fff;
4512
4512
  }
4513
4513
 
@@ -13304,11 +13304,11 @@ img.ui.bordered.image {
13304
13304
  /* browsers require these rules separate */
13305
13305
 
13306
13306
  .ui.input > input::-ms-input-placeholder {
13307
- color: #9ab5c1;
13307
+ color: #a3b3c0;
13308
13308
  }
13309
13309
 
13310
13310
  .ui.input > input::placeholder {
13311
- color: #9ab5c1;
13311
+ color: #a3b3c0;
13312
13312
  }
13313
13313
 
13314
13314
  .ui.input > input::-moz-placeholder {
@@ -13363,7 +13363,7 @@ img.ui.bordered.image {
13363
13363
  width: 1.28571429em;
13364
13364
  height: 1.28571429em;
13365
13365
  animation: loader 0.6s infinite linear;
13366
- border: 0.2em solid #9ab5c1;
13366
+ border: 0.2em solid #a3b3c0;
13367
13367
  border-radius: 500rem;
13368
13368
  box-shadow: 0 0 0 1px transparent;
13369
13369
  }
@@ -13382,12 +13382,12 @@ img.ui.bordered.image {
13382
13382
 
13383
13383
  .ui.input.focus > input::-ms-input-placeholder,
13384
13384
  .ui.input > input:focus::-ms-input-placeholder {
13385
- color: #9ab5c1;
13385
+ color: #a3b3c0;
13386
13386
  }
13387
13387
 
13388
13388
  .ui.input.focus > input::placeholder,
13389
13389
  .ui.input > input:focus::placeholder {
13390
- color: #9ab5c1;
13390
+ color: #a3b3c0;
13391
13391
  }
13392
13392
 
13393
13393
  /* --------------------
@@ -14037,13 +14037,13 @@ input[type="file"].ui.file.input:focus + label.ui.primary.button,
14037
14037
 
14038
14038
  input[type="file"].ui.file.input:focus + label.ui.secondary.button,
14039
14039
  .ui.file.input input[type="file"]:focus + label.ui.secondary.button {
14040
- background-color: #27292a;
14040
+ background-color: #2f5669;
14041
14041
  color: #fff;
14042
14042
  }
14043
14043
 
14044
14044
  input[type="file"].ui.file.input:focus + label.ui.green.button,
14045
14045
  .ui.file.input input[type="file"]:focus + label.ui.green.button {
14046
- background-color: #52a97e;
14046
+ background-color: #6fa97c;
14047
14047
  color: #fff;
14048
14048
  }
14049
14049
 
@@ -14077,24 +14077,24 @@ input[type="file"].ui.primary.file.input::file-selector-button:hover,
14077
14077
 
14078
14078
  input[type="file"].ui.secondary.file.input::-webkit-file-upload-button,
14079
14079
  .ui.secondary.file.input input[type="file"]::-webkit-file-upload-button {
14080
- background: #1b1c1d;
14080
+ background: #294755;
14081
14081
  color: #fff;
14082
14082
  }
14083
14083
 
14084
14084
  input[type="file"].ui.secondary.file.input::file-selector-button,
14085
14085
  .ui.secondary.file.input input[type="file"]::file-selector-button {
14086
- background: #1b1c1d;
14086
+ background: #294755;
14087
14087
  color: #fff;
14088
14088
  }
14089
14089
 
14090
14090
  input[type="file"].ui.secondary.file.input::-webkit-file-upload-button:hover,
14091
14091
  .ui.secondary.file.input input[type="file"]::-webkit-file-upload-button:hover {
14092
- background: #27292a;
14092
+ background: #2f5669;
14093
14093
  }
14094
14094
 
14095
14095
  input[type="file"].ui.secondary.file.input::file-selector-button:hover,
14096
14096
  .ui.secondary.file.input input[type="file"]::file-selector-button:hover {
14097
- background: #27292a;
14097
+ background: #2f5669;
14098
14098
  }
14099
14099
 
14100
14100
  /* --------------------
@@ -14905,8 +14905,8 @@ a.ui.ui.ui.basic.primary.label:hover {
14905
14905
 
14906
14906
  .ui.secondary.labels .label,
14907
14907
  .ui.ui.ui.secondary.label {
14908
- background-color: #1b1c1d;
14909
- border-color: #1b1c1d;
14908
+ background-color: #294755;
14909
+ border-color: #294755;
14910
14910
  color: rgba(255, 255, 255, 0.9);
14911
14911
  }
14912
14912
 
@@ -14914,15 +14914,15 @@ a.ui.ui.ui.basic.primary.label:hover {
14914
14914
 
14915
14915
  .ui.secondary.labels a.label:hover,
14916
14916
  a.ui.ui.ui.secondary.label:hover {
14917
- background-color: #27292a;
14918
- border-color: #27292a;
14917
+ background-color: #2f5669;
14918
+ border-color: #2f5669;
14919
14919
  color: #fff;
14920
14920
  }
14921
14921
 
14922
14922
  /* Ribbon */
14923
14923
 
14924
14924
  .ui.ui.ui.secondary.ribbon.label {
14925
- border-color: #020203;
14925
+ border-color: #182a33;
14926
14926
  }
14927
14927
 
14928
14928
  /* Basic */
@@ -14930,15 +14930,15 @@ a.ui.ui.ui.secondary.label:hover {
14930
14930
  .ui.basic.labels .secondary.label,
14931
14931
  .ui.ui.ui.basic.secondary.label {
14932
14932
  background: none #fff;
14933
- border-color: #1b1c1d;
14934
- color: #1b1c1d;
14933
+ border-color: #294755;
14934
+ color: #294755;
14935
14935
  }
14936
14936
 
14937
14937
  .ui.basic.labels a.secondary.label:hover,
14938
14938
  a.ui.ui.ui.basic.secondary.label:hover {
14939
14939
  background: none #fff;
14940
- border-color: #27292a;
14941
- color: #27292a;
14940
+ border-color: #2f5669;
14941
+ color: #2f5669;
14942
14942
  }
14943
14943
 
14944
14944
  .ui.red.labels .label,
@@ -15057,8 +15057,8 @@ a.ui.ui.ui.basic.yellow.label:hover {
15057
15057
 
15058
15058
  .ui.olive.labels .label,
15059
15059
  .ui.ui.ui.olive.label {
15060
- background-color: #9baf66;
15061
- border-color: #9baf66;
15060
+ background-color: #a0b06c;
15061
+ border-color: #a0b06c;
15062
15062
  color: #fff;
15063
15063
  }
15064
15064
 
@@ -15066,15 +15066,15 @@ a.ui.ui.ui.basic.yellow.label:hover {
15066
15066
 
15067
15067
  .ui.olive.labels a.label:hover,
15068
15068
  a.ui.ui.ui.olive.label:hover {
15069
- background-color: #91a952;
15070
- border-color: #91a952;
15069
+ background-color: #97ab58;
15070
+ border-color: #97ab58;
15071
15071
  color: #fff;
15072
15072
  }
15073
15073
 
15074
15074
  /* Ribbon */
15075
15075
 
15076
15076
  .ui.ui.ui.olive.ribbon.label {
15077
- border-color: #81944e;
15077
+ border-color: #879851;
15078
15078
  }
15079
15079
 
15080
15080
  /* Basic */
@@ -15082,21 +15082,21 @@ a.ui.ui.ui.olive.label:hover {
15082
15082
  .ui.basic.labels .olive.label,
15083
15083
  .ui.ui.ui.basic.olive.label {
15084
15084
  background: none #fff;
15085
- border-color: #9baf66;
15086
- color: #9baf66;
15085
+ border-color: #a0b06c;
15086
+ color: #a0b06c;
15087
15087
  }
15088
15088
 
15089
15089
  .ui.basic.labels a.olive.label:hover,
15090
15090
  a.ui.ui.ui.basic.olive.label:hover {
15091
15091
  background: none #fff;
15092
- border-color: #91a952;
15093
- color: #91a952;
15092
+ border-color: #97ab58;
15093
+ color: #97ab58;
15094
15094
  }
15095
15095
 
15096
15096
  .ui.green.labels .label,
15097
15097
  .ui.ui.ui.green.label {
15098
- background-color: #66af8b;
15099
- border-color: #66af8b;
15098
+ background-color: #81b08c;
15099
+ border-color: #81b08c;
15100
15100
  color: #fff;
15101
15101
  }
15102
15102
 
@@ -15104,15 +15104,15 @@ a.ui.ui.ui.basic.olive.label:hover {
15104
15104
 
15105
15105
  .ui.green.labels a.label:hover,
15106
15106
  a.ui.ui.ui.green.label:hover {
15107
- background-color: #52a97e;
15108
- border-color: #52a97e;
15107
+ background-color: #6fa97c;
15108
+ border-color: #6fa97c;
15109
15109
  color: #fff;
15110
15110
  }
15111
15111
 
15112
15112
  /* Ribbon */
15113
15113
 
15114
15114
  .ui.ui.ui.green.ribbon.label {
15115
- border-color: #4e9471;
15115
+ border-color: #629c70;
15116
15116
  }
15117
15117
 
15118
15118
  /* Basic */
@@ -15120,21 +15120,21 @@ a.ui.ui.ui.green.label:hover {
15120
15120
  .ui.basic.labels .green.label,
15121
15121
  .ui.ui.ui.basic.green.label {
15122
15122
  background: none #fff;
15123
- border-color: #66af8b;
15124
- color: #66af8b;
15123
+ border-color: #81b08c;
15124
+ color: #81b08c;
15125
15125
  }
15126
15126
 
15127
15127
  .ui.basic.labels a.green.label:hover,
15128
15128
  a.ui.ui.ui.basic.green.label:hover {
15129
15129
  background: none #fff;
15130
- border-color: #52a97e;
15131
- color: #52a97e;
15130
+ border-color: #6fa97c;
15131
+ color: #6fa97c;
15132
15132
  }
15133
15133
 
15134
15134
  .ui.teal.labels .label,
15135
15135
  .ui.ui.ui.teal.label {
15136
- background-color: #66afac;
15137
- border-color: #66afac;
15136
+ background-color: #7fb5c2;
15137
+ border-color: #7fb5c2;
15138
15138
  color: #fff;
15139
15139
  }
15140
15140
 
@@ -15142,15 +15142,15 @@ a.ui.ui.ui.basic.green.label:hover {
15142
15142
 
15143
15143
  .ui.teal.labels a.label:hover,
15144
15144
  a.ui.ui.ui.teal.label:hover {
15145
- background-color: #52a9a6;
15146
- border-color: #52a9a6;
15145
+ background-color: #6aadbe;
15146
+ border-color: #6aadbe;
15147
15147
  color: #fff;
15148
15148
  }
15149
15149
 
15150
15150
  /* Ribbon */
15151
15151
 
15152
15152
  .ui.ui.ui.teal.ribbon.label {
15153
- border-color: #4e9491;
15153
+ border-color: #5ca1b2;
15154
15154
  }
15155
15155
 
15156
15156
  /* Basic */
@@ -15158,15 +15158,15 @@ a.ui.ui.ui.teal.label:hover {
15158
15158
  .ui.basic.labels .teal.label,
15159
15159
  .ui.ui.ui.basic.teal.label {
15160
15160
  background: none #fff;
15161
- border-color: #66afac;
15162
- color: #66afac;
15161
+ border-color: #7fb5c2;
15162
+ color: #7fb5c2;
15163
15163
  }
15164
15164
 
15165
15165
  .ui.basic.labels a.teal.label:hover,
15166
15166
  a.ui.ui.ui.basic.teal.label:hover {
15167
15167
  background: none #fff;
15168
- border-color: #52a9a6;
15169
- color: #52a9a6;
15168
+ border-color: #6aadbe;
15169
+ color: #6aadbe;
15170
15170
  }
15171
15171
 
15172
15172
  .ui.blue.labels .label,
@@ -15209,8 +15209,8 @@ a.ui.ui.ui.basic.blue.label:hover {
15209
15209
 
15210
15210
  .ui.violet.labels .label,
15211
15211
  .ui.ui.ui.violet.label {
15212
- background-color: #a166af;
15213
- border-color: #a166af;
15212
+ background-color: #9461ac;
15213
+ border-color: #9461ac;
15214
15214
  color: #fff;
15215
15215
  }
15216
15216
 
@@ -15218,15 +15218,15 @@ a.ui.ui.ui.basic.blue.label:hover {
15218
15218
 
15219
15219
  .ui.violet.labels a.label:hover,
15220
15220
  a.ui.ui.ui.violet.label:hover {
15221
- background-color: #9852a9;
15222
- border-color: #9852a9;
15221
+ background-color: #8950a3;
15222
+ border-color: #8950a3;
15223
15223
  color: #fff;
15224
15224
  }
15225
15225
 
15226
15226
  /* Ribbon */
15227
15227
 
15228
15228
  .ui.ui.ui.violet.ribbon.label {
15229
- border-color: #874e94;
15229
+ border-color: #794b8f;
15230
15230
  }
15231
15231
 
15232
15232
  /* Basic */
@@ -15234,15 +15234,15 @@ a.ui.ui.ui.violet.label:hover {
15234
15234
  .ui.basic.labels .violet.label,
15235
15235
  .ui.ui.ui.basic.violet.label {
15236
15236
  background: none #fff;
15237
- border-color: #a166af;
15238
- color: #a166af;
15237
+ border-color: #9461ac;
15238
+ color: #9461ac;
15239
15239
  }
15240
15240
 
15241
15241
  .ui.basic.labels a.violet.label:hover,
15242
15242
  a.ui.ui.ui.basic.violet.label:hover {
15243
15243
  background: none #fff;
15244
- border-color: #9852a9;
15245
- color: #9852a9;
15244
+ border-color: #8950a3;
15245
+ color: #8950a3;
15246
15246
  }
15247
15247
 
15248
15248
  .ui.purple.labels .label,
@@ -15361,8 +15361,8 @@ a.ui.ui.ui.basic.brown.label:hover {
15361
15361
 
15362
15362
  .ui.grey.labels .label,
15363
15363
  .ui.ui.ui.grey.label {
15364
- background-color: #9ab5c1;
15365
- border-color: #9ab5c1;
15364
+ background-color: #a3b3c0;
15365
+ border-color: #a3b3c0;
15366
15366
  color: #fff;
15367
15367
  }
15368
15368
 
@@ -15370,15 +15370,15 @@ a.ui.ui.ui.basic.brown.label:hover {
15370
15370
 
15371
15371
  .ui.grey.labels a.label:hover,
15372
15372
  a.ui.ui.ui.grey.label:hover {
15373
- background-color: #aac1cb;
15374
- border-color: #aac1cb;
15373
+ background-color: #b2c0ca;
15374
+ border-color: #b2c0ca;
15375
15375
  color: #fff;
15376
15376
  }
15377
15377
 
15378
15378
  /* Ribbon */
15379
15379
 
15380
15380
  .ui.ui.ui.grey.ribbon.label {
15381
- border-color: #7a9eae;
15381
+ border-color: #859aab;
15382
15382
  }
15383
15383
 
15384
15384
  /* Basic */
@@ -15386,15 +15386,15 @@ a.ui.ui.ui.grey.label:hover {
15386
15386
  .ui.basic.labels .grey.label,
15387
15387
  .ui.ui.ui.basic.grey.label {
15388
15388
  background: none #fff;
15389
- border-color: #9ab5c1;
15390
- color: #9ab5c1;
15389
+ border-color: #a3b3c0;
15390
+ color: #a3b3c0;
15391
15391
  }
15392
15392
 
15393
15393
  .ui.basic.labels a.grey.label:hover,
15394
15394
  a.ui.ui.ui.basic.grey.label:hover {
15395
15395
  background: none #fff;
15396
- border-color: #aac1cb;
15397
- color: #aac1cb;
15396
+ border-color: #b2c0ca;
15397
+ color: #b2c0ca;
15398
15398
  }
15399
15399
 
15400
15400
  .ui.black.labels .label,
@@ -16676,7 +16676,7 @@ ol.ui.suffixed.list li::before,
16676
16676
  width: 100%;
16677
16677
  height: 100%;
16678
16678
  animation: loader 0.6s infinite linear;
16679
- border: 0.2em solid #9ab5c1;
16679
+ border: 0.2em solid #a3b3c0;
16680
16680
  border-radius: 500rem;
16681
16681
  box-shadow: 0 0 0 1px transparent;
16682
16682
  }
@@ -16959,7 +16959,7 @@ ol.ui.suffixed.list li::before,
16959
16959
  .ui.ui.ui.ui.secondary.loading .input > i.icon::after,
16960
16960
  .ui.ui.ui.ui.secondary.loading > i.icon::after,
16961
16961
  .ui.ui.ui.secondary.loader::after {
16962
- color: #1b1c1d;
16962
+ color: #294755;
16963
16963
  }
16964
16964
 
16965
16965
  .ui.inverted.secondary.elastic.loader::before,
@@ -17014,7 +17014,7 @@ ol.ui.suffixed.list li::before,
17014
17014
 
17015
17015
  .ui.elastic.basic.loading.button::before,
17016
17016
  .ui.elastic.basic.loading.button::after {
17017
- color: #9ab5c1;
17017
+ color: #a3b3c0;
17018
17018
  }
17019
17019
 
17020
17020
  /* -------------------
@@ -17097,12 +17097,12 @@ ol.ui.suffixed.list li::before,
17097
17097
 
17098
17098
  .ui.segment {
17099
17099
  position: relative;
17100
- background: #e6e5ea;
17100
+ background: #e6e5e9;
17101
17101
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
17102
17102
  margin: 1rem 0;
17103
17103
  padding: 1em 1em;
17104
17104
  border-radius: 0;
17105
- border: 1px solid #e6e5ea;
17105
+ border: 1px solid #e6e5e9;
17106
17106
  }
17107
17107
 
17108
17108
  .ui.segment:first-child {
@@ -17173,8 +17173,8 @@ ol.ui.suffixed.list li::before,
17173
17173
  /* Table */
17174
17174
 
17175
17175
  .ui.basic.table.segment {
17176
- background: #e6e5ea;
17177
- border: 1px solid #e6e5ea;
17176
+ background: #e6e5e9;
17177
+ border: 1px solid #e6e5e9;
17178
17178
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
17179
17179
  }
17180
17180
 
@@ -17359,7 +17359,7 @@ ol.ui.suffixed.list li::before,
17359
17359
  flex-direction: column;
17360
17360
  position: relative;
17361
17361
  margin: 1rem 0;
17362
- border: 1px solid #e6e5ea;
17362
+ border: 1px solid #e6e5e9;
17363
17363
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
17364
17364
  border-radius: 0;
17365
17365
  }
@@ -17382,7 +17382,7 @@ ol.ui.suffixed.list li::before,
17382
17382
  width: auto;
17383
17383
  box-shadow: none;
17384
17384
  border: none;
17385
- border-top: 1px solid #e6e5ea;
17385
+ border-top: 1px solid #e6e5e9;
17386
17386
  }
17387
17387
 
17388
17388
  .ui.segments:not(.horizontal) > .segment:first-child {
@@ -17414,7 +17414,7 @@ ol.ui.suffixed.list li::before,
17414
17414
  /* Nested Group */
17415
17415
 
17416
17416
  .ui.segments > .ui.segments {
17417
- border-top: 1px solid #e6e5ea;
17417
+ border-top: 1px solid #e6e5e9;
17418
17418
  margin: 1rem;
17419
17419
  }
17420
17420
 
@@ -17436,7 +17436,7 @@ ol.ui.suffixed.list li::before,
17436
17436
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
17437
17437
  margin: 1rem 0;
17438
17438
  border-radius: 0;
17439
- border: 1px solid #e6e5ea;
17439
+ border: 1px solid #e6e5e9;
17440
17440
  }
17441
17441
 
17442
17442
  .ui.wrapping.horizontal.segments,
@@ -17452,7 +17452,7 @@ ol.ui.suffixed.list li::before,
17452
17452
  border-radius: 0;
17453
17453
  border: none;
17454
17454
  box-shadow: none;
17455
- border-top: 1px solid #e6e5ea;
17455
+ border-top: 1px solid #e6e5e9;
17456
17456
  }
17457
17457
 
17458
17458
  /* Horizontal Segment */
@@ -17537,7 +17537,7 @@ ol.ui.suffixed.list li::before,
17537
17537
  width: 3em;
17538
17538
  height: 3em;
17539
17539
  animation: loader 0.6s infinite linear;
17540
- border: 0.2em solid #9ab5c1;
17540
+ border: 0.2em solid #a3b3c0;
17541
17541
  border-radius: 500rem;
17542
17542
  box-shadow: 0 0 0 1px transparent;
17543
17543
  visibility: visible;
@@ -17580,7 +17580,7 @@ ol.ui.suffixed.list li::before,
17580
17580
  }
17581
17581
 
17582
17582
  .ui.ui.ui.ui.ui.grey.segment {
17583
- border-top: 2px solid #9ab5c1;
17583
+ border-top: 2px solid #a3b3c0;
17584
17584
  }
17585
17585
 
17586
17586
  /* -------------------
@@ -17621,7 +17621,7 @@ ol.ui.suffixed.list li::before,
17621
17621
  /* Secondary */
17622
17622
 
17623
17623
  .ui.secondary.segment {
17624
- background: #9ab5c1;
17624
+ background: #a3b3c0;
17625
17625
  color: white;
17626
17626
  }
17627
17627
 
@@ -17780,11 +17780,11 @@ ol.ui.suffixed.list li::before,
17780
17780
 
17781
17781
  .ui.inverted.white.segment {
17782
17782
  background-color: #f5f5f5 !important;
17783
- color: #9ab5c1 !important;
17783
+ color: #a3b3c0 !important;
17784
17784
  }
17785
17785
 
17786
17786
  .ui.grey.segment:not(.inverted) {
17787
- border-top: 2px solid #9ab5c1;
17787
+ border-top: 2px solid #a3b3c0;
17788
17788
  }
17789
17789
  /*!
17790
17790
  * # Fomantic-UI 2.9.4 - Form
@@ -18181,19 +18181,19 @@ ol.ui.suffixed.list li::before,
18181
18181
  /* browsers require these rules separate */
18182
18182
 
18183
18183
  .ui.form ::-ms-input-placeholder {
18184
- color: #9ab5c1;
18184
+ color: #a3b3c0;
18185
18185
  }
18186
18186
 
18187
18187
  .ui.form ::placeholder {
18188
- color: #9ab5c1;
18188
+ color: #a3b3c0;
18189
18189
  }
18190
18190
 
18191
18191
  .ui.form :focus::-ms-input-placeholder {
18192
- color: #9ab5c1;
18192
+ color: #a3b3c0;
18193
18193
  }
18194
18194
 
18195
18195
  .ui.form :focus::placeholder {
18196
- color: #9ab5c1;
18196
+ color: #a3b3c0;
18197
18197
  }
18198
18198
 
18199
18199
  /* --------------------
@@ -18339,14 +18339,6 @@ ol.ui.suffixed.list li::before,
18339
18339
  box-shadow: none;
18340
18340
  }
18341
18341
 
18342
- .ui.form:not(.initial) .field input:invalid {
18343
- color: #9f3a38;
18344
- background: #fff6f6;
18345
- border-color: #e0b4b4;
18346
- border-radius: "";
18347
- box-shadow: none;
18348
- }
18349
-
18350
18342
  .ui.form .field.error textarea:focus,
18351
18343
  .ui.form .field.error select:focus,
18352
18344
  .ui.form .field.error input:not([type]):focus,
@@ -20713,7 +20705,7 @@ ol.ui.suffixed.list li::before,
20713
20705
  .ui.grid > .secondary.row,
20714
20706
  .ui.grid > .secondary.column,
20715
20707
  .ui.grid > .row > .secondary.column {
20716
- background-color: #1b1c1d;
20708
+ background-color: #294755;
20717
20709
  color: #fff;
20718
20710
  }
20719
20711
 
@@ -22552,7 +22544,7 @@ Floated Menu / Item
22552
22544
  }
22553
22545
 
22554
22546
  .ui.inverted.pointing.menu .secondary.active.item::after {
22555
- background-color: #1b1c1d;
22547
+ background-color: #294755;
22556
22548
  }
22557
22549
 
22558
22550
  /* --------------
@@ -23188,11 +23180,11 @@ Floated Menu / Item
23188
23180
 
23189
23181
  .ui.secondary.message,
23190
23182
  .ui.attached.secondary.message {
23191
- box-shadow: 0 0 0 1px #1b1c1d inset, 0 0 0 0 rgba(0, 0, 0, 0);
23183
+ box-shadow: 0 0 0 1px #294755 inset, 0 0 0 0 rgba(0, 0, 0, 0);
23192
23184
  }
23193
23185
 
23194
23186
  .ui.floating.secondary.message {
23195
- box-shadow: 0 0 0 1px #1b1c1d inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
23187
+ box-shadow: 0 0 0 1px #294755 inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
23196
23188
  }
23197
23189
 
23198
23190
  .ui.secondary.message .header {
@@ -24180,7 +24172,7 @@ Floated Menu / Item
24180
24172
  }
24181
24173
 
24182
24174
  .ui.secondary.table {
24183
- border-top: 0.2em solid #1b1c1d;
24175
+ border-top: 0.2em solid #294755;
24184
24176
  }
24185
24177
 
24186
24178
  /* Same color for background and color to camouflage the scrollbar */
@@ -25226,7 +25218,7 @@ a.ui.primary.card:hover,
25226
25218
  .ui.secondary.cards > .card,
25227
25219
  .ui.cards > .secondary.card,
25228
25220
  .ui.secondary.card {
25229
- box-shadow: 0 0 0 1px #d4d4d5, 0 2px 0 0 #1b1c1d, 0 1px 3px 0 #d4d4d5;
25221
+ box-shadow: 0 0 0 1px #d4d4d5, 0 2px 0 0 #294755, 0 1px 3px 0 #d4d4d5;
25230
25222
  }
25231
25223
 
25232
25224
  .ui.cards a.secondary.card:hover,
@@ -25235,7 +25227,7 @@ a.ui.primary.card:hover,
25235
25227
  .ui.link.cards .secondary.card:not(.icon):hover,
25236
25228
  a.ui.secondary.card:hover,
25237
25229
  .ui.link.secondary.card:hover {
25238
- box-shadow: 0 0 0 1px #d4d4d5, 0 2px 0 0 #27292a, 0 1px 3px 0 #bcbdbd;
25230
+ box-shadow: 0 0 0 1px #d4d4d5, 0 2px 0 0 #2f5669, 0 1px 3px 0 #bcbdbd;
25239
25231
  }
25240
25232
 
25241
25233
  /* --------------
@@ -28622,7 +28614,7 @@ select.ui.dropdown {
28622
28614
  }
28623
28615
 
28624
28616
  .ui.active.search.dropdown input.search:focus + .text {
28625
- color: #9ab5c1;
28617
+ color: #a3b3c0;
28626
28618
  }
28627
28619
 
28628
28620
  .ui.search.dropdown.button > span.sizer {
@@ -28862,12 +28854,12 @@ select.ui.dropdown {
28862
28854
 
28863
28855
  .ui.dropdown > .default.text,
28864
28856
  .ui.default.dropdown > .text {
28865
- color: #9ab5c1;
28857
+ color: #a3b3c0;
28866
28858
  }
28867
28859
 
28868
28860
  .ui.dropdown > input:focus ~ .default.text,
28869
28861
  .ui.default.dropdown > input:focus ~ .text {
28870
- color: #9ab5c1;
28862
+ color: #a3b3c0;
28871
28863
  }
28872
28864
 
28873
28865
  /* --------------------
@@ -28904,7 +28896,7 @@ select.ui.dropdown {
28904
28896
  width: 1.28571429em;
28905
28897
  height: 1.28571429em;
28906
28898
  animation: loader 0.6s infinite linear;
28907
- border: 0.2em solid #9ab5c1;
28899
+ border: 0.2em solid #a3b3c0;
28908
28900
  border-radius: 500rem;
28909
28901
  }
28910
28902
 
@@ -31296,7 +31288,7 @@ select.ui.dropdown {
31296
31288
  width: 2em;
31297
31289
  height: 2em;
31298
31290
  animation: loader 0.6s infinite linear;
31299
- border: 0.2em solid #9ab5c1;
31291
+ border: 0.2em solid #a3b3c0;
31300
31292
  border-radius: 500rem;
31301
31293
  box-shadow: 0 0 0 1px transparent;
31302
31294
  visibility: visible;
@@ -31400,14 +31392,14 @@ select.ui.dropdown {
31400
31392
  .ui.secondary.popup,
31401
31393
  [data-tooltip][data-variation~="secondary"]::after,
31402
31394
  [data-tooltip][data-variation~="secondary"]::before {
31403
- background: #1b1c1d;
31395
+ background: #294755;
31404
31396
  color: #fff;
31405
31397
  border: none;
31406
31398
  }
31407
31399
 
31408
31400
  .ui.ui.ui.secondary.loading.popup::before,
31409
31401
  .ui.secondary.loading.popup {
31410
- background: #65696c;
31402
+ background: #639ab4;
31411
31403
  }
31412
31404
 
31413
31405
  .ui.ui.ui.secondary.popup::before,
@@ -31639,7 +31631,7 @@ select.ui.dropdown {
31639
31631
 
31640
31632
  .ui.search > .results .result .price {
31641
31633
  float: right;
31642
- color: #66af8b;
31634
+ color: #81b08c;
31643
31635
  }
31644
31636
 
31645
31637
  /* --------------
@@ -31714,7 +31706,7 @@ select.ui.dropdown {
31714
31706
  width: 1.28571429em;
31715
31707
  height: 1.28571429em;
31716
31708
  animation: loader 0.6s infinite linear;
31717
- border: 0.2em solid #9ab5c1;
31709
+ border: 0.2em solid #a3b3c0;
31718
31710
  border-radius: 500rem;
31719
31711
  box-shadow: 0 0 0 1px transparent;
31720
31712
  }
@@ -32115,7 +32107,7 @@ select.ui.dropdown {
32115
32107
  width: 2.5em;
32116
32108
  height: 2.5em;
32117
32109
  animation: loader 0.6s infinite linear;
32118
- border: 0.2em solid #9ab5c1;
32110
+ border: 0.2em solid #a3b3c0;
32119
32111
  border-radius: 500rem;
32120
32112
  box-shadow: 0 0 0 1px transparent;
32121
32113
  }