xianniu-ui 0.3.30 → 0.3.32
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/lib/style/basic.css +1 -1
- package/lib/style/index.css +1 -1
- package/lib/style/search.css +1 -1
- package/lib/xianniu-ui.common.js +25 -24
- package/lib/xianniu-ui.umd.js +25 -24
- package/lib/xianniu-ui.umd.min.js +2 -2
- package/package.json +1 -1
- package/packages/search/main.vue +2 -1
- package/packages/style/src/basic.scss +12 -9
- package/packages/style/src/search.scss +5 -0
package/package.json
CHANGED
package/packages/search/main.vue
CHANGED
|
@@ -97,7 +97,8 @@
|
|
|
97
97
|
</el-col>
|
|
98
98
|
</template>
|
|
99
99
|
<el-col v-bind="{ ...col }">
|
|
100
|
-
<el-form-item
|
|
100
|
+
<!-- <el-form-item label-width="0"> -->
|
|
101
|
+
<el-form-item class="xn-search-searchbtn" :style="{ 'padding-left': `${labelWidth}` }">
|
|
101
102
|
<el-button type="primary" icon="el-icon-search" @click="onSearch"
|
|
102
103
|
>查询</el-button
|
|
103
104
|
>
|
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
.text-success{color: $--color-success!important;}
|
|
4
4
|
.text-danger{color: $--color-danger!important;}
|
|
5
5
|
.text-warning{color: $--color-warning!important;}
|
|
6
|
+
|
|
7
|
+
.fw-1{font-weight: 100 !important;}
|
|
8
|
+
.fw-2{font-weight: 200 !important;}
|
|
9
|
+
.fw-3{font-weight: 300 !important;}
|
|
10
|
+
.fw-4{font-weight: 400 !important;}
|
|
11
|
+
.fw-5{font-weight: 500 !important;}
|
|
12
|
+
.fw-6{font-weight: 600 !important;}
|
|
13
|
+
.fw-7{font-weight: 700 !important;}
|
|
14
|
+
|
|
6
15
|
@for $i from 0 through 30 {
|
|
7
16
|
.m-#{$i} {
|
|
8
17
|
margin: ($i) + px !important;
|
|
@@ -53,12 +62,6 @@
|
|
|
53
62
|
line-clamp: 2;
|
|
54
63
|
-webkit-box-orient: vertical;
|
|
55
64
|
}
|
|
56
|
-
.text-right {
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
.text-center {
|
|
60
|
-
text-align: center;
|
|
61
|
-
}
|
|
62
|
-
.text-left {
|
|
63
|
-
text-align: left;
|
|
64
|
-
}
|
|
65
|
+
.text-right {text-align: right !important;}
|
|
66
|
+
.text-center {text-align: center !important;}
|
|
67
|
+
.text-left {text-align: left !important;}
|