Fix color dependencies

This commit is contained in:
2026-04-13 23:02:35 +02:00
parent cb505d9092
commit 52316d9abb
12 changed files with 132 additions and 99 deletions

View File

@@ -10,7 +10,7 @@
flex: 0 1 auto;
.logo {
background: rgba(255, 255, 255, .4);
background: color.$default-bg;
padding: 2rem 1rem;
border-radius: var.$block-radius var.$block-radius 0 0;
@@ -54,15 +54,15 @@
.settings-footer {
flex: 0 1 auto;
background: rgba(255, 255, 255, .4);
background: color.$default-bg;
border-radius: 0 0 3px 3px;
font-size: 0.7em;
padding: 0.3rem;
text-align: center;
color: #888;
color: color.$default;
a {
color: #777;
color: color.$default;
text-decoration: none;
}
}
@@ -104,10 +104,10 @@
}
.download {
color: color.$legend;
color: color.$default;
&:hover {
color: #0078A8;
color: color.$download-hover;
}
}
}
@@ -118,8 +118,8 @@
width: calc(100% - 6em);
&:disabled {
color: #999;
background: rgba(255,255,255,0.2);
color: color.$default-disabled;
background: color.$default-bg-trans-disabled;
}
}
button#nl_btn {
@@ -134,7 +134,7 @@
}
&.loading {
background-color: color.$message;
color: white;
color: color.$post-input-bg;
span {
@extend .flicker;
}