css tweaks 6

This commit is contained in:
Andy Miller
2025-10-17 15:56:10 -06:00
parent 1ab0231249
commit db72e521b4
4 changed files with 51 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -20,6 +20,14 @@ $content-padding: 1.5rem;
font-size: 2.5rem;
}
}
&.error::before {
content: "\f071";
font-family: "FontAwesome";
margin-right: 0.65rem;
font-size: 1.2rem;
color: #c0392b;
}
}
.custom-logo {
@@ -1011,7 +1019,8 @@ body.sidebar-quickopen #admin-main {
.safe-upgrade-result {
h3 {
margin-bottom: 0.5rem;
margin-bottom: 0.25rem;
border-bottom: 0;
}
&.success h3 {
@@ -1019,12 +1028,27 @@ body.sidebar-quickopen #admin-main {
}
&.error h3 {
color: #c0392b;
color: #922b21;
}
&.neutral h3 {
color: #6c7a89;
}
&.error {
background: rgba(192, 57, 43, 0.08);
border: 1px solid rgba(192, 57, 43, 0.22);
border-radius: 10px;
padding: 1.2rem 1.4rem;
box-shadow: 0 12px 32px rgba(192, 57, 43, 0.12);
margin-bottom: 1rem;
p {
margin: 0;
font-size: 0.95rem;
color: rgba(47, 59, 72, 0.85);
}
}
}
}

View File

@@ -286,7 +286,29 @@
.safe-upgrade-result {
h3 {
margin-bottom: 0.5rem;
margin-bottom: 0.25rem;
border-bottom: 0;
}
&.error {
background: rgba(192, 57, 43, 0.08);
border: 1px solid rgba(192, 57, 43, 0.22);
border-radius: 10px;
padding: 1.2rem 1.4rem;
box-shadow: 0 12px 32px rgba(192, 57, 43, 0.12);
margin-bottom: 1rem;
text-align: left;
h3 {
color: #922b21;
font-size: 1.1rem;
}
p {
margin: 0;
font-size: 0.95rem;
color: rgba(47, 59, 72, 0.85);
}
}
}
}