source: ether_2012/web/resources/css/blueprint-css/blueprint/plugins/link-icons/screen.css @ 319

Last change on this file since 319 was 319, checked in by vmipsl, 12 years ago

Import du projet Ether pour le nouveau look 2012

File size: 1.3 KB
Line 
1/* --------------------------------------------------------------
2
3   link-icons.css
4   * Icons for links based on protocol or file type.
5
6   See the Readme file in this folder for additional instructions.
7
8-------------------------------------------------------------- */
9
10/* Use this class if a link gets an icon when it shouldn't. */
11body a.noicon {
12  background:transparent none !important;
13  padding:0 !important;
14  margin:0 !important;
15}
16
17/* Make sure the icons are not cut */
18a[href^="http:"], a[href^="mailto:"], a[href^="http:"]:visited,
19a[href$=".pdf"], a[href$=".doc"], a[href$=".xls"], a[href$=".rss"],
20a[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;
25}
26
27/* External links */
28a[href^="http:"]          { background-image: url(icons/external.png); }
29a[href^="mailto:"]        { background-image: url(icons/email.png); }
30a[href^="http:"]:visited  { background-image: url(icons/visited.png); }
31
32/* Files */
33a[href$=".pdf"]   { background-image: url(icons/pdf.png); }
34a[href$=".doc"]   { background-image: url(icons/doc.png); }
35a[href$=".xls"]   { background-image: url(icons/xls.png); }
36
37/* Misc */
38a[href$=".rss"],
39a[href$=".rdf"]   { background-image: url(icons/feed.png); }
40a[href^="aim:"]   { background-image: url(icons/im.png); }
Note: See TracBrowser for help on using the repository browser.