mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[AAE-13042] css variables names changed to avoid name collisions in other apps (#8351)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
.adf-is-selected {
|
||||
background: var(--theme-primary-100);
|
||||
background: var(--adf-theme-primary-100);
|
||||
}
|
||||
|
||||
.adf {
|
||||
@@ -25,13 +25,13 @@
|
||||
|
||||
&:hover {
|
||||
background:
|
||||
var(--theme-primary-100)
|
||||
radial-gradient(circle, transparent 1%, var(--theme-primary-100) 1%)
|
||||
var(--adf-theme-primary-100)
|
||||
radial-gradient(circle, transparent 1%, var(--adf-theme-primary-100) 1%)
|
||||
center/15000%;
|
||||
}
|
||||
|
||||
&:active {
|
||||
background-color: var(--theme-primary-300);
|
||||
background-color: var(--adf-theme-primary-300);
|
||||
background-size: 100%;
|
||||
transition: background 0s;
|
||||
}
|
||||
@@ -68,7 +68,7 @@
|
||||
font-size: var(--theme-body-1-font-size);
|
||||
letter-spacing: -0.2px;
|
||||
line-height: 1.43;
|
||||
color: var(--theme-foreground-text-color);
|
||||
color: var(--adf-theme-foreground-text-color);
|
||||
}
|
||||
|
||||
&-comment-message-time {
|
||||
@@ -76,7 +76,7 @@
|
||||
width: calc(100% - 10%);
|
||||
padding: 2px 10px;
|
||||
font-size: var(--theme-caption-font-size) !important;
|
||||
color: var(--theme-foreground-text-color);
|
||||
color: var(--adf-theme-foreground-text-color);
|
||||
}
|
||||
|
||||
&-comment-contents {
|
||||
|
@@ -8,14 +8,14 @@
|
||||
padding: 10px 20px;
|
||||
font-size: var(--theme-body-1-font-size);
|
||||
font-weight: 600;
|
||||
border-bottom: 1px solid var(--theme-foreground-divider-color);
|
||||
border-bottom: 1px solid var(--adf-theme-foreground-divider-color);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.adf-comments-input-container {
|
||||
width: calc(100% - 30px);
|
||||
padding: 8px 15px 0;
|
||||
border-bottom: 1px solid var(--theme-foreground-divider-color);
|
||||
border-bottom: 1px solid var(--adf-theme-foreground-divider-color);
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
|
Reference in New Issue
Block a user