Merge pull request #327 from pateljannat/image-in-lesson-webform

feat: image markdown extension
This commit is contained in:
Jannat Patel
2022-04-25 11:42:58 +05:30
committed by GitHub
5 changed files with 136 additions and 17 deletions

View File

@@ -1414,3 +1414,32 @@ pre {
.btn-outline-primary {
border: 1px solid var(--primary-color);
}
.show-attachments {
padding-right: 0.5rem;
display: flex;
align-items: center;
}
.attachment-controls {
display: flex;
align-items: center;
width: fit-content;
cursor: pointer;
}
.attachments {
flex-direction: column;
padding: 0.5rem 0;
margin-top: 1rem;
position: absolute;
z-index: 1;
width: fit-content;
border-collapse: separate;
border-spacing: 1rem 0.5rem;
}
.attachments-parent {
float: right;
font-size: var(--text-sm);
}