1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00

fixing attachment height

This commit is contained in:
Martin McKeaveney 2020-10-28 22:21:41 +00:00
parent 7dee8d6683
commit e74d754f32
2 changed files with 18 additions and 6 deletions

View file

@ -12,8 +12,8 @@
{#if FILE_TYPES.IMAGE.includes(file.extension.toLowerCase())}
<img {width} {height} src={file.url} />
{:else}
<i class="ri-file-line" />
<span class="extension">.{file.extension}</span>
<i class="ri-file-line" />
<span>{file.name}</span>
{/if}
</div>
@ -33,12 +33,12 @@
}
i {
font-size: 36px;
margin-bottom: var(--spacing-m);
font-size: 24px;
position: relative;
top: 5px;
}
.file {
position: relative;
height: 75px;
width: 75px;
border: 2px dashed var(--grey-7);
@ -46,18 +46,23 @@
display: flex;
flex-direction: column;
align-items: center;
position: relative;
justify-content: center;
overflow: hidden;
text-overflow: ellipsis;
}
.extension {
position: absolute;
top: var(--spacing-s);
left: var(--spacing-s);
top: -5px;
font-size: var(--font-size-xs);
font-weight: 500;
}
span {
font-size: var(--font-size-xs);
width: 75px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

View file

@ -31,6 +31,9 @@ export function deleteRowRenderer(params) {
export function editRowRenderer(params) {
const container = document.createElement("div")
container.style.height = "100%"
container.style.display = "flex"
container.style.alignItems = "center"
new EditRow({
target: container,
@ -46,6 +49,9 @@ export function editRowRenderer(params) {
function attachmentRenderer(options, constraints, editable) {
return params => {
const container = document.createElement("div")
container.style.height = "100%"
container.style.display = "flex"
container.style.alignItems = "center"
const attachmentInstance = new AttachmentList({
target: container,
@ -64,6 +70,7 @@ function linkedRowRenderer() {
let container = document.createElement("div")
container.style.display = "grid"
container.style.height = "100%"
container.style.alignItems = "center"
new RelationshipDisplay({
target: container,