You are here

extlink.css in External Links 6

Same filename and directory in other branches
  1. 8 extlink.css
  2. 5 extlink.css
span.ext {
  background: url(extlink.png) right center no-repeat;
  padding-right: 12px;
}
span.mailto {
  background: url(mailto.png) right center no-repeat;
  padding-right: 12px;
}

/* Hide the extra spans when printing. */
@media print {
  span.ext, span.mailto {
    display: none;
    padding: 0;
  }
}

File

extlink.css
View source
  1. span.ext {
  2. background: url(extlink.png) right center no-repeat;
  3. padding-right: 12px;
  4. }
  5. span.mailto {
  6. background: url(mailto.png) right center no-repeat;
  7. padding-right: 12px;
  8. }
  9. /* Hide the extra spans when printing. */
  10. @media print {
  11. span.ext, span.mailto {
  12. display: none;
  13. padding: 0;
  14. }
  15. }