38 lines
582 B
SCSS
38 lines
582 B
SCSS
.inbox-entry {
|
|
$this: &;
|
|
|
|
&--new {
|
|
box-shadow: 0 0.125rem 0.25rem var(--primary);
|
|
|
|
.card-header {
|
|
background-color: var(--primary);
|
|
color: RGB(var(--primary-text));
|
|
|
|
a {
|
|
color: RGB(var(--primary-text));
|
|
|
|
&.dropdown-item {
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
.text-muted {
|
|
color: RGBA(var(--primary-text), 0.8) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.format-help {
|
|
opacity: .3;
|
|
|
|
#{$this}:focus-within & {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&:focus-within .format-help,
|
|
&:hover .format-help {
|
|
opacity: 1;
|
|
}
|
|
}
|