nextcloud-unroundedcorners/css/unround.css

67 wiersze
2.1 KiB
CSS
Czysty Zwykły widok Historia

2022-10-20 19:44:46 +00:00
:root { /* Body container settings */
2022-10-21 11:57:31 +00:00
--body-container-margin: 0px !important;
--body-container-radius: 0px !important;
--body-height: 100% !important;
2022-10-20 19:44:46 +00:00
}
[data-theme-light], [data-theme-dark]{ /* For sitewide buttons, both themes */
2021-09-12 16:42:03 +00:00
--border-radius-large: 4px !important; /* Used on the dashboard */
--border-radius-pill: 4px !important; /* Used everywhere else */
}
2022-10-20 19:44:46 +00:00
#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;
}
2021-09-12 16:42:03 +00:00
.list-item, .list-item-style, .action-item--single, .action-item__menutoggle{ /* For E-mail app */
border-radius: var(--border-radius-pill) !important;
2021-09-12 16:42:03 +00:00
}
2022-10-20 19:44:46 +00:00
.envelope { /* Content part of E-mails */
border-radius: var(--border-radius-pill) !important;
}
2021-09-12 16:42:03 +00:00
.fc-day-today .fc-daygrid-day-number{ /* For Calendar app */
border-radius: var(--border-radius-pill) !important;
2021-09-18 10:59:35 +00:00
}
.note-card-view, .folder-card-view{ /* For Carnet app */
border-radius: var(--border-radius-pill) !important;
2021-09-18 10:59:35 +00:00
}
2021-10-13 21:56:34 +00:00
2022-10-21 11:47:26 +00:00
.main-view { /* For Talk app */
height: calc(100% - 50px) !important;
}
2021-10-13 21:56:34 +00:00
#uploadprogressbar { /* For upload progress bar */
border-radius: var(--border-radius-pill) 0 0 var(--border-radius-pill) !important;
2021-10-13 21:56:34 +00:00
}
2021-10-15 19:32:08 +00:00
/* For buttons, needs to be before specific button overrides (like the E-mail icon-history) */
2021-10-15 19:32:08 +00:00
input[type='submit'],
input[type='submit'].icon-confirm,
input[type='button'],
button,
a.button,
.button,
select {
border-radius: var(--border-radius-pill) !important;
}
2021-10-17 00:40:34 +00:00
/* Fix some button misalignments */
#body-login input.primary { /* For login button */
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 :( */
}
.icon-history{
border-radius: 100px !important; /* Still E-mail, reversing the border for this icon as it has an animation that would overlap */
}