Initial Commit from Base app
[base_ror3_portal.git] / public / stylesheets / blueprint / plugins / link-icons / screen.css
blob7b4bef9888f801352496133663604876f9415d0e
1 /* --------------------------------------------------------------
3 link-icons.css
4 * Icons for links based on protocol or file type.
6 See the Readme file in this folder for additional instructions.
8 -------------------------------------------------------------- */
10 /* Use this class if a link gets an icon when it shouldn't. */
11 body a.noicon {
12 background:transparent none !important;
13 padding:0 !important;
14 margin:0 !important;
17 /* Make sure the icons are not cut */
18 a[href^="http:"], a[href^="mailto:"], a[href^="http:"]:visited,
19 a[href$=".pdf"], a[href$=".doc"], a[href$=".xls"], a[href$=".rss"],
20 a[href$=".rdf"], a[href^="aim:"] {
21 padding:2px 22px 2px 0;
22 margin:-2px 0;
23 background-repeat: no-repeat;
24 background-position: right center;
27 /* External links */
28 a[href^="http:"] { background-image: url(icons/external.png); }
29 a[href^="mailto:"] { background-image: url(icons/email.png); }
30 a[href^="http:"]:visited { background-image: url(icons/visited.png); }
32 /* Files */
33 a[href$=".pdf"] { background-image: url(icons/pdf.png); }
34 a[href$=".doc"] { background-image: url(icons/doc.png); }
35 a[href$=".xls"] { background-image: url(icons/xls.png); }
37 /* Misc */
38 a[href$=".rss"],
39 a[href$=".rdf"] { background-image: url(icons/feed.png); }
40 a[href^="aim:"] { background-image: url(icons/im.png); }