mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-03-09 20:52:07 +01:00
21 lines
377 B
TypeScript
21 lines
377 B
TypeScript
import {css} from 'lit';
|
|
|
|
export default css`
|
|
:host {
|
|
}
|
|
|
|
:host([loading]) .file__button et2-image {
|
|
display: none;
|
|
}
|
|
.file--single > div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
}
|
|
.file__file-list::part(popup) {
|
|
min-width: 25em;
|
|
background-color: var(--sl-panel-background-color);
|
|
overflow-y: auto;
|
|
z-index: var(--sl-z-index-toast);
|
|
}
|
|
`; |