Make the privacy dropdown button not look strange when using top placement

Inspired by 8fe1f8d4ce
th-downstream
Thibaut Girka 6 years ago committed by ThibG
parent 64449831c8
commit 52fe8ee95d

@ -168,6 +168,7 @@ export default class ComposerOptionsDropdown extends React.PureComponent {
const computedClass = classNames('composer--options--dropdown', { const computedClass = classNames('composer--options--dropdown', {
active, active,
open, open,
top: placement === 'top',
}); });
// The result. // The result.

@ -406,6 +406,12 @@
background: $ui-highlight-color; background: $ui-highlight-color;
transition: none; transition: none;
} }
&.top {
& > .value {
border-radius: 0 0 4px 4px;
box-shadow: 0 4px 4px rgba($base-shadow-color, 0.1);
}
}
} }
} }

Loading…
Cancel
Save