Twenty Thirteen: display gallery captions correctly in IE7 and IE8. Props celloexpressions and kovshenin, fixes #23996.
git-svn-id: http://core.svn.wordpress.org/trunk@23959 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
338c2afd86
commit
fb3387b1d4
|
@ -60,6 +60,21 @@ img.alignleft {
|
||||||
max-width: 604px;
|
max-width: 604px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gallery-item,
|
||||||
|
.gallery img {
|
||||||
|
max-width: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-caption {
|
||||||
|
background: #000;
|
||||||
|
filter: alpha(opacity=0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-item:hover .gallery-caption {
|
||||||
|
filter: alpha(opacity=70);
|
||||||
|
}
|
||||||
|
|
||||||
.comment {
|
.comment {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
@ -117,10 +132,6 @@ img.alignleft {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ie8 .gallery img {
|
|
||||||
max-width: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ie8 .sidebar .entry-header,
|
.ie8 .sidebar .entry-header,
|
||||||
.ie8 .sidebar .entry-content,
|
.ie8 .sidebar .entry-content,
|
||||||
.ie8 .sidebar .entry-summary,
|
.ie8 .sidebar .entry-summary,
|
||||||
|
|
Loading…
Reference in New Issue