~ubuntu-branches/ubuntu/lucid/webdeveloper/lucid-proposed

« back to all changes in this revision

Viewing changes to source/content_common/webdeveloper/stylesheets/display_link_details.css

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2009-01-04 12:25:00 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090104122500-agtub7j8tfr3s09t
Tags: 1.1.6+repack-1ubuntu1
* Merge from Debian experimental, remaining Ubuntu changes:
  + debian/control:
    - Build firefox-webdeveloper and adjust it for Firefox.
    - Do not conflict/replaces with firefox-developer.
    - Add Vcs-Bzr header.
  + debian/rules:
    - Adjust makebuilddir to build firefox-webdeveloper package.
  + Rename iceweasel-{webdeveloper.links,firefox-webdeveloper.install} to
    firefox-{webdeveloper.links,firefox-webdeveloper.install}

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@import url("imports/before.css");
 
2
 
 
3
a[href]:before
 
4
{
 
5
    content: "Href=" attr(href) !important;
 
6
}
 
7
 
 
8
a[href][ping]:before
 
9
{
 
10
    content: "Href=" attr(href) " Ping=" attr(ping) !important;
 
11
}
 
12
 
 
13
a[href][ping][rel]:before
 
14
{
 
15
    content: "Href=" attr(href) " Ping=" attr(ping) " Rel=" attr(rel) !important;
 
16
}
 
17
 
 
18
a[href][ping][target]:before
 
19
{
 
20
    content: "Href=" attr(href) " Ping=" attr(ping) " Target=" attr(target) !important;
 
21
}
 
22
 
 
23
a[href][ping][rel][target]:before
 
24
{
 
25
    content: "Href=" attr(href) " Ping=" attr(ping) " Rel=" attr(rel) " Target=" attr(target) !important;
 
26
}
 
27
 
 
28
a[href][rel]:before
 
29
{
 
30
    content: "Href=" attr(href) " Rel=" attr(rel) !important;
 
31
}
 
32
 
 
33
a[href][rel][target]:before
 
34
{
 
35
    content: "Href=" attr(href) " Rel=" attr(rel) " Target=" attr(target) !important;
 
36
}
 
37
 
 
38
a[href][target]:before
 
39
{
 
40
    content: "Href=" attr(href) " Target=" attr(target) !important;
 
41
}
 
42
 
 
43
a[ping]:before
 
44
{
 
45
    content: "Ping=" attr(ping) !important;
 
46
}
 
47
 
 
48
a[ping][rel]:before
 
49
{
 
50
    content: "Ping=" attr(ping) " Rel=" attr(rel) !important;
 
51
}
 
52
 
 
53
a[ping][target]:before
 
54
{
 
55
    content: "Ping=" attr(ping) " Target=" attr(target) !important;
 
56
}
 
57
 
 
58
a[rel]:before
 
59
{
 
60
    content: "Rel=" attr(rel) !important;
 
61
}
 
62
 
 
63
a[rel][target]:before
 
64
{
 
65
    content: "Rel=" attr(rel) " Target=" attr(target) !important;
 
66
}
 
67
 
 
68
a[target]:before
 
69
{
 
70
    content: "Target=" attr(target) !important;
 
71
}