eschutho commented on a change in pull request #11911:
URL:
https://github.com/apache/incubator-superset/pull/11911#discussion_r535439908
##########
File path: superset-frontend/src/components/Select/styles.tsx
##########
@@ -257,12 +257,14 @@ export const DEFAULT_STYLES: PartialStylesConfig = {
],
};
-const inputTagStyles = {
- background: 'none',
- border: 'none',
- outline: 'none',
- padding: 0,
- width: '100%',
+const inputTagStyles = (isMultiWithValue: boolean | undefined) => {
+ const styles = {
+ background: 'none',
+ border: 'none',
+ outline: 'none',
+ padding: 0,
+ };
Review comment:
SGTM! I made one slight change, and named it `INPUT_TAG_BASE_STYLES` b/c
they don't apply as is to all the input tags.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]