|
|
|
|
@ -59,7 +59,7 @@ |
|
|
|
|
position: relative; |
|
|
|
|
width: 100%; |
|
|
|
|
min-width: 250px; |
|
|
|
|
display: flex; |
|
|
|
|
display: block; |
|
|
|
|
flex-direction: column; |
|
|
|
|
// hide table if emptycontent is not hidden |
|
|
|
|
#emptycontent:not(.hidden) ~ & { |
|
|
|
|
@ -77,6 +77,14 @@ |
|
|
|
|
display: block; |
|
|
|
|
background-color: var(--color-main-background-translucent); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* This is a dirty hack as the sticky header requires us to use a different display type on the table element |
|
|
|
|
*/ |
|
|
|
|
tbody { |
|
|
|
|
display: table; |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#filestable.hidden { |
|
|
|
|
@ -383,13 +391,12 @@ table { |
|
|
|
|
width: 0; |
|
|
|
|
flex-grow: 1; |
|
|
|
|
display: flex; |
|
|
|
|
padding: 0; |
|
|
|
|
overflow: hidden; |
|
|
|
|
white-space: nowrap; |
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
height: 100%; |
|
|
|
|
z-index: 10; |
|
|
|
|
padding-right: 20px; |
|
|
|
|
padding: 0 20px 0 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|