Porównaj commity

...

17 Commity

Autor SHA1 Wiadomość Data
Paróczai Olivér 443d69e759
Add OnlyOffice height fix 2024-04-20 01:58:12 +00:00
Paróczai Olivér bfa93a6721
Version v1.1.3 2024-03-10 02:28:34 +00:00
Paróczai Olivér 39c45b2aaa
Add new button and checkbox types 2024-03-10 02:28:10 +00:00
Paróczai Olivér 6e943cbcca
Version v1.1.2
- Fixes selector width on the contacts page
2023-10-09 10:46:37 +02:00
Paróczai Olivér 4cc31c141f
Version v1.1.2 2023-10-09 08:45:21 +00:00
Paróczai Olivér 0dc48f7046
Fix contact page select width 2023-10-09 08:44:35 +00:00
Paróczai Olivér 2e1ee3f616
Version v1.1.1 (Apply styles uniformly to guest pages)
- Guest pages now use the same border radii in all cases as the logged-in (themed) pages
2023-08-23 21:27:55 +02:00
Paróczai Olivér 0e6973bf60
Version v1.1.1 2023-08-23 21:24:04 +02:00
Paróczai Olivér 10dea05bbb
Unround login page info 2023-08-23 21:23:38 +02:00
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
Paróczai Olivér 1c1b1d6ca0
Version 1.0.9 2023-05-24 09:59:35 +00:00
Paróczai Olivér 0ee1aa97c7
File sharing screen unrounding 2023-05-24 09:57:32 +00:00
Paróczai Olivér c94f93beb0
Version v1.0.8 (PR #19, from @OliverParoczai) 2022-11-24 00:59:21 +01:00
Paróczai Olivér 1c5e390c84
Version 1.0.8 2022-11-24 00:54:19 +01:00
Paróczai Olivér 06f0523648
Add support for high contrast themes 2022-11-24 00:53:51 +01:00
2 zmienionych plików z 28 dodań i 4 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.7</version>
<version>1.1.3</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,10 +1,14 @@
:root { /* Body container settings */
:root { /* Body container settings, mostly for removing the side margins, and for applying the styles to guest pages */
--body-container-margin: 0px !important;
--body-container-radius: 0px !important;
--border-radius-large: 4px !important;
--border-radius-rounded: 4px !important;
--border-radius-pill: 4px !important;
}
[data-theme-default], [data-theme-light], [data-theme-dark]{ /* For sitewide buttons, both themes */
[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 */
}
@ -64,3 +68,23 @@ select {
.icon-history{
border-radius: 100px !important; /* Still E-mail, reversing the border for this icon as it has an animation that would overlap */
}
/* Fix width of select items, especially for the contacts page */
.vs__selected {
min-width: unset !important;
}
/* Used at the file navigation buttons for example */
.button-vue {
border-radius: var(--border-radius-pill) !important;
}
/* Used on some settings panels */
.checkbox-content {
border-radius: var(--border-radius-pill) !important;
}
/* Fix OnlyOffice app height */
#onlyofficeFrame {
height: calc(100vh + 8px);
}