AdminPageFramework_Form_View___CSS_widget::_getVersionSpecific PHP Метод

_getVersionSpecific() защищенный Метод

protected _getVersionSpecific ( )
    protected function _getVersionSpecific()
    {
        $_sCSSRules = '';
        if (version_compare($GLOBALS['wp_version'], '3.8', '<')) {
            $_sCSSRules .= ".widget .admin-page-framework-section table.mceLayout {table-layout: fixed;}";
        }
        if (version_compare($GLOBALS['wp_version'], '3.8', '>=')) {
            $_sCSSRules .= ".widget .admin-page-framework-section .form-table th{font-size: 13px;font-weight: normal;margin-bottom: 0.2em;}.widget .admin-page-framework-section .form-table {margin-top: 1em;}";
        }
        return $_sCSSRules;
    }
AdminPageFramework_Form_View___CSS_widget