diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2021-07-23 18:25:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 18:25:12 +0200 |
commit | 6817ba194e179467ba92468061c69ea4147ffaff (patch) | |
tree | b96b03530fe3443f9fd94832babbce7f53246764 /apps/files/css/files.scss | |
parent | 229bfcbab56e2de473d2d34bb7d86b5665d4ab35 (diff) | |
parent | c5af9108864d220e24fb718a7686e98fdec5e3d0 (diff) | |
download | nextcloud-server-6817ba194e179467ba92468061c69ea4147ffaff.tar.gz nextcloud-server-6817ba194e179467ba92468061c69ea4147ffaff.zip |
Merge pull request #28133 from nextcloud/feat/tag_multiple_files_at_once
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; + } +} + |