Skip to content
Snippets Groups Projects
Commit ca11be2e authored by Alex Barth's avatar Alex Barth
Browse files

Add CSS.

parent 8d0eab3c
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ function feeds_fetcher_callback($importer, $feed_nid = 0) {
*/
function theme_feeds_upload($variables) {
$element = $variables['element'];
drupal_add_css(drupal_get_path('module', 'feeds') .'/feeds.css');
drupal_add_css(array('file' => drupal_get_path('module', 'feeds') .'/feeds.css'));
_form_set_class($element, array('form-file'));
$description = '';
if (!empty($element['#file_info'])) {
......
......@@ -651,7 +651,7 @@ function _feeds_ui_format_options($options) {
function theme_feeds_ui_overview_form($variables) {
$form = $variables['form'];
drupal_add_js(drupal_get_path('module', 'feeds_ui') .'/feeds_ui.js');
drupal_add_css(drupal_get_path('module', 'feeds_ui') .'/feeds_ui.css');
drupal_add_css(array('file' => drupal_get_path('module', 'feeds_ui') .'/feeds_ui.css'));
// Iterate through all importers and build a table.
$rows = array();
......@@ -686,7 +686,7 @@ function theme_feeds_ui_overview_form($variables) {
function theme_feeds_ui_edit_page($variables) {
$config_info = $variables['info'];
$active_container = $variables['active'];
drupal_add_css(drupal_get_path('module', 'feeds_ui') .'/feeds_ui.css');
drupal_add_css(array('file' => drupal_get_path('module', 'feeds_ui') .'/feeds_ui.css'));
// Outer wrapper.
$output = '<div class="feeds-settings clear-block">';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment