about summary refs log tree commit diff
path: root/src/librustdoc/theme.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/librustdoc/theme.rs')
-rw-r--r--src/librustdoc/theme.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/librustdoc/theme.rs b/src/librustdoc/theme.rs
index 722e01cd1fc..8c1acbd7347 100644
--- a/src/librustdoc/theme.rs
+++ b/src/librustdoc/theme.rs
@@ -185,6 +185,9 @@ pub(crate) fn parse_selectors(
     while let Some(c) = iter.next() {
         match c {
             '{' => {
+                if selector.trim().starts_with(":root[data-theme") {
+                    selector = String::from(":root");
+                }
                 let s = minifier::css::minify(selector.trim()).map(|s| s.to_string())?;
                 parse_rules(content, s, iter, paths)?;
                 selector.clear();