Skip to content

Commit dcc5690

Browse files
committed
fix: styled sortDropdown to match tagDropdown styling
1 parent f5f2fd9 commit dcc5690

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

options/options.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,3 +250,27 @@ a:hover {
250250
background: #f3f4f6;
251251
color: #8868bd;
252252
}
253+
254+
#sortDropdown {
255+
background: #fff;
256+
background-image: url('data:image/svg+xml;utf8,<svg fill="%238868bd" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 8.293a1 1 0 011.414 0L10 9.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
257+
background-repeat: no-repeat;
258+
background-position: right 10px center;
259+
background-size: 18px 18px;
260+
261+
border: 1px solid #d1d5db;
262+
border-radius: 5px;
263+
padding: 7px 32px 7px 12px;
264+
font-size: 1em;
265+
min-width: 160px;
266+
cursor: pointer;
267+
appearance: none;
268+
-webkit-appearance: none;
269+
-moz-appearance: none;
270+
transition: border-color 0.15s;
271+
position: relative;
272+
}
273+
#sortDropdown:focus {
274+
outline: none;
275+
border-color: #8868bd;
276+
}

0 commit comments

Comments
 (0)