|
@@ -105,19 +105,18 @@ function DatePageFilter({router, resetParamsOnChange, disabled, ...props}: Props
|
|
}
|
|
}
|
|
|
|
|
|
const TitleContainer = styled('div')`
|
|
const TitleContainer = styled('div')`
|
|
- overflow: hidden;
|
|
|
|
- white-space: nowrap;
|
|
|
|
- text-overflow: ellipsis;
|
|
|
|
flex: 1 1 0%;
|
|
flex: 1 1 0%;
|
|
margin-left: ${space(1)};
|
|
margin-left: ${space(1)};
|
|
text-align: left;
|
|
text-align: left;
|
|
|
|
+ ${p => p.theme.overflowEllipsis}
|
|
`;
|
|
`;
|
|
|
|
|
|
const DropdownTitle = styled('div')`
|
|
const DropdownTitle = styled('div')`
|
|
display: flex;
|
|
display: flex;
|
|
align-items: center;
|
|
align-items: center;
|
|
flex: 1;
|
|
flex: 1;
|
|
- width: 100%;
|
|
|
|
|
|
+ width: max-content;
|
|
|
|
+ min-width: 0;
|
|
`;
|
|
`;
|
|
|
|
|
|
export default withRouter(DatePageFilter);
|
|
export default withRouter(DatePageFilter);
|