mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[AAE-12872] custom css variables replaced with theme related variables (#8332)
* AAE-12872 replaced global variables related to foreground text * AAE-12872 replaced global css variables related to foreground * AAE-12872 replaced global css variables related to background,palette colors
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
.adf-is-selected {
|
||||
background: var(--adf-comment-list-primary-color);
|
||||
background: var(--theme-primary-100);
|
||||
}
|
||||
|
||||
.adf {
|
||||
@@ -25,13 +25,13 @@
|
||||
|
||||
&:hover {
|
||||
background:
|
||||
var(--adf-comment-list-primary-color)
|
||||
radial-gradient(circle, transparent 1%, var(--adf-comment-list-primary-color) 1%)
|
||||
var(--theme-primary-100)
|
||||
radial-gradient(circle, transparent 1%, var(--theme-primary-100) 1%)
|
||||
center/15000%;
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: var(--adf-comment-list-ripple-color);
|
||||
background-color: var(--theme-primary-300);
|
||||
background-size: 100%;
|
||||
transition: background 0s;
|
||||
}
|
||||
|
@@ -8,14 +8,14 @@
|
||||
padding: 10px 20px;
|
||||
font-size: var(--theme-body-1-font-size);
|
||||
font-weight: 600;
|
||||
border-bottom: 1px solid var(--theme-fg-divider);
|
||||
border-bottom: 1px solid var(--theme-foreground-divider-color);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.adf-comments-input-container {
|
||||
width: calc(100% - 30px);
|
||||
padding: 8px 15px 0;
|
||||
border-bottom: 1px solid var(--theme-fg-divider);
|
||||
border-bottom: 1px solid var(--theme-foreground-divider-color);
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
|
Reference in New Issue
Block a user