@lambo-design/pro-layout 1.0.0-beta.258 → 1.0.0-beta.260
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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<Input v-if="searchType === 0" v-model="searchText" clearable placeholder="搜索菜单" font-size="8px"
|
|
6
6
|
@on-change="handleInput" :border="false" @on-blur="searchSideModal = false">
|
|
7
7
|
<template #prefix>
|
|
8
|
-
<Icon type="ios-search" size="
|
|
8
|
+
<Icon type="ios-search" size="16"/>
|
|
9
9
|
</template>
|
|
10
10
|
</Input>
|
|
11
11
|
</div>
|
|
@@ -157,14 +157,15 @@ export default {
|
|
|
157
157
|
z-index: 1000;
|
|
158
158
|
.sideInput{
|
|
159
159
|
width: 240px;
|
|
160
|
-
transform: translateX(-
|
|
160
|
+
transform: translateX(-14px);
|
|
161
161
|
/deep/.ivu-input-prefix{
|
|
162
|
-
|
|
162
|
+
height: 40px;
|
|
163
|
+
line-height: 40px;
|
|
164
|
+
font-weight: 400;
|
|
163
165
|
}
|
|
164
166
|
}
|
|
165
167
|
/deep/.ivu-input{
|
|
166
|
-
font-size:
|
|
167
|
-
margin-top: -4px;
|
|
168
|
+
font-size: 14px;
|
|
168
169
|
width: 240px;
|
|
169
170
|
height: 40px;
|
|
170
171
|
font-weight: 400;
|
|
@@ -241,7 +242,7 @@ export default {
|
|
|
241
242
|
margin-left: 0px;
|
|
242
243
|
margin-top: 1px;
|
|
243
244
|
.ivu-modal-content{
|
|
244
|
-
width:
|
|
245
|
+
width: 220px;
|
|
245
246
|
margin-top: -18px;
|
|
246
247
|
height: 270px;
|
|
247
248
|
.ivu-modal-body{
|
package/src/styles/color.less
CHANGED
|
@@ -188,11 +188,17 @@
|
|
|
188
188
|
background: var(--layout-sider-background,@_layout-sider-background);
|
|
189
189
|
color: var(--layout-sider-submenu-color ,@_layout-sider-submenu-color);
|
|
190
190
|
.other-menu-item{
|
|
191
|
+
border: 1px solid var(--layout-sider-line-color,@_layout-sider-line-color);
|
|
191
192
|
&:hover {
|
|
192
193
|
background: var(--layout-sider-menuitem-hover-background,@_layout-sider-menuitem-hover-background);
|
|
193
194
|
color: var(--layout-sider-menuitem-hover-color,@_layout-sider-menuitem-hover-color);
|
|
194
195
|
}
|
|
195
196
|
}
|
|
197
|
+
&.other-menu-collapsed {
|
|
198
|
+
.other-menu-item {
|
|
199
|
+
border-top : 2px solid var(--layout-sider-line-color,@_layout-sider-line-color);
|
|
200
|
+
}
|
|
201
|
+
}
|
|
196
202
|
}
|
|
197
203
|
.search-fast-con{
|
|
198
204
|
background: var(--layout-sider-search-background,@_layout-sider-search-background);
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
z-index: 1000;
|
|
7
7
|
&.other-menu-collapsed {
|
|
8
8
|
.other-menu-item {
|
|
9
|
-
border-top: 2px solid var(--border-color-base,@_border-color-base);
|
|
10
9
|
width: 100%;
|
|
11
10
|
.ivu-tooltip {
|
|
12
11
|
width: 100%;
|
|
@@ -28,7 +27,6 @@
|
|
|
28
27
|
height: 48.6px;
|
|
29
28
|
width: 50%;
|
|
30
29
|
display: inline-block;
|
|
31
|
-
border: 1px solid var(--border-color-base,@_border-color-base);
|
|
32
30
|
cursor: pointer;
|
|
33
31
|
}
|
|
34
32
|
}
|