ywana-core8 0.1.78 → 0.1.79
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/dist/index.css +96 -2
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
- package/src/html/table2.css +96 -2
package/dist/index.css
CHANGED
@@ -5632,8 +5632,102 @@ textarea:read-only ~ label,
|
|
5632
5632
|
|
5633
5633
|
/* DataTable2 CSS - Enhanced version maintaining 100% compatibility */
|
5634
5634
|
|
5635
|
-
/*
|
5636
|
-
|
5635
|
+
/* Original table styles included inline for compatibility */
|
5636
|
+
|
5637
|
+
.datatable8 {
|
5638
|
+
border: solid 0px var(--divider-color);
|
5639
|
+
background-color: var(--paper-color);
|
5640
|
+
overflow: auto;
|
5641
|
+
max-height: 100%;
|
5642
|
+
width: 100%;
|
5643
|
+
}
|
5644
|
+
|
5645
|
+
.datatable8.outlined {
|
5646
|
+
border: solid 1px var(--divider-color);
|
5647
|
+
}
|
5648
|
+
|
5649
|
+
.datatable8 table {
|
5650
|
+
width: 100%;
|
5651
|
+
}
|
5652
|
+
|
5653
|
+
.datatable8 thead {
|
5654
|
+
position: sticky;
|
5655
|
+
top: 0px;
|
5656
|
+
overflow: hidden;
|
5657
|
+
color: var(--text-color-light);
|
5658
|
+
z-index: 10;
|
5659
|
+
}
|
5660
|
+
|
5661
|
+
.datatable8 thead th {
|
5662
|
+
height: 2.1rem;
|
5663
|
+
padding: 0 1rem;
|
5664
|
+
text-align: left;
|
5665
|
+
font-weight: 600 !important;
|
5666
|
+
border-bottom: solid 1px var(--divider-color);
|
5667
|
+
background-color: var(--paper-color);
|
5668
|
+
}
|
5669
|
+
|
5670
|
+
.datatable8 thead th>div {
|
5671
|
+
width: 100%;
|
5672
|
+
display: flex;
|
5673
|
+
justify-content: space-between;
|
5674
|
+
align-items: center;
|
5675
|
+
text-transform: uppercase;
|
5676
|
+
font-size: .8rem;
|
5677
|
+
}
|
5678
|
+
|
5679
|
+
.datatable8 tbody {
|
5680
|
+
overflow: visible;
|
5681
|
+
height: 5rem;
|
5682
|
+
}
|
5683
|
+
|
5684
|
+
.datatable8 tbody tr.selected {
|
5685
|
+
background-color: rgba(200,200,200,.6);
|
5686
|
+
}
|
5687
|
+
|
5688
|
+
.datatable8 tbody tr:hover {
|
5689
|
+
background-color: rgba(200,200,200,.2);
|
5690
|
+
cursor: pointer
|
5691
|
+
}
|
5692
|
+
|
5693
|
+
.datatable8 tbody tr.selected:hover {
|
5694
|
+
background-color: rgba(200,200,200,.4);
|
5695
|
+
}
|
5696
|
+
|
5697
|
+
.datatable8 tbody td {
|
5698
|
+
height: 3rem;
|
5699
|
+
padding: 0 1rem;
|
5700
|
+
overflow: visible;
|
5701
|
+
text-overflow: ellipsis;
|
5702
|
+
white-space: nowrap;
|
5703
|
+
max-width: 10rem;
|
5704
|
+
color: var(--text-color-light);
|
5705
|
+
}
|
5706
|
+
|
5707
|
+
.datatable8 tbody td.index {
|
5708
|
+
width: 3rem;
|
5709
|
+
overflow: hidden;
|
5710
|
+
color: var(--text-color-lighter);
|
5711
|
+
}
|
5712
|
+
|
5713
|
+
.datatable8 tbody td.checked
|
5714
|
+
{
|
5715
|
+
width: 3rem;
|
5716
|
+
overflow: hidden;
|
5717
|
+
}
|
5718
|
+
|
5719
|
+
.datatable8 tbody td.checked .checkmark {
|
5720
|
+
border-color: var(--text-color-lighter) !important;
|
5721
|
+
}
|
5722
|
+
|
5723
|
+
.datatable8 .string-viewer img {
|
5724
|
+
height: 5rem;
|
5725
|
+
}
|
5726
|
+
|
5727
|
+
.datatable8 th.resizable-column {
|
5728
|
+
resize: horizontal;
|
5729
|
+
overflow: hidden;
|
5730
|
+
}
|
5637
5731
|
|
5638
5732
|
/* Enhanced DataTable2 Styles - New functionality while maintaining compatibility */
|
5639
5733
|
|