Add a standardized max-height to tree select interface (#7103)

This commit is contained in:
Rijk van Zanten
2021-07-30 18:59:02 +02:00
committed by GitHub
parent 3192fb2e2d
commit ae40445dee
2 changed files with 11 additions and 1 deletions

View File

@@ -73,12 +73,21 @@ export default defineComponent({
<style scoped>
.select-multiple-checkbox-tree {
max-height: var(--input-height-max);
overflow: auto;
border: var(--border-width) solid var(--border-normal);
border-radius: var(--border-radius);
}
.search {
position: sticky;
top: 0;
z-index: 2;
padding: 10px;
padding-bottom: 0;
}
.search .v-input {
box-shadow: 0 0 4px 4px var(--background-page);
}
</style>