搜索文件相关样式调整
This commit is contained in:
parent
a85fe36105
commit
c6d5ddfe3d
@ -140,9 +140,15 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
clickSearch(item) {
|
clickSearch(item) {
|
||||||
|
const node = store.getters['explorer/nodeMap'][item.id];
|
||||||
|
if (!node) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
store.commit('explorer/setSelectedId', item.id);
|
store.commit('explorer/setSelectedId', item.id);
|
||||||
|
// Prevent from freezing the UI while loading the file
|
||||||
|
setTimeout(() => {
|
||||||
store.commit('file/setCurrentId', item.id);
|
store.commit('file/setCurrentId', item.id);
|
||||||
this.showSearch = false;
|
}, 10);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@ -209,6 +215,11 @@ export default {
|
|||||||
.app--dark & {
|
.app--dark & {
|
||||||
background-color: rgba(0, 0, 0, 0.4);
|
background-color: rgba(0, 0, 0, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
background-color: #39f;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user