We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05544af commit 61b0d28Copy full SHA for 61b0d28
1 file changed
default.css
@@ -176,8 +176,12 @@ dfn { font-weight: bolder; /*font-size: 1em*/ }
176
/* Open issue / editorial remark; not intended for a final publication */
177
178
.issue { color: #c00 }
179
-.issue:before {content: "\25CF "}
180
-div.issue:before {display: run-in}
+.issue:before {content: "\25CF\A0"}
+/* 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"}
185
186
/* Class note is a non-normative note. May be inline or a P or DIV */
187
.note {
0 commit comments