@lambo-design/detail-table 1.0.0-beta.11 → 1.0.0-beta.12
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/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
@import "@lambo-design/core/src/styles/default.less";
|
|
2
|
+
@descriptions-prefix-cls: lambo-detail-table;
|
|
2
3
|
|
|
3
4
|
@descriptions-default-padding: 16px 10px;
|
|
4
5
|
@descriptions-middle-padding: 12px 10px;
|
|
@@ -34,7 +35,7 @@
|
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
&-item-label {
|
|
37
|
-
color:
|
|
38
|
+
color: var(--title-color,@_title-color);;
|
|
38
39
|
font-weight: 500;
|
|
39
40
|
font-size: 14px;
|
|
40
41
|
line-height: 1.5;
|
|
@@ -62,7 +63,7 @@
|
|
|
62
63
|
|
|
63
64
|
&-item-content {
|
|
64
65
|
display: table-cell;
|
|
65
|
-
color:
|
|
66
|
+
color: var(--text-color,@_text-color);;
|
|
66
67
|
font-size: 14px;
|
|
67
68
|
line-height: 1.5;
|
|
68
69
|
}
|
|
@@ -102,7 +103,7 @@
|
|
|
102
103
|
.@{descriptions-prefix-cls}-item-label,
|
|
103
104
|
.@{descriptions-prefix-cls}-item-content {
|
|
104
105
|
padding: @descriptions-default-padding;
|
|
105
|
-
border: 1px solid
|
|
106
|
+
border: 1px solid var(--border-color-base,@_border-color-base); ;
|
|
106
107
|
|
|
107
108
|
&:last-child {
|
|
108
109
|
border-right: none;
|
|
@@ -110,14 +111,16 @@
|
|
|
110
111
|
}
|
|
111
112
|
|
|
112
113
|
.@{descriptions-prefix-cls}-item-label {
|
|
113
|
-
background-color: #f0f0f1ff;
|
|
114
|
+
//background-color: #f0f0f1ff;
|
|
115
|
+
background-color: var(--table-thead-bg,@_table-thead-bg);
|
|
116
|
+
|
|
114
117
|
&::after {
|
|
115
118
|
display: none;
|
|
116
119
|
}
|
|
117
120
|
}
|
|
118
121
|
|
|
119
122
|
.@{descriptions-prefix-cls}-row {
|
|
120
|
-
border: 1px solid
|
|
123
|
+
border: 1px solid var(--border-color-base,@_border-color-base); ;
|
|
121
124
|
}
|
|
122
125
|
|
|
123
126
|
&.@{descriptions-prefix-cls}-middle {
|