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.

59 lines
1.3 KiB

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