Skip to content
Snippets Groups Projects
Commit e50a4075 authored by Jennifer Hodgdon's avatar Jennifer Hodgdon
Browse files

Issue #1216988 by aspilicious: Fix up CSS for Field UI module

parent e9aa6422
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -2,7 +2,7 @@
* @file
* Stylesheet for the Field UI module.
*/
/* 'Manage fields' and 'Manage display' overviews */
table.field-ui-overview tr.add-new .label-input {
float: left; /* LTR */
......
......@@ -631,7 +631,7 @@ function field_ui_field_overview_form($form, &$form_state, $entity_type, $bundle
$form['actions'] = array('#type' => 'actions');
$form['actions']['submit'] = array('#type' => 'submit', '#value' => t('Save'));
$form['#attached']['css'][] = drupal_get_path('module', 'field_ui') . '/field_ui.css';
$form['#attached']['css'][] = drupal_get_path('module', 'field_ui') . '/field_ui.admin.css';
$form['#attached']['js'][] = drupal_get_path('module', 'field_ui') . '/field_ui.js';
// Add settings for the update selects behavior.
......@@ -1219,7 +1219,7 @@ function field_ui_display_overview_form($form, &$form_state, $entity_type, $bund
$form['actions']['submit'] = array('#type' => 'submit', '#value' => t('Save'));
$form['#attached']['js'][] = drupal_get_path('module', 'field_ui') . '/field_ui.js';
$form['#attached']['css'][] = drupal_get_path('module', 'field_ui') . '/field_ui.css';
$form['#attached']['css'][] = drupal_get_path('module', 'field_ui') . '/field_ui.admin.css';
// Add tabledrag behavior.
$form['#attached']['drupal_add_tabledrag'][] = array('field-display-overview', 'order', 'sibling', 'field-weight');
......
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