Skip to content

Commit

Permalink
Merge pull request #6402 from nextcloud-libraries/backport/6359/next
Browse files Browse the repository at this point in the history
[next] fix(NcListItem): Fix padding in RTL mode.
  • Loading branch information
ShGKme authored Jan 20, 2025
2 parents d57a65a + 60c2b9f commit 42373c9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/NcListItem/NcListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,8 @@ export default {
.list-item-content__details,
.list-item-details__details {
white-space: nowrap;
margin: 0 auto 0 0;
margin-block: 0;
margin-inline: 0 auto;
overflow: hidden;
text-overflow: ellipsis;
}
Expand Down Expand Up @@ -975,7 +976,7 @@ export default {
display: flex;
flex: 1 0;
justify-content: space-between;
padding-left: calc(2 * var(--default-grid-baseline));
padding-inline-start: calc(2 * var(--default-grid-baseline));
min-width: 0;

&__main {
Expand All @@ -1000,7 +1001,7 @@ export default {
flex: 0 0 auto;
align-self: center;
justify-content: center;
margin-left: var(--default-grid-baseline);
margin-inline-start: var(--default-grid-baseline);
}

&__extra-actions {
Expand Down

0 comments on commit 42373c9

Please sign in to comment.