Rollup merge of #107186 - GuillaumeGomez:correct-pseudo-element-selector, r=notriddle
rustdoc: Use correct pseudo-element selector As explained [here](https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements#syntax). I wrote it on top of #107152 so we'll need to wait for this one to be merged first. r? `@notriddle`
This commit is contained in:
commit
d9593768d4
1 changed files with 4 additions and 4 deletions
|
@ -1897,21 +1897,21 @@ in storage.js
|
||||||
right: 0.25em;
|
right: 0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scraped-example:not(.expanded) .code-wrapper:before,
|
.scraped-example:not(.expanded) .code-wrapper::before,
|
||||||
.scraped-example:not(.expanded) .code-wrapper:after {
|
.scraped-example:not(.expanded) .code-wrapper::after {
|
||||||
content: " ";
|
content: " ";
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 5px;
|
height: 5px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
.scraped-example:not(.expanded) .code-wrapper:before {
|
.scraped-example:not(.expanded) .code-wrapper::before {
|
||||||
top: 0;
|
top: 0;
|
||||||
background: linear-gradient(to bottom,
|
background: linear-gradient(to bottom,
|
||||||
var(--scrape-example-code-wrapper-background-start),
|
var(--scrape-example-code-wrapper-background-start),
|
||||||
var(--scrape-example-code-wrapper-background-end));
|
var(--scrape-example-code-wrapper-background-end));
|
||||||
}
|
}
|
||||||
.scraped-example:not(.expanded) .code-wrapper:after {
|
.scraped-example:not(.expanded) .code-wrapper::after {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
background: linear-gradient(to top,
|
background: linear-gradient(to top,
|
||||||
var(--scrape-example-code-wrapper-background-start),
|
var(--scrape-example-code-wrapper-background-start),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue