adding pending class in css file
authorLuc Moreau <l.moreau@ecs.soton.ac.uk>
Tue, 02 Aug 2011 12:26:33 +0100
changeset 78 335bb38d028c
parent 77 edf32078a9cc
child 79 73ae4db1e3a3
adding pending class in css file
model/ProvenanceModel.html
model/extra.css
--- a/model/ProvenanceModel.html	Tue Aug 02 12:17:37 2011 +0100
+++ b/model/ProvenanceModel.html	Tue Aug 02 12:26:33 2011 +0100
@@ -46,7 +46,7 @@
  
           // if you want to have extra CSS, append them to this list
           // it is recommended that the respec.css stylesheet be kept
-          extraCSS:             ["http://dev.w3.org/2009/dap/ReSpec.js/css/respec.css"],
+          extraCSS:             ["http://dev.w3.org/2009/dap/ReSpec.js/css/respec.css", "./extra.css"],
  
           // editors, add as many as you like
           // only "name" is required
@@ -114,7 +114,7 @@
 
 <div class='issue'>Various comments raised in <a href="http://www.w3.org/2011/prov/track/issues/61">ISSUE-61</a>.</div>
 
-<div class='issue'>Alter example to cater for multiple ivpOf. This is <a href="http://www.w3.org/2011/prov/track/issues/33">ISSUE-33</a>.</div>
+<div class='pending'>Alter example to cater for multiple ivpOf. This is <a href="http://www.w3.org/2011/prov/track/issues/33">ISSUE-33</a>.</div>
 
 <div class='issue'>Some comments on the example. This is <a href="http://www.w3.org/2011/prov/track/issues/63">ISSUE-63</a>.</div>
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/model/extra.css	Tue Aug 02 12:26:33 2011 +0100
@@ -0,0 +1,19 @@
+
+/* --- EDITORIAL NOTES --- */
+.pending {
+    padding:    1em;
+    margin: 1em 0em 0em;
+    border: 1px solid #f00;
+    background: #ff0;
+}
+
+.pending::before {
+    content:    "Pending Review";
+    display:    block;
+    width:  150px;
+    margin: -1.5em 0 0.5em 0;
+    font-weight:    bold;
+    border: 1px solid #f00;
+    background: #fff;
+    padding:    3px 1em;
+}