[Docs] Improve contrast for warnings in dark mode (#21928)
This commit is contained in:
parent
7fb60519ee
commit
e3c6467ab9
1 changed files with 7 additions and 3 deletions
|
@ -2,11 +2,15 @@
|
||||||
background-color: #555;
|
background-color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-section p.tip,
|
|
||||||
.markdown-section tr:nth-child(2n) {
|
.markdown-section tr:nth-child(2n) {
|
||||||
background-color:#444;
|
background-color:#444;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.markdown-section p.tip {
|
||||||
|
background-color:#555;
|
||||||
|
color:#FFF;
|
||||||
|
}
|
||||||
|
|
||||||
.markdown-section tr {
|
.markdown-section tr {
|
||||||
border-top: 1px solid #555;
|
border-top: 1px solid #555;
|
||||||
}
|
}
|
||||||
|
@ -16,7 +20,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-section p.tip code {
|
.markdown-section p.tip code {
|
||||||
background-color: #555;
|
background-color: #333;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue