function ctools_css_filter_default_allowed_values

Provide a default list of allowed values by the filter.

1 call to ctools_css_filter_default_allowed_values()
ctools_css_filter_css_data in includes/css.inc
Run disassembled $css through the filter.

File

includes/css.inc, line 509

Code

function ctools_css_filter_default_allowed_values() {
    return array(
        'auto',
        'aqua',
        'black',
        'block',
        'blue',
        'bold',
        'both',
        'bottom',
        'brown',
        'capitalize',
        'center',
        'collapse',
        'dashed',
        'dotted',
        'fuchsia',
        'gray',
        'green',
        'italic',
        'inherit',
        'left',
        'lime',
        'lowercase',
        'maroon',
        'medium',
        'navy',
        'normal',
        'nowrap',
        'olive',
        'pointer',
        'purple',
        'red',
        'right',
        'solid',
        'silver',
        'teal',
        'top',
        'transparent',
        'underline',
        'uppercase',
        'white',
        'yellow',
    );
}