forked from mirror/_s
Merge pull request #419 from kovshenin/master
_s: Add HTML5 support for WordPress galleries.
This commit is contained in:
commit
5de96cdb72
|
@ -55,7 +55,12 @@ function _s_setup() {
|
||||||
) ) );
|
) ) );
|
||||||
|
|
||||||
// Enable support for HTML5 markup.
|
// Enable support for HTML5 markup.
|
||||||
add_theme_support( 'html5', array( 'comment-list', 'search-form', 'comment-form', ) );
|
add_theme_support( 'html5', array(
|
||||||
|
'comment-list',
|
||||||
|
'search-form',
|
||||||
|
'comment-form',
|
||||||
|
'gallery',
|
||||||
|
) );
|
||||||
}
|
}
|
||||||
endif; // _s_setup
|
endif; // _s_setup
|
||||||
add_action( 'after_setup_theme', '_s_setup' );
|
add_action( 'after_setup_theme', '_s_setup' );
|
||||||
|
|
|
@ -630,7 +630,8 @@ a:active {
|
||||||
height: auto;
|
height: auto;
|
||||||
max-width: 90%;
|
max-width: 90%;
|
||||||
}
|
}
|
||||||
.site-main .gallery dd {
|
.site-main .gallery dd,
|
||||||
|
.site-main .gallery figcaption {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
.site-main .gallery-columns-4 .gallery-item {
|
.site-main .gallery-columns-4 .gallery-item {
|
||||||
|
|
Reference in New Issue