AdminPageFramework_Form_View___CSS_Field::_getVersionSpecific PHP 메소드

_getVersionSpecific() 보호된 메소드

protected _getVersionSpecific ( )
    protected function _getVersionSpecific()
    {
        $_sCSSRules = '';
        if (version_compare($GLOBALS['wp_version'], '3.8', '<')) {
            $_sCSSRules .= ".admin-page-framework-field .remove_value.button.button-small {line-height: 1.5em; }";
        }
        if (version_compare($GLOBALS['wp_version'], '3.8', '>=')) {
            $_sCSSRules .= ".admin-page-framework-repeatable-field-buttons {margin: 2px 0 0 0.3em;} @media screen and ( max-width: 782px ) {.admin-page-framework-fieldset {overflow-x: hidden;}}";
        }
        return $_sCSSRules;
    }
AdminPageFramework_Form_View___CSS_Field