style: 全局修改样式主题

This commit is contained in:
ccnetcore
2025-08-04 22:35:45 +08:00
parent 7cb3aea2e6
commit 3e647ef14d
30 changed files with 69 additions and 70 deletions

View File

@@ -177,7 +177,6 @@ onUnmounted(() => {
.start-body {
height: 100%;
width: 100%;
background-color: #FCFCFC;
}
@@ -221,7 +220,7 @@ onUnmounted(() => {
&-right {
width: 0%;
background-color: #409EFF;
background-color: #00DA72;
}
@@ -238,7 +237,7 @@ onUnmounted(() => {
h4 {
font-size: 20px;
font-weight: 500;
color: #409EFF;
color: #00DA72;
margin-bottom: .25rem;
margin-top: 0;

View File

@@ -23,7 +23,7 @@ watch(()=>props.isSelect,(n,o)=>{
</template>
<style lang="scss" scoped>
.selected {
border: 2px solid #409EFF !important;
border: 2px solid #00DA72 !important;
background-color: #FFFFFF !important;
}
@@ -42,7 +42,7 @@ watch(()=>props.isSelect,(n,o)=>{
}
.box:hover {
border: 2px solid #409EFF;
border: 2px solid #00DA72;
}
</style>

View File

@@ -70,7 +70,7 @@ const copyText=async ()=>{
}
&-right{
button{
background-color:#409EFF;
background-color:#00DA72;
color: #fff !important;
height: 25px;
width: 50px;

View File

@@ -65,6 +65,6 @@ input[type=checkbox]:checked::after {
color: #fff;
font-size: 16px;
font-weight: bold;
background-color: #409EFF;
background-color: #00DA72;
}
</style>

View File

@@ -35,7 +35,7 @@ input {
width: 100%;
}
input:hover {
border: 2px solid #409EFF;
border: 2px solid #00DA72;
background-color:#FFFFFF; /* 鼠标悬停时的边框颜色 */
}
</style>