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

fix(files_sharing): add some gap between text and sharing status icon
pull/54847/head
Andy Scherzinger 1 month ago committed by GitHub
commit e135a595d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 20
      apps/files_sharing/src/files_actions/sharingStatusAction.scss
  2. 4
      dist/files_sharing-init.js
  3. 2
      dist/files_sharing-init.js.map

@ -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
Loading…
Cancel
Save