diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-03-16 13:10:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-16 13:10:51 +0100 |
commit | 1d7423eea66c05666d44a2dde588c8c28abce1c3 (patch) | |
tree | e2bea54b88c6d56ff580179fde1ca5cb179b4220 /apps | |
parent | aef66da82b0408caefe330f894c1543015ff17ff (diff) | |
parent | b7bccc11a1662d09bf966f6b8adc5314426443f8 (diff) | |
download | nextcloud-server-1d7423eea66c05666d44a2dde588c8c28abce1c3.tar.gz nextcloud-server-1d7423eea66c05666d44a2dde588c8c28abce1c3.zip |
Merge pull request #44217 from nextcloud/fix-quick-share-options-subline
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/src/views/SharingDetailsTab.vue | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue index aed735e2abb..3667870de5a 100644 --- a/apps/files_sharing/src/views/SharingDetailsTab.vue +++ b/apps/files_sharing/src/views/SharingDetailsTab.vue @@ -1056,9 +1056,15 @@ export default { flex-direction: column; } } - - .subline { - display: block; + + /* Target component based style in NcCheckboxRadioSwitch slot content*/ + :deep(span.checkbox-content__text.checkbox-radio-switch__text) { + flex-wrap: wrap; + + .subline { + display: block; + flex-basis: 100%; + } } } |