mirror of
https://github.com/docmost/docmost.git
synced 2025-11-23 09:31:08 +10:00
feat: editor file attachments (#194)
* fix current slider value * WIP * changes to extension attributes * update command title
This commit is contained in:
@ -9,5 +9,29 @@
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
.attachment-placeholder {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: var(--mantine-color-body);
|
||||
border-radius: var(--mantine-radius-default);
|
||||
cursor: pointer;
|
||||
padding: 15px;
|
||||
height: 25px;
|
||||
|
||||
@mixin light {
|
||||
border: 1px solid var(--mantine-color-gray-3);
|
||||
}
|
||||
|
||||
@mixin dark {
|
||||
border: 1px solid var(--mantine-color-dark-4);
|
||||
}
|
||||
}
|
||||
|
||||
.uploading-text {
|
||||
font-size: var(--mantine-font-size-md);
|
||||
line-height: var(--mantine-line-height-md);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user