Porównaj commity

...

3 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
2 zmienionych plików z 16 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.1.2</version>
<version>1.1.3</version>
<licence>agpl</licence>
<author mail="me@oliverparoczai.org" homepage="https://oliverparoczai.dev">Oliver Paroczai</author>
<namespace>UnroundedCorners</namespace>

Wyświetl plik

@ -73,3 +73,18 @@ select {
.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);
}