Skip to content

Commit

Permalink
fix(a11y): sidebar sharing panel icon margins
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannik Stehle committed Sep 20, 2024
1 parent b2c9a1e commit 3551ca2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
</div>
<expiration-date-indicator
v-if="hasExpirationDate"
class="files-collaborators-collaborator-expiration"
class="files-collaborators-collaborator-expiration oc-mr-s"
data-testid="recipient-info-expiration-date"
:expiration-date="DateTime.fromISO(share.expirationDateTime)"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,23 @@
v-if="linkShare.hasPassword"
v-oc-tooltip="$gettext('This link is password-protected')"
name="lock-password"
class="oc-files-file-link-has-password"
class="oc-files-file-link-has-password oc-mr-xs"
fill-type="line"
:aria-label="$gettext('This link is password-protected')"
/>
</div>
<expiration-date-indicator
v-if="linkShare.expirationDateTime"
:expiration-date="DateTime.fromISO(linkShare.expirationDateTime)"
class="oc-ml-xs"
class="oc-mx-xs"
/>
<copy-link :link-share="linkShare" class="oc-ml-xs" />
<copy-link :link-share="linkShare" class="oc-mx-xs" />
<edit-dropdown
:can-rename="canRename"
:is-modifiable="isModifiable"
:is-password-removable="isPasswordRemovable"
:link-share="linkShare"
class="oc-ml-xs"
@remove-public-link="$emit('removePublicLink', $event)"
@update-link="$emit('updateLink', $event)"
@show-password-modal="showPasswordModal"
Expand Down

0 comments on commit 3551ca2

Please sign in to comment.