取消“搜索所有资源”的边框

This commit is contained in:
haiyangcui
2020-08-18 23:00:05 +02:00
parent 9cd7f7d267
commit afd016be93
6 changed files with 1 additions and 25 deletions

View File

@@ -83,7 +83,6 @@
display: flex;
width: 200px;
height: 30px;
border-radius: 3px;
vertical-align: middle;
align-items: center;
.search-all-check-input{

View File

@@ -34,12 +34,7 @@
}
.zy-checkbox{
color: var(--d-fc-1);
background-color: var(--d-bgc-1);
box-shadow: var(--d-bsc);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
&:hover{
box-shadow: var(--d-bsc-hover);
}
}
.zy-table{
color: var(--d-fc-2);

View File

@@ -34,12 +34,6 @@
}
.zy-checkbox{
color: var(--g-fc-1);
background-color: var(--g-bgc-1);
box-shadow: var(--g-bsc);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
&:hover{
box-shadow: var(--g-bsc-hover);
}
}
.zy-table{
color: var(--g-fc-2);

View File

@@ -34,12 +34,6 @@
}
.zy-checkbox{
color: var(--l-fc-1);
background-color: var(--l-bgc-1);
box-shadow: var(--l-bsc);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
&:hover{
box-shadow: var(--l-bsc-hover);
}
}
.zy-table{
color: var(--l-fc-2);

View File

@@ -34,12 +34,6 @@
}
.zy-checkbox{
color: var(--p-fc-1);
background-color: var(--p-bgc-1);
box-shadow: var(--p-bsc);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
&:hover{
box-shadow: var(--p-bsc-hover);
}
}
.zy-table{
color: var(--p-fc-2);

View File

@@ -144,7 +144,7 @@ export default {
},
getSiteName (key) {
var site = this.sites.find(e => e.key === key)
if(site) {
if (site) {
return site.name
}
},