fix upload color for replacements page

This commit is contained in:
edshot99 2025-02-07 12:52:13 -06:00
parent 83bb9f0de2
commit 62ad7adf8b

View File

@ -4,15 +4,6 @@ div#c-uploads {
border-bottom: 2px solid var(--bg-300); border-bottom: 2px solid var(--bg-300);
} }
.col2 .fileinput-wrapper .fileinput {
background: var(--bg-400);
border: 2px dashed var(--bg-400);
}
.col2 .linkinput-wrapper .linkinput {
background: var(--bg-300);
}
input[type="file"] { input[type="file"] {
background-color: var(--bg-400); background-color: var(--bg-400);
border-radius: 4px; border-radius: 4px;
@ -52,3 +43,14 @@ div#c-uploads {
} }
} }
} }
div#c-uploads div#a-new .col2 .fileinput-wrapper .fileinput,
div#replacement-uploader .fileinput-wrapper .fileinput {
background: var(--bg-400);
border: 2px dashed var(--bg-400);
}
div#c-uploads div#a-new .col2 .linkinput-wrapper .linkinput,
div#replacement-uploader .linkinput-wrapper .linkinput {
background: var(--bg-300);
}