@jx3box/jx3box-ui 2.2.5 → 2.2.7
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/assets/css/bread/admin.less +35 -1
- package/package.json +1 -1
- package/src/bread/Admin.vue +3 -3
|
@@ -89,6 +89,40 @@
|
|
|
89
89
|
display: flex;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
+
.c-admin-select {
|
|
93
|
+
position: relative;
|
|
94
|
+
.flex;
|
|
95
|
+
align-items: center;
|
|
96
|
+
|
|
97
|
+
.c-admin-select__label {
|
|
98
|
+
background-color: #f5f7fa;
|
|
99
|
+
color: #909399;
|
|
100
|
+
position: relative;
|
|
101
|
+
display: inline-flex;
|
|
102
|
+
align-items: center;
|
|
103
|
+
justify-content: center;
|
|
104
|
+
height: 40px;
|
|
105
|
+
line-height: 40px;
|
|
106
|
+
border-radius: 4px;
|
|
107
|
+
padding: 0 20px;
|
|
108
|
+
white-space: nowrap;
|
|
109
|
+
border-right: 0;
|
|
110
|
+
border-top-right-radius: 0;
|
|
111
|
+
border-bottom-right-radius: 0;
|
|
112
|
+
box-shadow: 1px 0 0 0 #dcdfe6 inset, 0 1px 0 0 #dcdfe6 inset, 0 -1px 0 0 #dcdfe6 inset;
|
|
113
|
+
font-size: 14px;
|
|
114
|
+
box-sizing: border-box;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.c-admin-select__control {
|
|
118
|
+
.el-select__wrapper {
|
|
119
|
+
border-top-left-radius: 0;
|
|
120
|
+
border-bottom-left-radius: 0;
|
|
121
|
+
box-shadow: 0 1px 0 0 #dcdfe6 inset, 0 -1px 0 0 #dcdfe6 inset, 0 0 0 1px #dcdfe6 inset;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
92
126
|
.w-select {
|
|
93
127
|
position: relative;
|
|
94
128
|
.flex;
|
|
@@ -125,7 +159,7 @@
|
|
|
125
159
|
.w(50%);
|
|
126
160
|
min-width: 200px;
|
|
127
161
|
.mr(10px);
|
|
128
|
-
.
|
|
162
|
+
.c-admin-select__label {
|
|
129
163
|
height: 32px;
|
|
130
164
|
line-height: 32px;
|
|
131
165
|
}
|
package/package.json
CHANGED
package/src/bread/Admin.vue
CHANGED
|
@@ -84,13 +84,13 @@
|
|
|
84
84
|
|
|
85
85
|
<el-divider content-position="left">{{ $jx3boxT("jx3boxUi.admin.meta", "元信息") }}</el-divider>
|
|
86
86
|
<div class="c-admin-info">
|
|
87
|
-
<div class="
|
|
88
|
-
<div class="
|
|
87
|
+
<div class="c-admin-select c-admin-type">
|
|
88
|
+
<div class="c-admin-select__label">{{ $jx3boxT("jx3boxUi.admin.section", "板块") }}</div>
|
|
89
89
|
<el-select
|
|
90
90
|
v-model="post_type"
|
|
91
91
|
:placeholder="$jx3boxT('jx3boxUi.admin.sectionPlaceholder', '请选择板块')"
|
|
92
92
|
style="width: 100%"
|
|
93
|
-
class="
|
|
93
|
+
class="c-admin-select__control drawer-item-content"
|
|
94
94
|
:disabled="appDisabled"
|
|
95
95
|
>
|
|
96
96
|
<el-option
|