legacy-style.js 777 B

1234567891011121314151617
  1. /**
  2. * Reproduces the gulp `build` task → v4-style.min.css (the site-wide stylesheet).
  3. *
  4. * Imports the same files in the same order gulp concatenates them; webpack's
  5. * MiniCssExtractPlugin emits one stylesheet to the THEME ROOT as v4-style.min.css,
  6. * so the existing `style-min` enqueue keeps working unchanged.
  7. *
  8. * css-loader runs with { url: false } so the `url('fonts/…')` paths in fonts.css
  9. * and style.css are left exactly as-is — they resolve from the theme root, same as
  10. * the gulp output. This is a faithful 1:1 of the old build (prune the dead inputs —
  11. * e.g. fullcalendar — in Phase 5, not here).
  12. */
  13. import '../css/fonts.css';
  14. import '../css/v4-animate.css';
  15. import '../css/v4-fullcalendar.css';
  16. import '../css/styles.css';
  17. import '../style.css';