diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2024-02-04 17:37:29 +0100 |
---|---|---|
committer | fenn-cs <fenn25.fn@gmail.com> | 2024-02-04 23:02:22 +0100 |
commit | 60959db89e81d277eafb9a25678bc3cd8fe171fc (patch) | |
tree | fbf0ffd71b736c9ae20eea12793fada0bb4baa2a /apps/files_sharing/src | |
parent | 3355bdb643ace0697c563ed6b9b5c7496d04cd32 (diff) | |
download | nextcloud-server-60959db89e81d277eafb9a25678bc3cd8fe171fc.tar.gz nextcloud-server-60959db89e81d277eafb9a25678bc3cd8fe171fc.zip |
Show quick permission subline on newline
- Show quick permission details/explanations on subline
- Fix icon colors, should be white (or component set color) when highlighted.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/views/SharingDetailsTab.vue | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue index ef7f4964a84..8a77100bac1 100644 --- a/apps/files_sharing/src/views/SharingDetailsTab.vue +++ b/apps/files_sharing/src/views/SharingDetailsTab.vue @@ -56,7 +56,7 @@ button-variant-grouped="vertical" @update:checked="toggleCustomPermissions"> {{ t('files_sharing', 'File drop') }} - <small>{{ t('files_sharing', 'Upload only') }}</small> + <small class="subline">{{ t('files_sharing', 'Upload only') }}</small> <template #icon> <UploadIcon :size="20" /> </template> @@ -69,7 +69,7 @@ button-variant-grouped="vertical" @update:checked="expandCustomPermissions"> {{ t('files_sharing', 'Custom permissions') }} - <small>{{ customPermissionsList }}</small> + <small class="subline">{{ customPermissionsList }}</small> <template #icon> <DotsHorizontalIcon :size="20" /> </template> @@ -993,7 +993,6 @@ export default { span:nth-child(1) { align-items: center; justify-content: center; - color: var(--color-primary-element); padding: 0.1em; } @@ -1004,6 +1003,10 @@ export default { flex-direction: column; } } + + .subline { + display: block; + } } } |