xlink.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* @@TITLE@@ version @@VERSION@@
  2. *
  3. * This is xlink.css providing support for multi-targeted links.
  4. * The "js" class is added by JavaScript. This enables graceful
  5. * fallback in the non-JS case.
  6. *
  7. * See https://xsltng.docbook.org/
  8. *
  9. */
  10. .xlink .source {
  11. border-bottom: 1px dotted black;
  12. cursor: pointer;
  13. }
  14. .xlink-arc-list {
  15. display: inline;
  16. font-style: normal;
  17. cursor: pointer;
  18. font-size: 70%;
  19. }
  20. .xlink-arc-list.js::before {
  21. content: " "; /* thin space */
  22. }
  23. .nhrefs.js .xlink-arc-delim {
  24. display: none;
  25. }
  26. .nhrefs.js {
  27. font-style: normal;
  28. display: none;
  29. margin-left: 4px;
  30. margin-right: 0;
  31. padding-bottom: 1em;
  32. border: 2px solid #afafaf;
  33. border-radius: 4px;
  34. z-index: 2;
  35. background-color: #fffff8;
  36. }
  37. .nhrefs.js .arc {
  38. display: list-item;
  39. margin-left: 1.5em;
  40. padding-right: 1em;
  41. }
  42. .nhrefs.js .xlink-arc-title {
  43. display: block;
  44. background-color: #afafaf;
  45. margin-left: 0;
  46. margin-bottom: 0.5em;
  47. text-align: center;
  48. }