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()
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | drupal-field-module-css-404-2226019-02-d8.patch | 1.23 KB | sweetchuck |
| #1 | field.module.css-404.png | 156.59 KB | sweetchuck |
Comments
Comment #1
sweetchuckComment #2
sweetchuckComment #4
andypostSuppose failure is caused by bot flux, This issue is a remains of #2201693: Field output supporting code should move out of field.module
Comment #5
andypostLet's fix it in original issue