function follow_default_icon_styles in Follow 7.2
Default icon styles provided by follow module.
1 call to follow_default_icon_styles()
- follow_icon_styles in ./
follow.inc - Load up all icon styles. You can add or alter these icon styles in a module or theme by implementing hook_follow_icon_styles_alter(). See follow.api.php for an example.
File
- ./
follow.inc, line 457 - Follow module API and helper functions.
Code
function follow_default_icon_styles() {
$styles['small'] = array(
'name' => 'small',
'label' => t('Small'),
);
$styles['large'] = array(
'name' => 'large',
'label' => t('Large'),
'css-overrides' => array(
'height: 42px;',
'line-height: 38px;',
'padding-left: 39px;',
'padding-right: 5px;',
),
);
$styles['wpzoom26'] = array(
'name' => 'wpzoom26',
'label' => t('WPZOOM 26x'),
'css-overrides' => array(
'height: 32px;',
'line-height: 28px;',
'padding-left: 30px;',
'padding-right: 3px;',
),
);
$styles['wpzoom38'] = array(
'name' => 'wpzoom38',
'label' => t('WPZOOM 38x'),
'css-overrides' => array(
'height: 44px;',
'line-height: 40px;',
'padding-left: 41px;',
'padding-right: 5px;',
),
);
$styles['paulrobertlloyd32'] = array(
'name' => 'paulrobertlloyd32',
'label' => t('Paul Robert Lloyd 32x32'),
'css-overrides' => array(
'height: 38px;',
'line-height: 34px;',
'padding-left: 38px;',
'padding-right: 5px;',
),
);
return $styles;
}