diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 985579c..a59d942 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -588,3 +588,23 @@ html, body, #app, .el-container, .el-aside, .el-main { position: relative; } } +//绘制下拉选择框远程搜索时右侧的箭头 +.el-select { + .el-select__wrapper { + .el-select__suffix::before { + content: ""; + width: 6px; + height: 6px; + border: solid #a8abb2; + border-width: 0 0 1px 1px; + transform: translate(-50%, -50%) rotate(-45deg); + } + } + + .is-focused { + .el-select__suffix::before { + margin-top: 10px; + transform: translate(-50%, -50%) rotate(-225deg) !important; + } + } +} diff --git a/src/components/AttachmentUpload.vue b/src/components/AttachmentUpload.vue index 5c984d2..2a25f09 100644 --- a/src/components/AttachmentUpload.vue +++ b/src/components/AttachmentUpload.vue @@ -1,5 +1,5 @@