You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1.8 KiB

14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
  1. /**
  2. * This file provides styles for all types of links.
  3. */
  4. /*____________ links to wiki pages ____________*/
  5. /* existing wikipage */
  6. .dokuwiki a.wikilink1 {
  7. }
  8. /* not existing wikipage */
  9. .dokuwiki a.wikilink2 {
  10. text-decoration: none;
  11. }
  12. .dokuwiki a.wikilink2:link,
  13. .dokuwiki a.wikilink2:visited {
  14. border-bottom: 1px dashed;
  15. }
  16. .dokuwiki a.wikilink2:hover,
  17. .dokuwiki a.wikilink2:active,
  18. .dokuwiki a.wikilink2:focus {
  19. border-bottom-width: 0;
  20. }
  21. /* any link to current page */
  22. .dokuwiki span.curid a {
  23. font-weight: bold;
  24. }
  25. /*____________ other link types ____________*/
  26. .dokuwiki a.urlextern,
  27. .dokuwiki a.windows,
  28. .dokuwiki a.mail,
  29. .dokuwiki a.mediafile,
  30. .dokuwiki a.interwiki {
  31. background-repeat: no-repeat;
  32. background-position: 0 center;
  33. padding: 0 0 0 18px;
  34. }
  35. /* external link */
  36. .dokuwiki a.urlextern {
  37. background-image: url(images/external-link.png);
  38. /*
  39. @deprecated, change since Adora Belle:
  40. background-image: url(../../images/external-link.png);
  41. */
  42. }
  43. /* windows share */
  44. .dokuwiki a.windows {
  45. background-image: url(images/unc.png);
  46. /*
  47. @deprecated, change since Adora Belle:
  48. background-image: url(../../images/unc.png);
  49. */
  50. }
  51. /* email link */
  52. .dokuwiki a.mail {
  53. background-image: url(images/email.png);
  54. /*
  55. @deprecated, change since Adora Belle:
  56. background-image: url(../../images/email.png);
  57. */
  58. }
  59. /* icons of the following are set by dokuwiki in lib/exe/css.php */
  60. /* link to some embedded media */
  61. .dokuwiki a.mediafile {
  62. }
  63. /* interwiki link */
  64. .dokuwiki a.interwiki {
  65. }
  66. /* RTL corrections */
  67. [dir=rtl] .dokuwiki a.urlextern,
  68. [dir=rtl] .dokuwiki a.windows,
  69. [dir=rtl] .dokuwiki a.mail,
  70. [dir=rtl] .dokuwiki a.interwiki,
  71. [dir=rtl] .dokuwiki a.mediafile {
  72. background-position: right center;
  73. padding: 0 18px 0 0;
  74. display: inline-block; /* needed for IE7 */
  75. }