CSS
/* select要素とoption要素のカスタマイズ ==================================== */
/* ☆ select要素のカスタマイズ必須のCSS指定 ☆ */
select,
::picker(select) {
appearance: base-select;
}
/* ポップアップするピッカー */
::picker(select) {
margin-block: 4px;
padding: 2px;
border: #ccc solid 1px;
border-radius: 6px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* ぼかし部分の影 */
0 1px 3px rgba(0, 0, 0, 0.08); /* 縁の影 */
/* アニメーションも設定できる */
transition: scale 0.2s;
}
::picker(select):hover {
scale: 1.05;
}
/* セレクト要素の矢印アイコン */
select::picker-icon {
content: "▽";
}
/* optionのチェックマーク */
option::checkmark {
content: "✔";
color: green;
}
/* ボタン選択内は、説明欄を非表示にして、画像サイズを小さくする */
selectedcontent .desc {
display: none;
}
selectedcontent img {
width: 40px;
height: 40px;
}
selectedcontent .inner_option {
gap: 6px;
}
/* select要素とoption要素をhoverしたときの背景色指定 */
select:hover,
option:enabled:hover {
background-color: palegoldenrod;
}
/* セレクトボックス右端矢印を上下中央揃えにする */
select {
display: inline-flex;
align-items: center;
}
/* その他、デザイン調整 ==================================== */
.inner_option {
padding-block: 4px;
display: flex;
align-items: center;
gap: 8px;
}
.inner_option img {
border-radius: 8px;
}
.desc {
color: #999;
line-height: 1;
font-size: 0.72rem;
}