Add page branding options to filesystem

This commit is contained in:
2024-02-15 18:52:46 +01:00
parent a399c03869
commit 08676e6071
15 changed files with 730 additions and 104 deletions

View File

@@ -120,6 +120,12 @@ p>img {
max-width: 100%;
}
code {
display: inline-block;
background: var(--background);
border-radius: 5px;
}
/* Page layout elements */
.button_toggle_navigation {
@@ -527,7 +533,7 @@ input[type="submit"]:active,
input[type="button"]:active,
input[type="color"]:active,
select:active {
box-shadow: inset 4px 4px 8px var(--shadow_color);
box-shadow: inset 4px 4px 6px var(--shadow_color);
/* Exactly 4px offset compared to the inactive padding to give a depth effect */
padding: 9px 1px 1px 9px;
}
@@ -538,8 +544,8 @@ select:active {
}
.button_red {
background: linear-gradient(var(--danger_color), var(--danger_color_dark)) !important;
color: var(--highlight_text_color) !important;
background: var(--danger_color) !important;
color: var(--danger_text_color) !important;
}
button:disabled,
@@ -663,7 +669,7 @@ input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus {
box-shadow: inset 0 0 3px 0 var(--highlight_color);
box-shadow: inset 0px 0px 0px 1px var(--highlight_color);
}
textarea:disabled,