add shortcut str+alt for studentlist, add css for studentNames scrollable

This commit is contained in:
ma0068
2026-06-30 08:26:41 +02:00
parent 06ec020c1c
commit 9948060ed8
2 changed files with 15 additions and 0 deletions
+7
View File
@@ -96,6 +96,13 @@ html.fs_huge {
overflow: visible !important;
}
/* to enable scrolling for many student entries*/
.stv-details-abschlusspruefung-student-names {
max-height: 80px;
overflow-y: auto;
overflow-x: hidden;
}
.p-dropdown-item{
z-index: 1201 !important;
}
@@ -514,6 +514,14 @@ export default {
this.$reloadList();
},
onKeydown(e) { // TODO(chris): this should be in the filter component
if ((e.ctrlKey || e.metaKey) && e.code === "KeyA") {
e.preventDefault();
this.$refs.table.tabulator.deselectRow();
this.$refs.table.tabulator.selectRow();
}
if (!this.focusObj)
return;