diff --git a/components/__snapshots__/quick_input.test.jsx.snap b/components/__snapshots__/quick_input.test.jsx.snap index 98543f024d26..1080d8ea8e94 100644 --- a/components/__snapshots__/quick_input.test.jsx.snap +++ b/components/__snapshots__/quick_input.test.jsx.snap @@ -59,7 +59,9 @@ exports[`components/QuickInput should render clear button with customized toolti onMouseOut={[Function]} onMouseOver={[Function]} > - × + @@ -121,7 +123,9 @@ exports[`components/QuickInput should render clear button with customized toolti onMouseOut={[Function]} onMouseOver={[Function]} > - × + @@ -191,7 +195,9 @@ exports[`components/QuickInput should render clear button with default tooltip t onMouseOut={[Function]} onMouseOver={[Function]} > - × + diff --git a/components/channel_layout/center_channel/center_channel.tsx b/components/channel_layout/center_channel/center_channel.tsx index e077d639a327..8e614e81f020 100644 --- a/components/channel_layout/center_channel/center_channel.tsx +++ b/components/channel_layout/center_channel/center_channel.tsx @@ -35,6 +35,7 @@ export default class CenterChannel extends React.PureComponent { lastReturnTo: '', }; } + static getDerivedStateFromProps(nextProps: Props, prevState: State) { if (prevState.lastReturnTo !== nextProps.location.pathname && nextProps.location.pathname.includes('/pl/')) { return { diff --git a/components/invitation_modal/invitation_modal.scss b/components/invitation_modal/invitation_modal.scss index a0d620eb29dd..b9ce575b2c93 100644 --- a/components/invitation_modal/invitation_modal.scss +++ b/components/invitation_modal/invitation_modal.scss @@ -8,7 +8,8 @@ height: 100%; align-items: center; font-size: 16px; - color: var(--center-channel-color-90); + color: var(--center-channel-color); + @media (max-width: 768px) { padding-left: 15px; padding-right: 15px; diff --git a/components/plugin_marketplace/marketplace_modal.scss b/components/plugin_marketplace/marketplace_modal.scss index 1bf11364da7b..2ea2a1cdf5c1 100644 --- a/components/plugin_marketplace/marketplace_modal.scss +++ b/components/plugin_marketplace/marketplace_modal.scss @@ -10,7 +10,7 @@ height: 100%; align-items: center; font-size: 16px; - color: var(--center-channel-color-90); + color: var(--center-channel-color); @media (max-width: 768px) { padding-left: 15px; @@ -37,10 +37,10 @@ .input-clear { top: 32px; - right: 38px; - font-size: 22px; - width: 30px; - height: 30px; + right: 36px; + font-size: 16px; + width: 32px; + height: 32px; display: flex; align-items: center; justify-content: center; @@ -103,6 +103,7 @@ } .search_input { + box-shadow: none; flex: 1; margin-left: 16px; margin-right: 16px; diff --git a/components/quick_input.jsx b/components/quick_input.jsx index e3515a2883ec..94ea0a6f6c14 100644 --- a/components/quick_input.jsx +++ b/components/quick_input.jsx @@ -152,7 +152,7 @@ export default class QuickInput extends React.PureComponent { className='input-clear-x' aria-hidden='true' > - {'×'} + diff --git a/components/rhs_card_header/rhs_card_header.jsx b/components/rhs_card_header/rhs_card_header.jsx index 416e5932add5..412c4eb28f54 100644 --- a/components/rhs_card_header/rhs_card_header.jsx +++ b/components/rhs_card_header/rhs_card_header.jsx @@ -127,7 +127,7 @@ export default class RhsCardHeader extends React.Component { > {(ariaLabel) => ( )} @@ -149,7 +149,7 @@ export default class RhsCardHeader extends React.Component {
+ }