diff --git a/_sass/fabric.scss b/_sass/fabric.scss index ac0132e5..b180b3cd 100644 --- a/_sass/fabric.scss +++ b/_sass/fabric.scss @@ -165,6 +165,7 @@ p { } .javadoc-selector { + position: relative; margin-bottom: 6px; select { @@ -184,17 +185,19 @@ p { -moz-appearance: none; appearance: none; - // Add back the arrow, see https://stackoverflow.com/a/57510283 - background: url("data:image/svg+xml;utf8,") no-repeat; - background-size: 10px; - background-position: calc(100% - 16px) center; - background-repeat: no-repeat; - option { background-color: $grey-color-very-dark; } } } + + .javadoc-selector::after { + content: "▼"; + position: absolute; + right: 1rem; + top: 0.5rem; + pointer-events: none; + } } img{