Czy jest jakaś różnica między rozszerzaniem motywu za pomocą _module.less
i _extend.less
? A jaka jest najlepsza praktyka przy rozszerzaniu modułu / motywu?
Moją pierwszą myślą było to, że lepiej jest używać go _module.less
podczas projektowania nowego modułu i _extend.less
podczas jego rozbudowy. Ale Luma używa, _module.less
gdy rozszerza pusty motyw, aby teoria zniknęła za oknem.
Jedyną różnicą, którą widzę między nimi, jest _module.less
importowany przed biblioteką responsywną i _theme.less
gdzie _extend.less
jest importowany po nich.
W tej kolejności są importowane vendor/magento/theme-frontend-blank/web/css/styles-l.less
//
// Blank theme desktop styles
// _____________________________________________
// These desktop styles are added to mobile
//
// Global lib + theme styles
// ---------------------------------------------
@import '_styles.less';
@import (reference) 'source/_extends.less';
//
// Magento Import instructions
// ---------------------------------------------
//@magento_import 'source/_module.less'; // Theme modules
//@magento_import 'source/_widgets.less'; // Theme widgets
//
// Media queries collector
// ---------------------------------------------
@import 'source/lib/_responsive.less';
@media-target: 'desktop'; // Sets target device for this file
@media-common: false; // Sets not to output common styles
//
// Global variables override
// ---------------------------------------------
@import 'source/_theme.less';
//
// Extend for minor customisation
// ---------------------------------------------
//@magento_import 'source/_extend.less';