1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-30 09:56:23 -07:00

Fix bunkerchan dropdown colors

This commit is contained in:
Eggbertx 2025-02-07 16:56:29 -08:00
parent 21a05e5d25
commit 83c82cba41
3 changed files with 38 additions and 22 deletions

View file

@ -2,6 +2,7 @@ $bgcol: #1D1F21;
$color: #ACACAC;
$hcol: #663E11;
$inputbg: #282A2E;
$inputbg2: #16171A;
$topborder: #B0790A;
$linkcol: #FFB300;
$bordercol: #117743;

View file

@ -6,6 +6,12 @@
color: $color;
}
%darkselect {
background: $inputbg2;
border-radius: 5px;
color: $color;
@extend %formstyle;
}
div.reply,
th.postblock,
@ -17,20 +23,25 @@ table.mgmt-table tr:first-of-type th {
border-radius: 5px;
}
table#postbox-static, div#report-delbox {
table#postbox-static, div#report-delbox, form#filterform {
input,
select,
textarea,
input[type="file"]::file-selector-button,
input[type="file"]::-webkit-file-upload-button {
border-radius: 5px;
@extend %formstyle;
}
select {
@extend %darkselect;
}
button, input[type=submit] {
background:#16171A;
background: $inputbg2;
}
}
select#changepage {
@extend %formstyle;
button.hideblock-button,
select#changepage,
select.post-actions,
select#boardsearch,
select[name="show"] {
@extend %darkselect;
}

View file

@ -17,20 +17,35 @@ div.section-body {
background: #282A2E;
}
select#changepage, table#postbox-static input,
table#postbox-static select,
table#postbox-static input,
table#postbox-static textarea,
table#postbox-static input[type=file]::file-selector-button,
table#postbox-static input[type=file]::-webkit-file-upload-button, div#report-delbox input,
div#report-delbox select,
div#report-delbox textarea,
div#report-delbox input[type=file]::file-selector-button,
div#report-delbox input[type=file]::-webkit-file-upload-button {
div#report-delbox input[type=file]::-webkit-file-upload-button, form#filterform input,
form#filterform textarea,
form#filterform input[type=file]::file-selector-button,
form#filterform input[type=file]::-webkit-file-upload-button, button.hideblock-button,
select#changepage,
select.post-actions,
select#boardsearch,
select[name=show], table#postbox-static select, div#report-delbox select, form#filterform select {
background: #282A2E;
border: 1px double #07371F;
color: #ACACAC;
}
button.hideblock-button,
select#changepage,
select.post-actions,
select#boardsearch,
select[name=show], table#postbox-static select, div#report-delbox select, form#filterform select {
background: #16171A;
border-radius: 5px;
color: #ACACAC;
}
div.reply,
th.postblock,
div.postprev,
@ -41,18 +56,7 @@ table.mgmt-table tr:first-of-type th {
border-radius: 5px;
}
table#postbox-static input,
table#postbox-static select,
table#postbox-static textarea,
table#postbox-static input[type=file]::file-selector-button,
table#postbox-static input[type=file]::-webkit-file-upload-button, div#report-delbox input,
div#report-delbox select,
div#report-delbox textarea,
div#report-delbox input[type=file]::file-selector-button,
div#report-delbox input[type=file]::-webkit-file-upload-button {
border-radius: 5px;
}
table#postbox-static button, table#postbox-static input[type=submit], div#report-delbox button, div#report-delbox input[type=submit] {
table#postbox-static button, table#postbox-static input[type=submit], div#report-delbox button, div#report-delbox input[type=submit], form#filterform button, form#filterform input[type=submit] {
background: #16171A;
}