31 lines
547 B
SCSS
31 lines
547 B
SCSS
.ct-notification {
|
|
font-size: 12px;
|
|
font-style: italic;
|
|
color: rgba(85, 93, 102, 1);
|
|
|
|
&[data-type*="background"] {
|
|
line-height: 1.3;
|
|
color: #3c434a;
|
|
padding: 0.7em 1em;
|
|
}
|
|
|
|
&[data-type="background:yellow"] {
|
|
background: #fcf9e8;
|
|
border-inline-start: 4px solid #dba617;
|
|
}
|
|
|
|
&[data-type="background:white"] {
|
|
background: #fff;
|
|
border-inline-start: 4px solid var(--ui-accent-color);
|
|
}
|
|
|
|
&[data-type="option-description"] {
|
|
margin-top: 10px;
|
|
opacity: 0.65;
|
|
transition: opacity 0.1s ease;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
} |