Merge pull request #54841 from nextcloud/fix/files-inline-sharing-status

fix(files_sharing): add some gap between text and sharing status icon
This commit is contained in:
Andy Scherzinger 2025-09-03 18:36:58 +02:00 committed by GitHub
commit e135a595d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 11 deletions

View file

@ -4,18 +4,22 @@
*/
// Only when rendered inline, when not enough space, this is put in the menu
.action-items > .files-list__row-action-sharing-status {
// put icon at the end of the button
direction: rtl;
// align icons with text-less inline actions
padding-inline-end: 0 !important;
padding-inline: 0 !important;
.button-vue__wrapper {
// put icon at the end of the button
flex-direction: row-reverse;
gap: var(--default-grid-baseline);
}
}
svg.sharing-status__avatar {
height: 32px !important;
width: 32px !important;
max-height: 32px !important;
max-width: 32px !important;
border-radius: 32px;
height: var(--button-inner-size, 32px) !important;
width: var(--button-inner-size, 32px) !important;
max-height: var(--button-inner-size, 32px) !important;
max-width: var(--button-inner-size, 32px) !important;
border-radius: var(--button-inner-size, 32px);
overflow: hidden;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long