Skip to content

Commit

Permalink
fix: tag & more css
Browse files Browse the repository at this point in the history
  • Loading branch information
betterRunner committed Nov 16, 2021
1 parent f0d4e07 commit b88539f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/content-scripts/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ body {}

/* Rewrite el-popper and el-overlay z-index, should be higher than extension mask z-index */
.el-popper, .el-overlay {
padding: 5px !important;
z-index: 10001 !important;
}

Expand Down
2 changes: 1 addition & 1 deletion src/content-scripts/renderer/popup/shared/more.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default {
.more-opers-item {
cursor: pointer;
user-select: none;
padding: 10px;
padding: 5px;
&:hover {
background: #ccc;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@click="handleSelectTagItem(tag)"
>
<div class="tag-item-content">
<el-icon v-if="tag.isSelect" :size="12"><Check /></el-icon>
<el-icon class="tag-item-icon" v-if="tag.isSelect" :size="12"><Check /></el-icon>
{{ tag.name }}
</div>
</el-tag>
Expand Down Expand Up @@ -77,6 +77,10 @@ export default {
.tag-item-content {
display: flex;
align-items: center;
.tag-item-icon {
top: 0 !important;
right: 0 !important;
}
}
}
}
Expand Down

0 comments on commit b88539f

Please sign in to comment.