diff options
author | webchick <drupal@webchick.net> | 2014-12-14 14:57:59 -0800 |
---|---|---|
committer | webchick <drupal@webchick.net> | 2014-12-14 14:57:59 -0800 |
commit | c02f12b7cb3e0b21632498c7012283ee666f5b86 (patch) | |
tree | 15843c9c705c452890b32a43c616138cac5cf103 /core/modules/field_ui/css | |
parent | 7abdb6540b2ecddef880413df92cb2592539d145 (diff) | |
download | drupal-c02f12b7cb3e0b21632498c7012283ee666f5b86.tar.gz drupal-c02f12b7cb3e0b21632498c7012283ee666f5b86.zip |
Issue #1963340 by amateescu, dags, andypost, agentrickard, mgifford, yoroy, pguillard, jibran, YesCT, xjm, LewisNyman, swentel, Hydra, yched, tim.plunkett, rteijeiro, ainz, Xano, Bojhan, Berdir: Change field UI so that adding a field is a separate task
Diffstat (limited to 'core/modules/field_ui/css')
-rw-r--r-- | core/modules/field_ui/css/field_ui.admin.css | 33 |
1 files changed, 12 insertions, 21 deletions
diff --git a/core/modules/field_ui/css/field_ui.admin.css b/core/modules/field_ui/css/field_ui.admin.css index 29bef62e3e1..f85e101622a 100644 --- a/core/modules/field_ui/css/field_ui.admin.css +++ b/core/modules/field_ui/css/field_ui.admin.css @@ -3,37 +3,28 @@ * Stylesheet for the Field UI module. */ -/* 'Manage fields' and 'Manage display' overviews */ -.field-ui-overview .add-new .label-input { - float: left; /* LTR */ +/* Add new field page. */ +.field-ui-field-storage-add-form .field-type-wrapper .form-item { + float: left; + margin-right: 1em; + vertical-align: text-bottom; } -[dir="rtl"] .field-ui-overview .add-new .label-input { +[dir="rtl"] .field-ui-field-storage-add-form .field-type-wrapper .form-item { float: right; + margin-left: 1em; + margin-right: 0; } -.field-ui-overview .add-new .description { - margin-bottom: 0; - max-width: 250px; -} -.field-ui-overview .add-new .form-type-machine-name .description { - white-space: normal; -} -.field-ui-overview .add-new .add-new-placeholder { - font-weight: bold; - padding-bottom: .5em; +.field-ui-field-storage-add-form .field-type-wrapper .form-item-separator { + margin-top: 2.3em; } + +/* 'Manage fields' and 'Manage display' overviews */ .field-ui-overview .region-title td { font-weight: bold; } .field-ui-overview .region-message td { font-style: italic; } -.field-ui-overview .region-add-new-title { - display: none; -} -.field-ui-overview .add-new td { - vertical-align: top; - white-space: nowrap; -} /* 'Manage form display' and 'Manage display' overview */ .field-ui-overview .field-plugin-summary-cell { |