v1.0.4 (NC25 (Hub 3) update )

pull/12/head v1.0.4
Paróczai Olivér 2022-10-20 19:47:07 +00:00 zatwierdzone przez GitHub
commit 136353efad
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 21 dodań i 3 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.3</version>
<version>1.0.4</version>
<licence>agpl</licence>
<author mail="me@oliverparoczai.org" homepage="https://oliverparoczai.dev">Oliver Paroczai</author>
<namespace>UnroundedCorners</namespace>
@ -17,6 +17,6 @@ A Nextcloud app that restores the corners of buttons and widgets to their origin
<bugs>https://github.com/OliverParoczai/nextcloud-unroundedcorners/issues</bugs>
<screenshot>https://raw.githubusercontent.com/OliverParoczai/nextcloud-unroundedcorners/master/differences.png</screenshot>
<dependencies>
<nextcloud min-version="15" max-version="24"/>
<nextcloud min-version="15" max-version="29"/>
</dependencies>
</info>

Wyświetl plik

@ -1,12 +1,30 @@
:root{ /* For sitewide buttons */
:root { /* Body container settings */
--body-container-margin: 0.01px !important;
--body-container-radius: 0 !important;
--body-height: calc(100% - env(safe-area-inset-bottom) - var(--body-container-margin)) !important;
}
[data-theme-light], [data-theme-dark]{ /* For sitewide buttons, both themes */
--border-radius-large: 4px !important; /* Used on the dashboard */
--border-radius-pill: 4px !important; /* Used everywhere else */
}
#app-navigation:not(.vue) {
--border-radius-pill: var(--border-radius-pill) !important; /* Navigation buttons on sidebar */
}
.checkbox-radio-switch__label { /* Radio button, used mainly in settings */
border-radius: var(--border-radius-pill) !important;
}
.list-item, .list-item-style, .action-item--single, .action-item__menutoggle{ /* For E-mail app */
border-radius: var(--border-radius-pill) !important;
}
.envelope { /* Content part of E-mails */
border-radius: var(--border-radius-pill) !important;
}
.fc-day-today .fc-daygrid-day-number{ /* For Calendar app */
border-radius: var(--border-radius-pill) !important;
}