File tree Expand file tree Collapse file tree 4 files changed +1
-9
lines changed
airbyte-webapp/src/pages/connections/ConnectionMappingsPage Expand file tree Collapse file tree 4 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 2525 }
2626
2727 & --secondary {
28- border : variables .$border-thin solid colors .$grey-100 ;
2928 width : 150px ;
3029
3130 input {
5049 }
5150 }
5251
53- & .addStreamForMappingComboBox--secondary :hover input ::placeholder {
54- color : colors .$grey-400 ;
55- }
56-
5752 & :not (.disabled ):hover {
5853 border-color : colors .$grey-400 ;
5954 color : colors .$grey-600 ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { FormattedMessage } from "react-intl";
44
55import { hashingMapperConfiguration } from "components/connection/ConnectionForm/schemas/mapperSchema" ;
66import { FlexContainer } from "components/ui/Flex" ;
7- import { Icon } from "components/ui/Icon" ;
87import { ListBox , ListBoxControlButtonProps } from "components/ui/ListBox" ;
98import { Text } from "components/ui/Text" ;
109
@@ -120,7 +119,6 @@ const SelectHashingMethodControlButton: React.FC<ListBoxControlButtonProps<Hashi
120119 return (
121120 < FlexContainer alignItems = "center" gap = "none" >
122121 < Text color = { isDisabled ? "grey300" : "darkBlue" } > { selectedOption . label } </ Text >
123- < Icon type = "caretDown" color = "disabled" />
124122 </ FlexContainer >
125123 ) ;
126124} ;
Original file line number Diff line number Diff line change 1414
1515 input {
1616 font-size : variables .$font-size-md ;
17+ width : fit-content ;
1718
1819 ::placeholder {
1920 font-size : variables .$font-size-md ;
Original file line number Diff line number Diff line change 11import { FormattedMessage } from "react-intl" ;
22
33import { FlexContainer } from "components/ui/Flex" ;
4- import { Icon } from "components/ui/Icon" ;
54import { ListBox , ListBoxControlButtonProps } from "components/ui/ListBox" ;
65import { Text } from "components/ui/Text" ;
76
@@ -75,7 +74,6 @@ export const MappingTypeListBox: React.FC<MappingTypeListBoxProps> = ({
7574 < Text as = "span" color = { isDisabled ? "grey300" : "darkBlue" } >
7675 < FormattedMessage id = { mappingTypeLabels [ selectedOption . value ] . title } />
7776 </ Text >
78- < Icon type = "caretDown" color = "disabled" />
7977 </ FlexContainer >
8078 ) ;
8179 } ;
You can’t perform that action at this time.
0 commit comments