Fix general rule for buttons (PR #4, from @karlprieb)

This is mainly for fixing the login button, but overrides the styling of other buttons as well in case they have the same inconsistency
pull/5/head
Paróczai Olivér 2021-10-16 20:42:35 +00:00 zatwierdzone przez GitHub
commit 1b2e9af0f5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -8,7 +8,7 @@
# Unrounded Corners
A Nextcloud app that restores the corners of buttons and widgets to their original looks by unrounding them.
]]></description>
<version>1.0.1</version>
<version>1.0.2</version>
<licence>agpl</licence>
<author mail="me@oliverparoczai.org" homepage="https://oliverparoczai.dev">Oliver Paroczai</author>
<namespace>UnroundedCorners</namespace>

Wyświetl plik

@ -22,3 +22,14 @@
#uploadprogressbar { /* For upload progress bar */
border-radius: var(--border-radius-pill) 0 0 var(--border-radius-pill) !important;
}
/* For buttons */
input[type='submit'],
input[type='submit'].icon-confirm,
input[type='button'],
button,
a.button,
.button,
select {
border-radius: var(--border-radius-pill) !important;
}