@northdata/fomantic-ui 2.9.407 → 2.9.408
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/table.css +116 -0
- package/lib/semantic-ui/dist/components/table.min.css +1 -1
- package/lib/semantic-ui/dist/less/site/variation.variables +1 -1
- package/lib/semantic-ui/dist/semantic-packed.css +136 -0
- package/lib/semantic-ui/dist/semantic.css +136 -0
- package/lib/semantic-ui/dist/semantic.full.css +135 -0
- package/lib/semantic-ui/dist/semantic.full.min.css +1 -1
- package/lib/semantic-ui/dist/semantic.min.css +1 -1
- package/package.json +1 -1
|
@@ -36486,6 +36486,141 @@ Floated Menu / Item
|
|
|
36486
36486
|
/*******************************
|
|
36487
36487
|
Site Overrides
|
|
36488
36488
|
*******************************/
|
|
36489
|
+
|
|
36490
|
+
.ui.primary.table {
|
|
36491
|
+
border-top-left-radius: 0.28571429em;
|
|
36492
|
+
border-top-right-radius: 0.28571429em;
|
|
36493
|
+
}
|
|
36494
|
+
|
|
36495
|
+
.ui.primary.table > thead > tr > .colored-header {
|
|
36496
|
+
background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%) !important;
|
|
36497
|
+
}
|
|
36498
|
+
|
|
36499
|
+
.ui.secondary.table {
|
|
36500
|
+
border-top-left-radius: 0.28571429em;
|
|
36501
|
+
border-top-right-radius: 0.28571429em;
|
|
36502
|
+
}
|
|
36503
|
+
|
|
36504
|
+
.ui.secondary.table > thead > tr > .colored-header {
|
|
36505
|
+
background: linear-gradient(to bottom, rgba(41, 71, 85, 0.12), #f9fafb 80%) !important;
|
|
36506
|
+
}
|
|
36507
|
+
|
|
36508
|
+
.ui.red.table {
|
|
36509
|
+
border-top-left-radius: 0.28571429em;
|
|
36510
|
+
border-top-right-radius: 0.28571429em;
|
|
36511
|
+
}
|
|
36512
|
+
|
|
36513
|
+
.ui.red.table > thead > tr > .colored-header {
|
|
36514
|
+
background: linear-gradient(to bottom, rgba(175, 78, 74, 0.12), #f9fafb 80%) !important;
|
|
36515
|
+
}
|
|
36516
|
+
|
|
36517
|
+
.ui.orange.table {
|
|
36518
|
+
border-top-left-radius: 0.28571429em;
|
|
36519
|
+
border-top-right-radius: 0.28571429em;
|
|
36520
|
+
}
|
|
36521
|
+
|
|
36522
|
+
.ui.orange.table > thead > tr > .colored-header {
|
|
36523
|
+
background: linear-gradient(to bottom, rgba(242, 113, 28, 0.12), #f9fafb 80%) !important;
|
|
36524
|
+
}
|
|
36525
|
+
|
|
36526
|
+
.ui.yellow.table {
|
|
36527
|
+
border-top-left-radius: 0.28571429em;
|
|
36528
|
+
border-top-right-radius: 0.28571429em;
|
|
36529
|
+
}
|
|
36530
|
+
|
|
36531
|
+
.ui.yellow.table > thead > tr > .colored-header {
|
|
36532
|
+
background: linear-gradient(to bottom, rgba(251, 189, 8, 0.12), #f9fafb 80%) !important;
|
|
36533
|
+
}
|
|
36534
|
+
|
|
36535
|
+
.ui.olive.table {
|
|
36536
|
+
border-top-left-radius: 0.28571429em;
|
|
36537
|
+
border-top-right-radius: 0.28571429em;
|
|
36538
|
+
}
|
|
36539
|
+
|
|
36540
|
+
.ui.olive.table > thead > tr > .colored-header {
|
|
36541
|
+
background: linear-gradient(to bottom, rgba(160, 176, 108, 0.12), #f9fafb 80%) !important;
|
|
36542
|
+
}
|
|
36543
|
+
|
|
36544
|
+
.ui.green.table {
|
|
36545
|
+
border-top-left-radius: 0.28571429em;
|
|
36546
|
+
border-top-right-radius: 0.28571429em;
|
|
36547
|
+
}
|
|
36548
|
+
|
|
36549
|
+
.ui.green.table > thead > tr > .colored-header {
|
|
36550
|
+
background: linear-gradient(to bottom, rgba(129, 176, 140, 0.12), #f9fafb 80%) !important;
|
|
36551
|
+
}
|
|
36552
|
+
|
|
36553
|
+
.ui.teal.table {
|
|
36554
|
+
border-top-left-radius: 0.28571429em;
|
|
36555
|
+
border-top-right-radius: 0.28571429em;
|
|
36556
|
+
}
|
|
36557
|
+
|
|
36558
|
+
.ui.teal.table > thead > tr > .colored-header {
|
|
36559
|
+
background: linear-gradient(to bottom, rgba(127, 181, 194, 0.12), #f9fafb 80%) !important;
|
|
36560
|
+
}
|
|
36561
|
+
|
|
36562
|
+
.ui.blue.table {
|
|
36563
|
+
border-top-left-radius: 0.28571429em;
|
|
36564
|
+
border-top-right-radius: 0.28571429em;
|
|
36565
|
+
}
|
|
36566
|
+
|
|
36567
|
+
.ui.blue.table > thead > tr > .colored-header {
|
|
36568
|
+
background: linear-gradient(to bottom, rgba(0, 115, 136, 0.12), #f9fafb 80%) !important;
|
|
36569
|
+
}
|
|
36570
|
+
|
|
36571
|
+
.ui.violet.table {
|
|
36572
|
+
border-top-left-radius: 0.28571429em;
|
|
36573
|
+
border-top-right-radius: 0.28571429em;
|
|
36574
|
+
}
|
|
36575
|
+
|
|
36576
|
+
.ui.violet.table > thead > tr > .colored-header {
|
|
36577
|
+
background: linear-gradient(to bottom, rgba(148, 97, 172, 0.12), #f9fafb 80%) !important;
|
|
36578
|
+
}
|
|
36579
|
+
|
|
36580
|
+
.ui.purple.table {
|
|
36581
|
+
border-top-left-radius: 0.28571429em;
|
|
36582
|
+
border-top-right-radius: 0.28571429em;
|
|
36583
|
+
}
|
|
36584
|
+
|
|
36585
|
+
.ui.purple.table > thead > tr > .colored-header {
|
|
36586
|
+
background: linear-gradient(to bottom, rgba(175, 102, 144, 0.12), #f9fafb 80%) !important;
|
|
36587
|
+
}
|
|
36588
|
+
|
|
36589
|
+
.ui.pink.table {
|
|
36590
|
+
border-top-left-radius: 0.28571429em;
|
|
36591
|
+
border-top-right-radius: 0.28571429em;
|
|
36592
|
+
}
|
|
36593
|
+
|
|
36594
|
+
.ui.pink.table > thead > tr > .colored-header {
|
|
36595
|
+
background: linear-gradient(to bottom, rgba(224, 57, 151, 0.12), #f9fafb 80%) !important;
|
|
36596
|
+
}
|
|
36597
|
+
|
|
36598
|
+
.ui.brown.table {
|
|
36599
|
+
border-top-left-radius: 0.28571429em;
|
|
36600
|
+
border-top-right-radius: 0.28571429em;
|
|
36601
|
+
}
|
|
36602
|
+
|
|
36603
|
+
.ui.brown.table > thead > tr > .colored-header {
|
|
36604
|
+
background: linear-gradient(to bottom, rgba(175, 150, 102, 0.12), #f9fafb 80%) !important;
|
|
36605
|
+
}
|
|
36606
|
+
|
|
36607
|
+
.ui.grey.table {
|
|
36608
|
+
border-top-left-radius: 0.28571429em;
|
|
36609
|
+
border-top-right-radius: 0.28571429em;
|
|
36610
|
+
}
|
|
36611
|
+
|
|
36612
|
+
.ui.grey.table > thead > tr > .colored-header {
|
|
36613
|
+
background: linear-gradient(to bottom, rgba(163, 179, 192, 0.12), #f9fafb 80%) !important;
|
|
36614
|
+
}
|
|
36615
|
+
|
|
36616
|
+
.ui.black.table {
|
|
36617
|
+
border-top-left-radius: 0.28571429em;
|
|
36618
|
+
border-top-right-radius: 0.28571429em;
|
|
36619
|
+
}
|
|
36620
|
+
|
|
36621
|
+
.ui.black.table > thead > tr > .colored-header {
|
|
36622
|
+
background: linear-gradient(to bottom, rgba(27, 28, 29, 0.12), #f9fafb 80%) !important;
|
|
36623
|
+
}
|
|
36489
36624
|
/*!
|
|
36490
36625
|
* # Fomantic-UI 2.9.4 - Card
|
|
36491
36626
|
* https://github.com/fomantic/Fomantic-UI/
|