Unify select styles across browsers

8030ce9dddf743741bda822cf35b6cb336beff78

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +10 -2Ignore whitespace
public/img/down-arrow.svg+3 -0
@@ -0,0 +1,3 @@
1+<svg xmlns="http://www.w3.org/2000/svg" width="10" height="7">
2+ <polygon points="0,0 10,0 5,7" fill="#888888" />
3+</svg>
public/style.css+7 -2
@@ -2570,20 +2570,25 @@ input[type="file"] {
25702570/*#################################################################*/
25712571
25722572select {
2573-
2573+ -moz-appearance: none;
2574+ -webkit-appearance: none;
2575+ appearance: none;
25742576 padding: 3px 2px;
25752577 background-color: var(--black30a);
25762578 border: 1px solid var(--SmartThemeBorderColor);
25772579 border-radius: 5px;
25782580 margin-bottom: 5px;
25792581 height: min-content;
2582+ background-image: url('/img/down-arrow.svg');
2583+ background-repeat: no-repeat;
2584+ background-position: right 6px center;
2585+ background-size: 8px 5px;
25802586}
25812587
25822588select option {
25832589 /* works to highlight selected/active option */
25842590 background-color: var(--white50a);
25852591 color: var(--black70a);
2586-
25872592}
25882593
25892594select option:not(:checked) {