1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 18:29:23 +00:00

Grid view support multi-select by drag (#6420)

* grid view support multiple selection by drag

* fix conflict with multiple selection by keyboard

* improve selection experience and code format

* fix bug - select failed when file name include '...'
This commit is contained in:
Aries
2024-07-26 17:15:18 +08:00
committed by GitHub
parent fa46b89b0d
commit 3a06447faf
9 changed files with 211 additions and 20 deletions

View File

@@ -85,3 +85,9 @@
.grid-drop-show {
background: #f8f8f8;
}
.selection-box {
position: absolute;
background-color: rgba(0, 120, 215, 0.3);
border: 1px solid rgba(0, 120, 215, 0.8);
}

View File

@@ -56,6 +56,7 @@
}
.dir-content-main {
position: relative;
flex: 1 0 74.5%;
display: flex;
flex-direction: column;