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.
 
 
 
 
 

66 lines
1.2 KiB

  1. .page-content {
  2. a,
  3. a:link,
  4. a:active,
  5. a:visited,
  6. a:hover {
  7. color: @ini_link;
  8. text-decoration: none;
  9. }
  10. a:hover {
  11. text-decoration: underline;
  12. }
  13. /* existing wikipage */
  14. a.wikilink1,
  15. a.wikilink1:link,
  16. a.wikilink1:active,
  17. a.wikilink1:visited,
  18. a.wikilink1:hover {
  19. color: @ini_existing;
  20. background-color: inherit;
  21. }
  22. /* not existing wikipage */
  23. a.wikilink2,
  24. a.wikilink2:link,
  25. a.wikilink2:active,
  26. a.wikilink2:visited,
  27. a.wikilink2:hover {
  28. color: @ini_missing;
  29. background-color: inherit;
  30. }
  31. a.wikilink2:link,
  32. a.wikilink2:visited,
  33. a.wikilink2:hover,
  34. a.wikilink2:active,
  35. a.wikilink2:focus {
  36. border-bottom-width: 0;
  37. }
  38. /* any link to current page */
  39. span.curid a {
  40. font-weight: bold;
  41. }
  42. a.urlextern,
  43. a.windows,
  44. a.mail,
  45. a.mediafile,
  46. a.interwiki {
  47. background-repeat: no-repeat;
  48. background-position: 0 center;
  49. padding: 0 0 0 18px;
  50. }
  51. /* external link */
  52. a.urlextern {
  53. background-image: url(../../images/external-link.png);
  54. }
  55. /* windows share */
  56. a.windows {
  57. background-image: url(../../images/unc.png);
  58. }
  59. /* email link */
  60. a.mail {
  61. background-image: url(../../images/email.png);
  62. }
  63. }