@lambo-design/detail-table 1.0.0-beta.8 → 1.0.0-beta.9
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 +1 -1
- package/src/styles/css/index.less +7 -19
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
@descriptions-prefix-cls: lambo-detail-table;
|
|
2
|
-
|
|
3
|
-
@descriptions-
|
|
4
|
-
@descriptions-
|
|
2
|
+
|
|
3
|
+
@descriptions-default-padding: 16px 10px;
|
|
4
|
+
@descriptions-middle-padding: 12px 10px;
|
|
5
|
+
@descriptions-small-padding: 8px 5px;
|
|
5
6
|
|
|
6
7
|
.@{descriptions-prefix-cls} {
|
|
7
8
|
&-title {
|
|
@@ -15,18 +16,16 @@
|
|
|
15
16
|
&-view {
|
|
16
17
|
width: 100%;
|
|
17
18
|
overflow: hidden;
|
|
18
|
-
border-radius: 4px;
|
|
19
19
|
table {
|
|
20
20
|
width: 100%;
|
|
21
21
|
table-layout: fixed;
|
|
22
|
-
border-collapse: collapse
|
|
23
22
|
}
|
|
24
23
|
}
|
|
25
24
|
|
|
26
25
|
&-row {
|
|
27
26
|
> th,
|
|
28
27
|
> td {
|
|
29
|
-
padding-bottom:
|
|
28
|
+
padding-bottom: 15px;
|
|
30
29
|
}
|
|
31
30
|
&:last-child {
|
|
32
31
|
border-bottom: none;
|
|
@@ -35,7 +34,7 @@
|
|
|
35
34
|
|
|
36
35
|
&-item-label {
|
|
37
36
|
color: fade(#000, 85%);
|
|
38
|
-
font-weight:
|
|
37
|
+
font-weight: 500;
|
|
39
38
|
font-size: 14px;
|
|
40
39
|
line-height: 1.5;
|
|
41
40
|
|
|
@@ -94,7 +93,7 @@
|
|
|
94
93
|
|
|
95
94
|
&-bordered {
|
|
96
95
|
.@{descriptions-prefix-cls}-view {
|
|
97
|
-
border: 1px solid hsv(0, 0, 91%);
|
|
96
|
+
//border: 1px solid hsv(0, 0, 91%);
|
|
98
97
|
> table {
|
|
99
98
|
table-layout: auto;
|
|
100
99
|
}
|
|
@@ -103,17 +102,11 @@
|
|
|
103
102
|
.@{descriptions-prefix-cls}-item-label,
|
|
104
103
|
.@{descriptions-prefix-cls}-item-content {
|
|
105
104
|
padding: @descriptions-default-padding;
|
|
106
|
-
//border-right: 1px solid hsv(0, 0, 91%); ;
|
|
107
105
|
border: 1px solid #cacacbff; ;
|
|
108
106
|
|
|
109
107
|
&:last-child {
|
|
110
|
-
border-bottom: none;
|
|
111
108
|
border-right: none;
|
|
112
109
|
}
|
|
113
|
-
&:first-child {
|
|
114
|
-
border-top: none;
|
|
115
|
-
border-left: none;
|
|
116
|
-
}
|
|
117
110
|
}
|
|
118
111
|
|
|
119
112
|
.@{descriptions-prefix-cls}-item-label {
|
|
@@ -124,12 +117,7 @@
|
|
|
124
117
|
}
|
|
125
118
|
|
|
126
119
|
.@{descriptions-prefix-cls}-row {
|
|
127
|
-
//border-bottom: 1px solid hsv(0, 0, 91%);
|
|
128
120
|
border: 1px solid #cacacbff; ;
|
|
129
|
-
//border-bottom: 1px solid #e6e6e7; ;
|
|
130
|
-
//&:last-child {
|
|
131
|
-
// border-bottom: none;
|
|
132
|
-
//}
|
|
133
121
|
}
|
|
134
122
|
|
|
135
123
|
&.@{descriptions-prefix-cls}-middle {
|