Porównaj commity

...

3 Commity

Autor SHA1 Wiadomość Data
Paróczai Olivér 2004597ad5
Version v1.1.0
- Fixes issue #21
- Bumps version to NC 27
2023-08-21 13:13:38 +00:00
Paróczai Olivér 1fd963d86c
Fix dashboard page corners 2023-08-21 13:11:44 +00:00
Paróczai Olivér 43b42b3606
Version v1.1.0 2023-08-21 13:09:49 +00:00
2 zmienionych plików z 5 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.9</version>
<version>1.1.0</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="25" max-version="29"/>
<nextcloud min-version="27" max-version="37"/>
</dependencies>
</info>

Wyświetl plik

@ -1,11 +1,13 @@
:root { /* Body container settings */
:root { /* Body container settings, mostly for removing the side margins */
--body-container-margin: 0px !important;
--body-container-radius: 0px !important;
--border-radius-large: 0px !important;
--border-radius-rounded: 0px !important;
}
[data-theme-default], [data-theme-light], [data-theme-dark], [data-theme-light-highcontrast], [data-theme-dark-highcontrast]{ /* For sitewide buttons, both themes */
--border-radius-large: 4px !important; /* Used on the dashboard */
--border-radius-rounded: 4px !important; /* Used on the dashboard */
--border-radius-pill: 4px !important; /* Used everywhere else */
}