[AAE-13042] css variables names changed to avoid name collisions in other apps (#8351)

This commit is contained in:
tomasz hanaj
2023-03-10 16:35:39 +01:00
committed by GitHub
parent ce998f61fd
commit 8907a7ffa2
83 changed files with 269 additions and 269 deletions

View File

@@ -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 {

View File

@@ -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;