Streamlit:修改多选标签背景色

Streamlit: modify the multiselect tag background color

我使用 streamlit 有一段时间了,但仍然不知道如何更改 multiselect 标签的背景颜色。有什么方法可以解决这个问题 属性?

我尝试过检查元素,但没有发现任何需要改进的地方。

/* change the select box properties */
div[data-baseweb="select"]>div {
  background-color:#fff;
  border-color:rgb(194, 189, 189);
  width: 50%;
}

/* change the tag font properties */
span[data-baseweb="tag"]>span {
  color: black;
  font-size: 17px;
 /* background-color:#fff; */   /* only turns part of the tag white */
}

要修改多选的视觉效果,您可以这样做:

import streamlit as st

st.markdown("""
<style>
/* The input itself */
div[data-baseweb="select"] > div {
  background-color: yellow !important;
  font-size: 23px !important;
}

/* The list of choices */
li>span {
  color: red !important;
  font-size: 35px;
  background-color: blue !important;
}

li {
  background-color: green !important;
}
</style>
""", unsafe_allow_html=True)

st.multiselect("foo", ["aaaaaa", "bbee ", "opeen Jej"])