mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-19 17:14:45 +00:00
* [AAE-18779] Custom theme - cannot update colours according to dynamically generated theme due to hardcoded values * Fix colours part1 * Fix chip colours * Fix column chip colour * Fix sidenav text * Fix sidenav selected text color * Fix colours
42 lines
821 B
SCSS
42 lines
821 B
SCSS
.aca-custom-name-column {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
|
|
.aca-name-column-badges {
|
|
display: flex;
|
|
|
|
.adf-datatable-cell-badge {
|
|
color: var(--theme-secondary-text);
|
|
}
|
|
}
|
|
|
|
.aca-name-column-container {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
.aca-locked-by {
|
|
display: flex;
|
|
align-items: center;
|
|
color: rgba(0, 0, 0, 0.54);
|
|
max-width: 100%;
|
|
padding-right: 10px;
|
|
|
|
&--name {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.adf-datatable-content-cell.adf-name-column.aca-custom-name-column {
|
|
position: unset;
|
|
}
|
|
|
|
.adf-datatable-list .adf-datatable-link:hover .aca-name-column-badges {
|
|
color: var(--adf-theme-foreground-text-color);
|
|
}
|