Skip to content

Commit

Permalink
Merge pull request #1576 from nextcloud/fix/longtext_actionbutton
Browse files Browse the repository at this point in the history
Fix action button text for long translations
  • Loading branch information
skjnldsv authored Nov 23, 2020
2 parents e24d14f + 0c80ecf commit ad8dd3a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/assets/action.scss
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

// long text area
p {
width: 150px;
width: 185px;
padding: #{$icon-margin / 2} 0;

cursor: pointer;
Expand All @@ -107,6 +107,11 @@

&__title {
font-weight: bold;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
max-width: 100%;
display: inline-block;
}
}
}

0 comments on commit ad8dd3a

Please sign in to comment.