mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [AAE-6823] Customize font * [AAE-6823] Update css variables names * [AAE-6823] Cleaning * [AAE-6823] Update css variables names * [AAE-6823] Fix lint error
40 lines
701 B
SCSS
40 lines
701 B
SCSS
.adf-comments-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.adf-comments-header {
|
|
padding: 10px 20px;
|
|
font-size: var(--theme-body-1-font-size);
|
|
font-weight: 600;
|
|
border-bottom: 1px solid var(--theme-fg-divider);
|
|
}
|
|
|
|
.adf-comments-input-container {
|
|
width: calc(100% - 30px);
|
|
padding: 8px 15px 0;
|
|
border-bottom: 1px solid var(--theme-fg-divider);
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
}
|
|
}
|
|
|
|
.adf-comments-input-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.adf-full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
adf-comment-list {
|
|
float: left;
|
|
overflow: auto;
|
|
height: calc(100% - 101px);
|
|
width: 100%;
|
|
}
|