Merge branch 'bzr/golem' of /Users/distler/Sites/code/instiki

master
Jacques Distler 2011-09-30 00:11:42 -05:00
commit f331becb64
3 changed files with 10 additions and 3 deletions

View File

@ -42,9 +42,15 @@ function fixRunIn() {
});
// add tombstone to proof, since gecko doesn't support :last-child properly
$$('div.proof').each(function(element) {
var l = element.childElements().length -1;
var el = element.childElements()[element.childElements().length-1];
var span = new Element('span').update('\u00a0\u00a0\u25ae');
element.childElements()[l].insert(span);
if (el.match('p')) {
el.insert(span);
} else {
var par = new Element('p').update(span);
par.addClassName('tombstone');
element.appendChild(par);
}
});
}

View File

@ -476,6 +476,7 @@ span.theorem_label {font-style:normal; font-weight:bold;}
content: " " counter(remark); counter-increment: remark;}
.num_note .theorem_label:after {
content: " " counter(note); counter-increment: note;}
.tombstone {text-align:right;}
/* Hack for Mozilla bug 449396 */
[mathvariant="bold"] * {

View File

@ -42,7 +42,7 @@
opacity: 1
},
initStroke: {
width: 5,
width: 2,
color: '000000', // solid black
opacity: 1
},