mirror of
https://github.com/deesiigneer/pyspapi.git
synced 2026-04-20 04:25:25 +00:00
19 lines
461 B
CSS
19 lines
461 B
CSS
/* Background of stable should be green */
|
|
.version-switcher__container a[data-version-name*="stable"] {
|
|
position: relative;
|
|
}
|
|
|
|
.version-switcher__container a[data-version-name*="stable"] span {
|
|
color: var(--pst-color-success);
|
|
}
|
|
|
|
.version-switcher__container a[data-version-name*="stable"] span:before {
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background-color: var(--pst-color-success);
|
|
opacity: 0.1;
|
|
} |