Skip to content

Commit 6a9b5ea

Browse files
committed
fix: bug fix
1 parent fdb362d commit 6a9b5ea

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

frontend/src/views/system/member/index.vue

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ const handleCurrentChange = (val: number) => {
347347
<el-input
348348
v-model="workspaceForm.name"
349349
clearable
350+
:class="workspaceForm.name && 'value-input'"
350351
:placeholder="$t('workspace.id_account_to_add')"
351352
>
352353
<template #append>
@@ -451,8 +452,8 @@ const handleCurrentChange = (val: number) => {
451452
.bottom-select {
452453
position: absolute;
453454
height: 64px;
454-
width: 100%;
455-
left: 0;
455+
width: calc(100% + 48px);
456+
left: -24px;
456457
bottom: 0;
457458
border-top: 1px solid #1f232926;
458459
display: flex;
@@ -491,6 +492,28 @@ const handleCurrentChange = (val: number) => {
491492
background-color: #fff;
492493
padding: 0 12px;
493494
}
495+
496+
.value-input {
497+
.ed-input-group__append {
498+
color: #1f2329;
499+
position: relative;
500+
&:hover {
501+
&::after {
502+
content: '';
503+
position: absolute;
504+
left: -1px;
505+
top: 0;
506+
width: calc(100% - 1px);
507+
height: calc(100% - 2px);
508+
background: #1cba901a;
509+
border: 1px solid #1cba90;
510+
border-bottom-right-radius: 6px;
511+
border-top-right-radius: 6px;
512+
pointer-events: none;
513+
}
514+
}
515+
}
516+
}
494517
.user {
495518
height: 126px;
496519
font-weight: 400;

0 commit comments

Comments
 (0)