@lambo-design/detail-table 1.0.0-beta.1 → 1.0.0-beta.3

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design/detail-table",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,16 +12,16 @@
12
12
  <div :class="[`${prefixCls}-view`]">
13
13
  <table>
14
14
  <tbody>
15
- <Row
16
- v-for="(item, index) in childrenArray"
17
- :children="item"
18
- :key="index"
19
- :index="index"
20
- :prefixCls="prefixCls"
21
- :bordered="bordered"
22
- :layout="layout"
23
- :colon="colon"
24
- ></Row>
15
+ <Row
16
+ v-for="(item, index) in childrenArray"
17
+ :children="item"
18
+ :key="index"
19
+ :index="index"
20
+ :prefixCls="prefixCls"
21
+ :bordered="bordered"
22
+ :layout="layout"
23
+ :colon="colon"
24
+ ></Row>
25
25
  </tbody>
26
26
  </table>
27
27
  </div>
@@ -1,6 +1,4 @@
1
- .lambo-detail-table-style(){
2
1
  @descriptions-prefix-cls: lambo-detail-table;
3
-
4
2
  @descriptions-default-padding: 16px 24px;
5
3
  @descriptions-middle-padding: 12px 24px;
6
4
  @descriptions-small-padding: 8px 16px;
@@ -105,7 +103,8 @@
105
103
  .@{descriptions-prefix-cls}-item-label,
106
104
  .@{descriptions-prefix-cls}-item-content {
107
105
  padding: @descriptions-default-padding;
108
- border-right: 1px solid hsv(0, 0, 91%); ;
106
+ //border-right: 1px solid hsv(0, 0, 91%); ;
107
+ border-right: 1px solid #cacacbff; ;
109
108
 
110
109
  &:last-child {
111
110
  border-right: none;
@@ -113,7 +112,7 @@
113
112
  }
114
113
 
115
114
  .@{descriptions-prefix-cls}-item-label {
116
- background-color: #fafafa;
115
+ background-color: #f0f0f1ff;
117
116
  &::after {
118
117
  display: none;
119
118
  }
@@ -141,5 +140,4 @@
141
140
  }
142
141
  }
143
142
  }
144
- }
145
143