mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
CalendarOwner: Remove unwanted vertical scrollbar when there's only 1 row of tags
This commit is contained in:
parent
7526e281ce
commit
6542552177
@ -29,6 +29,7 @@ export class CalendarOwner extends Et2StaticSelectMixin(Et2Select)
|
|||||||
...super.styles,
|
...super.styles,
|
||||||
css`
|
css`
|
||||||
/* Larger maximum height before scroll*/
|
/* Larger maximum height before scroll*/
|
||||||
|
|
||||||
.select__tags {
|
.select__tags {
|
||||||
max-height: 10em;
|
max-height: 10em;
|
||||||
}
|
}
|
||||||
@ -36,6 +37,12 @@ export class CalendarOwner extends Et2StaticSelectMixin(Et2Select)
|
|||||||
.title {
|
.title {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Hide unwanted vertical scrollbars with 1 row of tags */
|
||||||
|
|
||||||
|
::part(tag) {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
`
|
`
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user