Johannes Rieke
Johannes Rieke
Hey @cppratt1! Which color exactly would you like to change? The color of the entire navigation section? Or the color of the currently active page? If you have a mock...
Preliminary design: And maybe we could switch the preview icon and background color based on the file type: - document icon for pdf/text/etc - table icon for CSV - folder...
Also need to think through how this integrates with `st.download_button`.
Can't you just do this with session state, e.g. with something like this: ```python import streamlit as st def select_b_c(): st.session_state.multi = ["B", "C"] st.multiselect("Multiselect", ["A", "B", "C"], key="multi") st.button("Select...
@rwelgosh can you also post a screenshot what this looks like in code blocks inside an `st.exception` block? E.g. for stacktraces. Since you're using `codeBackgroundColor`, it will very likely not...
I think I would rather have this as a config option because: 1. `st.dataframe` already has so many parameters, it feels annoying to add one more for such a small...
We recently shipped an `expanded` parameter for `st.navigation`, which lets you always show all pages. See here: https://docs.streamlit.io/develop/api-reference/navigation/st.navigation
Hey, thanks for your PR! I think the idea in the linked issue was to make the cursor show 🚫 when hovering the pages in the sidebar (similar to the...
# Update Hey all! We just started working on layout improvements. The current plan is to extend `st.container` to act similarly to CSS flexbox, with some simplifications to make it...
LGTM from product/design side!