xlink.css.bak 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* DocBook xslTNG version 1.3.0
  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 var(--primary-variant-color);
  33. border-radius: 4px;
  34. z-index: 2;
  35. background-color: var(--primary-color);
  36. color: var(--on-primary-color);
  37. }
  38. .nhrefs.js .arc {
  39. display: list-item;
  40. margin-left: 1.5em;
  41. padding-right: 1em;
  42. }
  43. .nhrefs.js .xlink-arc-title {
  44. display: block;
  45. background-color: #afafaf;
  46. margin-left: 0;
  47. margin-bottom: 0.5em;
  48. text-align: center;
  49. }