File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
frontend/src/v5/ui/components/viewer/cards/cardFilters/filterChip Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -24,18 +24,18 @@ export const TextWrapper = styled.div`
24
24
` ;
25
25
26
26
export const Property = styled . span `
27
- flex-shrink : 4 ;
27
+ flex-shrink : 0 ;
28
28
overflow : hidden;
29
29
white-space : nowrap;
30
30
text-overflow : ellipsis;
31
+ max-width : calc (100% - 37px );
31
32
` ;
32
33
33
34
export const OperatorIconContainer = styled . div `
34
35
border : solid 1px ${ ( { theme } ) => theme . palette . base . lightest } ;
35
36
border-radius : 50% ;
36
37
height : 18px ;
37
- width : 18px ;
38
- flex-shrink : 0 ;
38
+ aspect-ratio : 1 ;
39
39
display : inline-flex;
40
40
justify-content : center;
41
41
align-items : center;
@@ -44,14 +44,12 @@ export const OperatorIconContainer = styled.div`
44
44
45
45
export const DisplayValue = styled . span < { $multiple ?: boolean } > `
46
46
margin-left: 3px;
47
- flex-shrink: 1;
48
47
overflow: hidden;
49
48
white-space: nowrap;
50
49
text-overflow: ellipsis;
51
50
52
51
${ ( { $multiple } ) => $multiple && css `
53
52
text-decoration : underline;
54
- flex-shrink : 0 ;
55
53
` }
56
54
` ;
57
55
You can’t perform that action at this time.
0 commit comments