mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[AAE-18779] Cannot update colours according to dynamically generated theme due to hardcoded values (#3558)
* [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
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
display: flex;
|
||||
|
||||
.adf-datatable-cell-badge {
|
||||
color: var(--theme-contrast-gray);
|
||||
color: var(--theme-secondary-text);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -6,7 +6,7 @@
|
||||
width: inherit;
|
||||
|
||||
.adf-tag-chips {
|
||||
background-color: white;
|
||||
background-color: var(--theme-background-card-colour);
|
||||
border: 1px solid var(--theme-text-color);
|
||||
border-radius: 10px;
|
||||
color: var(--theme-text-color);
|
||||
|
@@ -1,6 +1,6 @@
|
||||
$search-width: 594px;
|
||||
$search-height: 32px;
|
||||
$search-background: #f5f6f5;
|
||||
$search-background: var(--theme-search-background-color);
|
||||
$search-border-radius: 4px;
|
||||
$top-margin: 12px;
|
||||
|
||||
|
@@ -38,7 +38,7 @@ aca-search-results {
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background-color: var(--theme-grey-background-hover);
|
||||
background-color: var(--theme-dropdown-background-hover);
|
||||
}
|
||||
|
||||
&[disabled] {
|
||||
@@ -110,7 +110,7 @@ aca-search-results {
|
||||
place-content: flex-start space-between;
|
||||
align-items: flex-start;
|
||||
padding: 16px 12px;
|
||||
background-color: var(--theme-primary-color-default-contrast);
|
||||
background-color: var(--theme-card-background-color);
|
||||
|
||||
&__filter-set {
|
||||
p {
|
||||
|
@@ -27,7 +27,7 @@
|
||||
|
||||
&-text {
|
||||
flex: 1;
|
||||
color: var(--theme-selected-text-color);
|
||||
color: var(--theme-sidenav-text-color);
|
||||
padding-left: 12px;
|
||||
letter-spacing: 0.25px;
|
||||
font-style: normal;
|
||||
@@ -80,7 +80,7 @@
|
||||
user-select: none;
|
||||
|
||||
&:hover .aca-action-button__label {
|
||||
color: var(--theme-selected-text-color);
|
||||
color: var(--theme-sidenav-text-color);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -103,7 +103,7 @@
|
||||
line-height: 32px;
|
||||
|
||||
&--active {
|
||||
color: var(--theme-selected-text-color);
|
||||
color: var(--theme-sidenav-text-color);
|
||||
background: var(--theme-selected-background-color);
|
||||
}
|
||||
}
|
||||
|
@@ -9,6 +9,6 @@
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
background: var(--theme-about-panel-border-color);
|
||||
color: var(--theme-selected-text-color);
|
||||
color: var(--theme-sidenav-user-menu-color);
|
||||
border: none;
|
||||
}
|
||||
|
Reference in New Issue
Block a user