You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to remove the spacing between the left_meta column's content and the main column:
(It's also distracting having the columns resize as you type, and on wider terminals, the spacing gets worse.)
This could work something like:
.autocomplete--left-column {
width:3;
}
using self.parent.get_component_styles("autocomplete--left-column").width.
What all styles should be supported, and whether this opens up a can of worms, I can't say.
I would also like to position the dropdown flush with the left of the input, since it will be suggesting whole input values, not substrings to be concatenated with the current input value.
I don't have a strong opinion on how this should be specified (CSS or Python API), but the following doesn't work:
I want to remove the spacing between the
left_meta
column's content and themain
column:(It's also distracting having the columns resize as you type, and on wider terminals, the spacing gets worse.)
This could work something like:
using
self.parent.get_component_styles("autocomplete--left-column").width
.What all styles should be supported, and whether this opens up a can of worms, I can't say.
I would also like to position the dropdown flush with the left of the input, since it will be suggesting whole input values, not substrings to be concatenated with the current input value.
I don't have a strong opinion on how this should be specified (CSS or Python API), but the following doesn't work:
Unlike in the browser,
!important
can't beat an inline style.The text was updated successfully, but these errors were encountered: