/*
 Theme Name:   Eduma Child
 Theme URI:    http://educationwp.thimpress.com/
 Description:  Eduma Child Theme
 Author:       ThimPress
 Author URI:   http://thimpress.com
 Template:     eduma
 Version:      1.0.0
 Text Domain:  eduma-child
*/


/* 播放器容器响应式 */
.player-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background: #000;
}

/* 16:9比例 */
.player-container::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

#tcplayer-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 全屏按钮修复 */
.tcp-plugin-fullscreen {
    display: block !important;
}

/*关闭用户导航栏*/

/* 添加自动安全钩子防止下次缓存导致登录失效 */

add_action('after_password_reset', function() {
    if ( function_exists('wp_cache_flush') ) {
        wp_cache_flush();
    }
});

