Skip to content

Commit f89f154

Browse files
committed
CSS: Use alpha transparency for code background
Closes jquerygh-314
1 parent 77177b3 commit f89f154

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

themes/jquery/css/base.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,8 @@ pre, code {
246246
}
247247
code {
248248
padding: 0 3px;
249-
background-color: #eee;
249+
background-color: #eee; /* support: IE8 */;
250+
background-color: rgba( 0, 0, 0, .1 );
250251
border-radius: 3px;
251252
}
252253
pre code {

0 commit comments

Comments
 (0)