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.

74 lines
1.6 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
  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. color: __existing__;
  8. background-color: inherit;
  9. }
  10. /* not existing wikipage */
  11. .dokuwiki a.wikilink2 {
  12. color: __missing__;
  13. background-color: inherit;
  14. text-decoration: none;
  15. }
  16. .dokuwiki a.wikilink2:link,
  17. .dokuwiki a.wikilink2:visited {
  18. border-bottom: 1px dashed;
  19. }
  20. .dokuwiki a.wikilink2:hover,
  21. .dokuwiki a.wikilink2:active,
  22. .dokuwiki a.wikilink2:focus {
  23. border-bottom-width: 0;
  24. }
  25. /* any link to current page */
  26. .dokuwiki span.curid a {
  27. font-weight: bold;
  28. }
  29. /*____________ other link types ____________*/
  30. .dokuwiki a.urlextern,
  31. .dokuwiki a.windows,
  32. .dokuwiki a.mail,
  33. .dokuwiki a.mediafile,
  34. .dokuwiki a.interwiki {
  35. background-repeat: no-repeat;
  36. background-position: 0 center;
  37. padding: 0 0 0 20px;
  38. }
  39. [dir=rtl] .dokuwiki a.urlextern,
  40. [dir=rtl] .dokuwiki a.windows,
  41. [dir=rtl] .dokuwiki a.mail,
  42. [dir=rtl] .dokuwiki a.interwiki,
  43. [dir=rtl] .dokuwiki a.mediafile {
  44. background-position: right center;
  45. padding: 0 17px 0 0;
  46. }
  47. /* external link */
  48. .dokuwiki a.urlextern {
  49. background-image: url(images/link_icon.gif);
  50. padding: 0 0 0 17px;
  51. }
  52. /* windows share */
  53. .dokuwiki a.windows {
  54. background-image: url(images/windows.gif);
  55. }
  56. /* email link */
  57. .dokuwiki a.mail {
  58. background-image: url(images/mail_icon.gif);
  59. }
  60. /* icons of the following are set by dokuwiki in lib/exe/css.php */
  61. /* link to some embedded media */
  62. .dokuwiki a.mediafile {
  63. }
  64. /* interwiki link */
  65. .dokuwiki a.interwiki {
  66. padding: 0 0 0 17px;
  67. }