diff options
author | Roland Scheidel <mail@scheidel.at> | 2019-12-03 09:45:33 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-07-23 17:47:26 +0200 |
commit | c5af9108864d220e24fb718a7686e98fdec5e3d0 (patch) | |
tree | 618b1d67259d96d94b6ef4acf880d6dc1aa05305 /apps/files/css/files.scss | |
parent | 41ddbec40f1b2c59a68464efc8ba7b127cda444e (diff) | |
download | nextcloud-server-c5af9108864d220e24fb718a7686e98fdec5e3d0.tar.gz nextcloud-server-c5af9108864d220e24fb718a7686e98fdec5e3d0.zip |
add an option to the multiple files selected actions to add and remove tags from multiple files at once
Signed-off-by: Roland Scheidel <kontakt@scheidel.at>
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/css/files.scss')
-rw-r--r-- | apps/files/css/files.scss | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 596c931a25b..5aea86d064a 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -1215,3 +1215,25 @@ table.dragshadow td.size { #gallery-button { display: none; } + +#tag_multiple_files_container { + overflow: hidden; + background-color: #fff; + border-radius: 3px; + position: relative; + display: flex; + flex-wrap: wrap; + margin-bottom: 10px; + + h3 { + width: 100%; + padding: 0 18px; + } + + .systemTagsInputFieldContainer { + flex: 1 1 80%; + min-width: 0; + margin: 0 12px; + } +} + |