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.

64 lines
1.4 KiB

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. background-repeat: no-repeat;
  34. background-position: 0 center;
  35. padding-left: 17px;
  36. }
  37. /* external link */
  38. .dokuwiki a.urlextern {
  39. background-image: url(images/link_icon.gif);
  40. }
  41. /* windows share */
  42. .dokuwiki a.windows {
  43. background-image: url(images/windows.gif);
  44. }
  45. /* email link */
  46. .dokuwiki a.mail {
  47. background-image: url(images/mail_icon.gif);
  48. }
  49. /* icons of the following are set by dokuwiki in lib/exe/css.php */
  50. /* link to some embedded media */
  51. .dokuwiki a.mediafile {
  52. background-position: 0 center;
  53. padding-bottom: 0;
  54. }
  55. /* interwiki link */
  56. .dokuwiki a.interwiki {
  57. background-position: 0 center;
  58. }