2021-10-05 16:03:17 +01:00
|
|
|
.section-settings {
|
2021-12-23 21:29:46 +00:00
|
|
|
background: var(--background-card);
|
2022-01-21 18:02:27 +00:00
|
|
|
border: 1px solid var(--border);
|
2021-12-01 20:13:24 +00:00
|
|
|
box-shadow: var(--shadow);
|
2020-07-26 17:49:11 +01:00
|
|
|
}
|
2021-07-20 19:30:49 +01:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.section-settings, .section-settings-details {
|
2022-01-19 23:54:45 +00:00
|
|
|
border-radius: .6rem;
|
2021-07-29 17:29:25 +01:00
|
|
|
box-sizing: border-box;
|
2022-01-21 18:02:27 +00:00
|
|
|
margin-bottom: .6rem;
|
|
|
|
padding: .6rem;
|
2021-12-01 20:13:24 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2021-12-23 21:29:46 +00:00
|
|
|
.section-settings-details {
|
2022-01-21 18:02:27 +00:00
|
|
|
border: 1px solid var(--border);
|
2021-12-23 21:29:46 +00:00
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2021-12-23 21:29:46 +00:00
|
|
|
.section-settings-details-title {
|
|
|
|
display: block;
|
|
|
|
}
|
2022-01-12 16:07:28 +00:00
|
|
|
|
2021-12-23 21:29:46 +00:00
|
|
|
.section-settings-details[open] {
|
2021-12-06 20:56:06 +00:00
|
|
|
border-left: 2px solid var(--foreground);
|
2020-07-26 17:49:11 +01:00
|
|
|
}
|
|
|
|
|
2021-12-23 21:29:46 +00:00
|
|
|
.section-settings-details[open] > summary:first-child {
|
|
|
|
margin-bottom: var(--s);
|
2021-07-29 17:29:25 +01:00
|
|
|
}
|
2020-08-08 01:20:51 +01:00
|
|
|
|
2021-12-23 21:29:46 +00:00
|
|
|
.section-settings-details summary + form {
|
|
|
|
padding-left: var(--s);
|
2020-08-08 01:20:51 +01:00
|
|
|
}
|
2021-07-20 19:30:49 +01:00
|
|
|
|
2021-11-27 20:26:44 +00:00
|
|
|
.section-settings hr {
|
2022-01-19 23:54:45 +00:00
|
|
|
margin-bottom: .6rem;
|
2022-01-21 18:02:27 +00:00
|
|
|
margin-top: .6rem;
|
2021-08-09 18:06:45 +01:00
|
|
|
}
|
2021-11-15 14:07:05 +00:00
|
|
|
|
2022-01-21 18:02:27 +00:00
|
|
|
.section-settings-details summary em:first-letter, .section-settings-details summary h3:first-letter {
|
2021-09-17 20:33:02 +01:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2021-08-09 18:06:45 +01:00
|
|
|
|
2022-01-12 16:07:28 +00:00
|
|
|
.section-settings-details[open] .set-nav li:last-of-type {
|
|
|
|
margin-bottom: 0;
|
2020-08-12 21:02:34 +01:00
|
|
|
}
|
2021-07-20 19:30:49 +01:00
|
|
|
|
2022-01-12 16:07:28 +00:00
|
|
|
.section-settings-details summary:after {
|
|
|
|
content: "\2193";
|
|
|
|
float: right;
|
2021-07-20 19:30:49 +01:00
|
|
|
}
|
|
|
|
|
2022-01-12 16:07:28 +00:00
|
|
|
.section-settings-details[open] summary:after {
|
2022-01-21 18:02:27 +00:00
|
|
|
animation: fadeOut 200ms cubic-bezier(0, 0.55, 0.45, 1);
|
2022-01-12 16:07:28 +00:00
|
|
|
transform: rotate(180deg);
|
2020-09-05 06:34:41 +01:00
|
|
|
}
|
2021-07-20 19:30:49 +01:00
|
|
|
|
2022-01-12 16:07:28 +00:00
|
|
|
.section-settings-details:not([open]) summary:after {
|
2022-01-21 18:02:27 +00:00
|
|
|
animation: fadeIn 200ms cubic-bezier(0, 0.55, 0.45, 1);
|
2021-07-28 20:16:27 +01:00
|
|
|
transform: initial;
|
2022-01-21 18:02:27 +00:00
|
|
|
}
|