Skip to content

Commit 61b0d28

Browse files
committed
Workaround for bug in Safari 5.1.2 and Chrome (whatever is the
contemporary version).
1 parent 05544af commit 61b0d28

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

default.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,12 @@ dfn { font-weight: bolder; /*font-size: 1em*/ }
176176
/* Open issue / editorial remark; not intended for a final publication */
177177

178178
.issue { color: #c00 }
179-
.issue:before {content: "\25CF "}
180-
div.issue:before {display: run-in}
179+
.issue:before {content: "\25CF\A0"}
180+
/* div.issue:before {display: run-in}
181+
:before with run-in triggers a bug in Safari 5.1.2.
182+
Here's a workaround: */
183+
div.issue:before {content: ""}
184+
div.issue > *:first-child:before {content: "\25CF\A0"}
181185

182186
/* Class note is a non-normative note. May be inline or a P or DIV */
183187
.note {

0 commit comments

Comments
 (0)