cmake.css 657 B

123456789101112131415161718192021222324
  1. /* Import the Sphinx theme style. */
  2. @import url("default.css");
  3. /* Wrap sidebar content even within words so that long
  4. document names do not escape sidebar borders. */
  5. div.sphinxsidebarwrapper {
  6. word-wrap: break-word;
  7. }
  8. /* Make links inside parsed-literal blocks more obvious
  9. by using a background color and increased line spacing
  10. to make them look boxed. */
  11. .literal-block {
  12. line-height: 1.4;
  13. }
  14. .literal-block a.reference.internal {
  15. background-color: #dfdfdf;
  16. }
  17. /* Remove unwanted margin in case list item contains a div-wrapping
  18. directive like `.. versionadded` or `.. deprecated`. */
  19. dd > :first-child > p {
  20. margin-top: 0px;
  21. }