mirror of
https://github.com/ZiuChen/ClipboardManager.git
synced 2025-06-07 05:47:13 +08:00
revert: 移除ClipMenu相关代码
This commit is contained in:
parent
a858913772
commit
e670f34e6e
@ -1,24 +0,0 @@
|
||||
<template>
|
||||
<div class="clip-menu" v-show="isMenuShow">
|
||||
<div class="clip-menu-title">设置</div>
|
||||
<div class="clip-menu-config-list">
|
||||
<div class="clip-menu-config-list-item">
|
||||
<span>清空剪贴板</span>
|
||||
<div class="clip-btn">🧹</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const props = defineProps({
|
||||
isMenuShow: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
@import '../style';
|
||||
</style>
|
@ -1,42 +0,0 @@
|
||||
.clip-menu {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
position: fixed;
|
||||
z-index: 9999;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: rgb(232, 232, 232);
|
||||
&-title {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
align-items: flex-start;
|
||||
text-align: left;
|
||||
}
|
||||
&-config-list {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
// flex-direction: column;
|
||||
&-item {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
.clip-btn {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
border-radius: 5px;
|
||||
margin: 5px;
|
||||
background-color: @text-bg-color;
|
||||
&:hover {
|
||||
background-color: @primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user