Implement download feature for calendars and addressbooks

Fixes #70
This commit is contained in:
Lennart
2025-06-10 17:23:11 +02:00
parent 300a0024ee
commit 103ac0b1f9
16 changed files with 223 additions and 15 deletions

View File

@@ -62,7 +62,8 @@ html {
background-color: var(--background-color);
}
button {
button,
.button {
border: none;
background: var(--primary-color);
padding: 8px 12px;
@@ -163,9 +164,9 @@ table {
"title comps color-chip"
"description . color-chip"
"subscription-url . color-chip"
"restore . color-chip"
"actions . color-chip"
". . color-chip";
grid-template-rows: 12px auto auto auto 12px;
grid-template-rows: 12px auto auto auto auto 12px;
grid-template-columns: min-content auto 80px;
color: inherit;
text-decoration: none;
@@ -184,6 +185,10 @@ table {
white-space: nowrap;
}
span {
margin: 8px initial;
}
.comps {
grid-area: comps;
@@ -212,8 +217,9 @@ table {
grid-area: color-chip;
}
.restore-form {
grid-area: restore;
.actions {
grid-area: actions;
width: fit-content;
}
&:hover {