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/package.json
CHANGED
package/src/html/table2.css
CHANGED
@@ -1,7 +1,101 @@
|
|
1
1
|
/* DataTable2 CSS - Enhanced version maintaining 100% compatibility */
|
2
2
|
|
3
|
-
/*
|
4
|
-
|
3
|
+
/* Original table styles included inline for compatibility */
|
4
|
+
|
5
|
+
.datatable8 {
|
6
|
+
border: solid 0px var(--divider-color);
|
7
|
+
background-color: var(--paper-color);
|
8
|
+
overflow: auto;
|
9
|
+
max-height: 100%;
|
10
|
+
width: 100%;
|
11
|
+
}
|
12
|
+
|
13
|
+
.datatable8.outlined {
|
14
|
+
border: solid 1px var(--divider-color);
|
15
|
+
}
|
16
|
+
|
17
|
+
.datatable8 table {
|
18
|
+
width: 100%;
|
19
|
+
}
|
20
|
+
|
21
|
+
.datatable8 thead {
|
22
|
+
position: sticky;
|
23
|
+
top: 0px;
|
24
|
+
overflow: hidden;
|
25
|
+
color: var(--text-color-light);
|
26
|
+
z-index: 10;
|
27
|
+
}
|
28
|
+
|
29
|
+
.datatable8 thead th {
|
30
|
+
height: 2.1rem;
|
31
|
+
padding: 0 1rem;
|
32
|
+
text-align: left;
|
33
|
+
font-weight: 600 !important;
|
34
|
+
border-bottom: solid 1px var(--divider-color);
|
35
|
+
background-color: var(--paper-color);
|
36
|
+
}
|
37
|
+
|
38
|
+
.datatable8 thead th>div {
|
39
|
+
width: 100%;
|
40
|
+
display: flex;
|
41
|
+
justify-content: space-between;
|
42
|
+
align-items: center;
|
43
|
+
text-transform: uppercase;
|
44
|
+
font-size: .8rem;
|
45
|
+
}
|
46
|
+
|
47
|
+
.datatable8 tbody {
|
48
|
+
overflow: visible;
|
49
|
+
height: 5rem;
|
50
|
+
}
|
51
|
+
|
52
|
+
.datatable8 tbody tr.selected {
|
53
|
+
background-color: rgba(200,200,200,.6);
|
54
|
+
}
|
55
|
+
|
56
|
+
.datatable8 tbody tr:hover {
|
57
|
+
background-color: rgba(200,200,200,.2);
|
58
|
+
cursor: pointer
|
59
|
+
}
|
60
|
+
|
61
|
+
.datatable8 tbody tr.selected:hover {
|
62
|
+
background-color: rgba(200,200,200,.4);
|
63
|
+
}
|
64
|
+
|
65
|
+
.datatable8 tbody td {
|
66
|
+
height: 3rem;
|
67
|
+
padding: 0 1rem;
|
68
|
+
overflow: visible;
|
69
|
+
text-overflow: ellipsis;
|
70
|
+
white-space: nowrap;
|
71
|
+
max-width: 10rem;
|
72
|
+
color: var(--text-color-light);
|
73
|
+
}
|
74
|
+
|
75
|
+
.datatable8 tbody td.index {
|
76
|
+
width: 3rem;
|
77
|
+
overflow: hidden;
|
78
|
+
color: var(--text-color-lighter);
|
79
|
+
}
|
80
|
+
|
81
|
+
.datatable8 tbody td.checked
|
82
|
+
{
|
83
|
+
width: 3rem;
|
84
|
+
overflow: hidden;
|
85
|
+
}
|
86
|
+
|
87
|
+
.datatable8 tbody td.checked .checkmark {
|
88
|
+
border-color: var(--text-color-lighter) !important;
|
89
|
+
}
|
90
|
+
|
91
|
+
.datatable8 .string-viewer img {
|
92
|
+
height: 5rem;
|
93
|
+
}
|
94
|
+
|
95
|
+
.datatable8 th.resizable-column {
|
96
|
+
resize: horizontal;
|
97
|
+
overflow: hidden;
|
98
|
+
}
|
5
99
|
|
6
100
|
/* Enhanced DataTable2 Styles - New functionality while maintaining compatibility */
|
7
101
|
|