Чи є різниця між розширенням теми за допомогою _module.less
та _extend.less
? І яка найкраща практика під час розширення модуля / теми?
Перша моя думка - це краще використовувати _module.less
при стилюванні нового модуля та _extend.less
при подовженні модуля. Але Luma використовує, _module.less
коли розширює порожню тему, щоб теорія вийшла за вікно.
Єдина відмінність, яку я бачу між ними, - _module.less
це імпортувати перед чуйною бібліотекою та _theme.less
де, як _extend.less
імпортувати після них.
Це порядок, в який вони імпортуються 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';