mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
75 lines
1.6 KiB
SCSS
75 lines
1.6 KiB
SCSS
@mixin adf-task-list-comment-list-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
|
|
.adf {
|
|
|
|
&-comment-img-container {
|
|
float: left;
|
|
width: 40px;
|
|
padding: 5px 10px;
|
|
height: 100%;
|
|
}
|
|
|
|
&-comment-user-icon {
|
|
padding: 10px 5px;
|
|
width: 30px;
|
|
background-color: mat-color($primary);
|
|
border-radius: 50%;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
text-align: center;
|
|
height: 18px;
|
|
background-size: cover;
|
|
}
|
|
|
|
&-comment-user-name {
|
|
float: left;
|
|
width: calc(100% - 120px);
|
|
padding: 2px 10px;
|
|
font-weight: 600;
|
|
color: #595959;
|
|
}
|
|
|
|
&-comment-message {
|
|
float: left;
|
|
width: calc(100% - 10px);
|
|
padding: 2px 10px;
|
|
font-style: italic;
|
|
color: #595959;
|
|
white-space: initial;
|
|
}
|
|
|
|
&-comment-message-time {
|
|
float: left;
|
|
width: calc(100% - 120px);
|
|
padding: 2px 10px;
|
|
font-size: 12px;
|
|
color: #595959;
|
|
}
|
|
|
|
&-comment-contents {
|
|
float: left;
|
|
width: calc(100% - 10px);
|
|
}
|
|
|
|
&-datatable ::ng-deep table {
|
|
border: none !important;
|
|
tbody td {
|
|
padding: 0px !important;
|
|
border-top: none !important;
|
|
}
|
|
}
|
|
|
|
&-people-img {
|
|
border-radius: 90%;
|
|
width: 40px;
|
|
height: 40px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|