Merge pull request #24770 from nextcloud/fix-dialog-buttons

This commit is contained in:
Julius Härtl 2020-12-22 15:49:38 +01:00 committed by GitHub
commit e28d21a6a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 4 deletions

View File

@ -172,7 +172,7 @@ button, .button,
input[type='button'],
input[type='submit'],
input[type='reset'] {
padding: 6px 12px;
padding: 6px 16px;
width: auto;
min-height: $default-height;
cursor: pointer;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -42,7 +42,9 @@
button {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-overflow: ellipsis;
height: 44px;
min-width: 44px;
}
}