|
@@ -37,7 +37,7 @@
|
|
|
:style="getStyle2(item)?styles:null"
|
|
|
@click='selectRightTag(item)'
|
|
|
>
|
|
|
- <div>
|
|
|
+ <div class="inputBox">
|
|
|
<el-input
|
|
|
v-if="item.type === 'input'"
|
|
|
placeholder=""
|
|
@@ -248,6 +248,9 @@ export default {
|
|
|
// border:1px solid @icssBorder;
|
|
|
|
|
|
}
|
|
|
+ .inputBox {
|
|
|
+ width: 100px;
|
|
|
+ }
|
|
|
.search {
|
|
|
width: 100%;
|
|
|
border-bottom: 1px solid @icssBorder;
|
|
@@ -265,7 +268,11 @@ export default {
|
|
|
}
|
|
|
.operationPool {
|
|
|
position: relative;
|
|
|
- width: 100%;
|
|
|
+ width: 85%;
|
|
|
+ }
|
|
|
+ .tagName {
|
|
|
+ height: 40px;
|
|
|
+ line-height: 40px;
|
|
|
}
|
|
|
.tagName:before {
|
|
|
content: '['
|
|
@@ -296,6 +303,8 @@ export default {
|
|
|
}
|
|
|
.operationItem {
|
|
|
float: left;
|
|
|
+ line-height: 40px;
|
|
|
+ margin: 0 5px 10px 0;
|
|
|
}
|
|
|
.active {
|
|
|
color: #aBcdef;
|