The field.module.css is not exists. Neither in field module nor in field_ui module, but the hook_page_build() implementation in field module adds it to the page.

/**
 * Implements hook_page_build().
 */
function field_page_build(&$page) {
  $path = drupal_get_path('module', 'field');
  $page['#attached']['css'][$path . '/css/field.module.css'] = array('every_page' => TRUE);
}

In the field module there is no any CSS file.
The "field.module.css" is also mentioned in a comment in template_preprocess_field()

Comments

sweetchuck’s picture

StatusFileSize
new156.59 KB
sweetchuck’s picture

Status: Active » Needs review
Issue tags: +sprint
StatusFileSize
new1.23 KB

Status: Needs review » Needs work

The last submitted patch, 2: drupal-field-module-css-404-2226019-02-d8.patch, failed testing.

andypost’s picture

Suppose failure is caused by bot flux, This issue is a remains of #2201693: Field output supporting code should move out of field.module

andypost’s picture

Status: Needs work » Closed (duplicate)

Let's fix it in original issue