1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

ZIP Imports: Added parent selector for page/chapter imports

This commit is contained in:
Dan Brown
2024-11-04 16:21:22 +00:00
parent 8f6f81948e
commit 14578c2257
6 changed files with 62 additions and 8 deletions

View File

@@ -138,6 +138,11 @@ $loadingSize: 10px;
font-size: 16px;
padding: $-s $-m;
}
input[type="text"]:focus {
outline: 1px solid var(--color-primary);
border-radius: 3px 3px 0 0;
outline-offset: -1px;
}
.entity-list {
overflow-y: scroll;
height: 400px;
@@ -171,6 +176,19 @@ $loadingSize: 10px;
font-size: 14px;
}
}
&.small {
.entity-list-item {
padding: $-xs $-m;
}
.entity-list, .loading {
height: 300px;
}
input[type="text"] {
font-size: 13px;
padding: $-xs $-m;
height: auto;
}
}
}
.fullscreen {