mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
notice: fix code in markdown alerts, take II #906
This commit is contained in:
parent
f696f60f4e
commit
5d7bdfcb33
1 changed files with 4 additions and 2 deletions
|
@ -722,11 +722,13 @@ div.box > .box-content {
|
|||
padding-right: 1rem;
|
||||
}
|
||||
/* remove margin if only a single code block is contained in the tab */
|
||||
#R-body .box-content:has(> div.highlight:only-of-type){
|
||||
#R-body .box-content:not(:has(> p)):has(> div[class*="highlight"]:only-of-type),
|
||||
#R-body .box-content:has(> p:empty):has(> div[class*="highlight"]:only-of-type){
|
||||
padding: 0;
|
||||
}
|
||||
/* remove border from a code block if single */
|
||||
#R-body .box-content > div.highlight:only-of-type > pre{
|
||||
#R-body .box-content:not(:has(> p)) > div[class*="highlight"]:only-of-type > pre,
|
||||
#R-body .box-content:has(> p:empty) > div[class*="highlight"]:only-of-type > pre{
|
||||
border: 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue