Skip to content

Commit 58aa764

Browse files
committed
Increase max width of action button
Allows for longer German words which cannot be wrapper when they don't contain spaces. In case a longer text if present that doesn't fit and cannot wrap, like an email address, an ellipsis will now be shown. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
1 parent 4849289 commit 58aa764

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/assets/action.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,17 @@
100100

101101
// long text area
102102
p {
103-
width: 185px;
103+
width: 220px;
104104
padding: #{$icon-margin / 2} 0;
105105

106106
cursor: pointer;
107107
text-align: left;
108108

109109
line-height: 1.6em;
110+
111+
// in case there are no spaces like long email addresses
112+
overflow: hidden;
113+
text-overflow: ellipsis;
110114
}
111115

112116
&__longtext {

0 commit comments

Comments
 (0)