pull/18/head v1.0.6
Paróczai Olivér 2022-10-21 20:14:39 +02:00 zatwierdzone przez GitHub
commit cd9c40f3c0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 11 dodań i 11 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.5</version>
<version>1.0.6</version>
<licence>agpl</licence>
<author mail="me@oliverparoczai.org" homepage="https://oliverparoczai.dev">Oliver Paroczai</author>
<namespace>UnroundedCorners</namespace>

Wyświetl plik

@ -1,7 +1,6 @@
:root { /* Body container settings */
--body-container-margin: 0px !important;
--body-container-radius: 0px !important;
--body-height: 100% !important;
}
[data-theme-light], [data-theme-dark]{ /* For sitewide buttons, both themes */
@ -33,10 +32,6 @@
border-radius: var(--border-radius-pill) !important;
}
.main-view { /* For Talk app */
height: calc(100% - 50px) !important;
}
#uploadprogressbar { /* For upload progress bar */
border-radius: var(--border-radius-pill) 0 0 var(--border-radius-pill) !important;
}
@ -52,13 +47,18 @@ select {
border-radius: var(--border-radius-pill) !important;
}
/* Fix some button misalignments */
#body-login input.primary { /* For login button */
.guest-box, .body-login-container { /* Login container (requires hardcoded radius, login page overrides local variables) */
border-radius: 4px !important;
}
.two-factor-provider { /* For two-factor login options */
width: 100% !important;
}
#body-login .two-factor-submit { /* For two factor submit button */
width: 269px !important; /* It's a hardcoded width, following the same hardcoded width from the two factor input. That's just sad :( */
/* Fix some button misalignments */
#body-login:first-of-type button[type="submit"] { /* For login button, also requires hardcoded radius */
width: 100% !important;
border-radius: 4px !important;
}
.icon-history{