@dev-tcloud/tcloud-ui 6.27.1 → 6.28.0
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/fesm2022/dev-tcloud-tcloud-ui.mjs +38 -37
- package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/js/tcloud-ui-app.js +2 -2
- package/lib/_modules/tcloud-ui-tab-menu/components/tcloud-ui-tab-head/tcloud-ui-tab-head.component.d.ts +1 -1
- package/package.json +1 -1
- package/scss/components/custom/table.scss +4 -4
|
@@ -8,7 +8,7 @@ export declare class TCloudUiTabHeadComponent implements OnInit {
|
|
|
8
8
|
get scroll(): boolean;
|
|
9
9
|
ID: string;
|
|
10
10
|
background: boolean;
|
|
11
|
-
backgroundColor:
|
|
11
|
+
backgroundColor: string;
|
|
12
12
|
private _bottom_line;
|
|
13
13
|
set bottom_line(bottom_line: boolean);
|
|
14
14
|
get bottom_line(): boolean;
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
{
|
|
8
8
|
padding: 1rem;
|
|
9
9
|
box-sizing: border-box;
|
|
10
|
-
background-color:
|
|
10
|
+
background-color: var(--c-neutral-100);
|
|
11
11
|
border-bottom: 1px solid var(--c-neutral-400);
|
|
12
12
|
|
|
13
13
|
&.center
|
|
@@ -77,12 +77,12 @@
|
|
|
77
77
|
text-align: left !important;
|
|
78
78
|
}
|
|
79
79
|
table.tc-table-responsive tr {
|
|
80
|
-
border-bottom: 3px solid
|
|
80
|
+
border-bottom: 3px solid var(--c-neutral-300);
|
|
81
81
|
display: block;
|
|
82
82
|
margin-bottom: .625em;
|
|
83
83
|
}
|
|
84
84
|
table.tc-table-responsive td {
|
|
85
|
-
border-bottom: 1px solid
|
|
85
|
+
border-bottom: 1px solid var(--c-neutral-300);
|
|
86
86
|
display: block;
|
|
87
87
|
font-size: .8em;
|
|
88
88
|
text-align: right !important;
|
|
@@ -105,6 +105,6 @@
|
|
|
105
105
|
|
|
106
106
|
.tc-table-striped{
|
|
107
107
|
tr:nth-child(odd) {
|
|
108
|
-
background-color:
|
|
108
|
+
background-color: var(--c-neutral-200);
|
|
109
109
|
}
|
|
110
110
|
}
|