git-svn-id: svn://euphorik.ch/pompage@45 02bbb61a-6d21-0410-aba0-cb053bdfd66a
[pompage.git] / doc / webdeveloper / stylesheets / display_link_details.css
diff --git a/doc/webdeveloper/stylesheets/display_link_details.css b/doc/webdeveloper/stylesheets/display_link_details.css
new file mode 100644 (file)
index 0000000..707df3a
--- /dev/null
@@ -0,0 +1,71 @@
+@import url("imports/before.css");
+
+a[href]:before
+{
+    content: "Href=" attr(href) !important;
+}
+
+a[href][ping]:before
+{
+    content: "Href=" attr(href) " Ping=" attr(ping) !important;
+}
+
+a[href][ping][rel]:before
+{
+    content: "Href=" attr(href) " Ping=" attr(ping) " Rel=" attr(rel) !important;
+}
+
+a[href][ping][target]:before
+{
+    content: "Href=" attr(href) " Ping=" attr(ping) " Target=" attr(target) !important;
+}
+
+a[href][ping][rel][target]:before
+{
+    content: "Href=" attr(href) " Ping=" attr(ping) " Rel=" attr(rel) " Target=" attr(target) !important;
+}
+
+a[href][rel]:before
+{
+    content: "Href=" attr(href) " Rel=" attr(rel) !important;
+}
+
+a[href][rel][target]:before
+{
+    content: "Href=" attr(href) " Rel=" attr(rel) " Target=" attr(target) !important;
+}
+
+a[href][target]:before
+{
+    content: "Href=" attr(href) " Target=" attr(target) !important;
+}
+
+a[ping]:before
+{
+    content: "Ping=" attr(ping) !important;
+}
+
+a[ping][rel]:before
+{
+    content: "Ping=" attr(ping) " Rel=" attr(rel) !important;
+}
+
+a[ping][target]:before
+{
+    content: "Ping=" attr(ping) " Target=" attr(target) !important;
+}
+
+a[rel]:before
+{
+    content: "Rel=" attr(rel) !important;
+}
+
+a[rel][target]:before
+{
+    content: "Rel=" attr(rel) " Target=" attr(target) !important;
+}
+
+a[target]:before
+{
+    content: "Target=" attr(target) !important;
+}