mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* add stylelint * fix style first part * fix style second part * fix style third part * fix style fourth part * Fix e2e tests first part * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * fix insights * fix style abotu component * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * [ADF-3746] Rebase branch * Fix e2e tests second part * Rebase branch * fix style third part * fix style fourth part * Fix list error * Fix e2e tests second part * Rebase branch * Fix list error * fix new style added * tslint fix * [ADF-3746] Fix scss errors on Process Filters Cloud component
63 lines
1.2 KiB
SCSS
63 lines
1.2 KiB
SCSS
@mixin adf-process-comment-theme($theme) {
|
|
$foreground: map-get($theme, foreground);
|
|
$header-border: 1px solid mat-color($foreground, divider);
|
|
|
|
:host {
|
|
width: 100%;
|
|
}
|
|
|
|
.adf-activiti-label {
|
|
font-weight: bolder;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.adf-activiti-label + .adf-icon {
|
|
position: relative;
|
|
top: -2px;
|
|
}
|
|
|
|
.adf-list-wrap {
|
|
word-wrap: break-word;
|
|
word-break: break-all;
|
|
-moz-hyphens: auto;
|
|
-webkit-hyphens: auto;
|
|
-o-hyphens: auto;
|
|
hyphens: auto;
|
|
}
|
|
|
|
.adf-hide-long-names {
|
|
overflow: auto;
|
|
}
|
|
|
|
.adf-comments-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.adf-comments-header {
|
|
padding: 10px 20px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
border-bottom: $header-border;
|
|
}
|
|
|
|
.adf-comments-input-container {
|
|
padding: 0 15px;
|
|
width: calc(100% - 30px);
|
|
padding-top: 8px;
|
|
border-bottom: $header-border;
|
|
}
|
|
|
|
.adf-full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
adf-comment-list {
|
|
float: left;
|
|
overflow: auto;
|
|
height: calc(100% - 101px);
|
|
width: 100%;
|
|
}
|
|
}
|