Browse Source

Merge pull request #8840 from Calinou/theme-fix-caption-color

Fix table caption text color on dark theme

(cherry picked from commit 87298e86bf81a85ed646081edfff71098b8a8ea8)
Max Hilbrunner 1 year ago
parent
commit
1dd3387a41
1 changed files with 2 additions and 1 deletions
  1. 2 1
      _static/css/custom.css

+ 2 - 1
_static/css/custom.css

@@ -360,7 +360,8 @@ article ol,
 }
 
 body,
-.rst-content table.docutils thead {
+.rst-content table.docutils thead,
+.rst-content table.docutils caption {
     color: var(--body-color);
 }