css: SCSS nesting for .alert-box in night_mode.scss.

This commit is contained in:
Abhishek-Balaji
2020-03-25 23:53:54 +05:30
committed by Tim Abbott
parent e7b7a644ea
commit 694035171d

View File

@@ -471,34 +471,36 @@ on a dark background, and don't change the dark labels dark either. */
border: 1px solid hsl(0, 75%, 65%); border: 1px solid hsl(0, 75%, 65%);
} }
.alert-box .alert.alert-error::before { .alert-box {
color: 1px solid hsl(0, 75%, 65%); .alert.alert-error::before {
} color: 1px solid hsl(0, 75%, 65%);
.alert-box .stacktrace {
color: hsl(314, 22%, 85%);
.expand {
color: hsl(318, 14%, 36%);
} }
.subtle { .stacktrace {
color: hsl(314, 19%, 63%); color: hsl(314, 22%, 85%);
}
.code-context { .expand {
color: hsl(314, 27%, 82%); color: hsl(318, 14%, 36%);
background-color: hsl(312, 7%, 14%);
box-shadow:
inset 0px 11px 10px -10px hsl(0, 0%, 6%),
inset 0px -11px 10px -10px hsl(0, 0%, 6%);
.line-number {
color: hsl(318, 14%, 44%);
} }
.focus-line { .subtle {
background-color: hsl(307, 9%, 19%); color: hsl(314, 19%, 63%);
}
.code-context {
color: hsl(314, 27%, 82%);
background-color: hsl(312, 7%, 14%);
box-shadow:
inset 0px 11px 10px -10px hsl(0, 0%, 6%),
inset 0px -11px 10px -10px hsl(0, 0%, 6%);
.line-number {
color: hsl(318, 14%, 44%);
}
.focus-line {
background-color: hsl(307, 9%, 19%);
}
} }
} }
} }