简而言之,我得到以下结构:
- less
-- node_modules
--- bootstrap
----less
----- ALL BOOTSTRAP DATA
-- _components
--- _forms.less
-- all.less
一切(还有一些)都导入到 all.less 中,看起来像这样:
@import "node_modules/bootstrap/less/bootstrap";
// Font Awesome
@fa-font-path: '../fonts';
@import "_base/_variables";
@import "_base/_base";
@import "_base/_mobile";
@import "_base/_sections";
@import "_base/_typography";
@import "_components/_buttons";
@import "_components/_carousel";
@import "_components/_checkbox";
@import "_components/_dropdown";
@import "_components/_forms";
@import "_components/_helper";
@import "_components/_hover";
@import "_components/_modal";
@import "_components/_navbar";
@import "_components/_sidebar";
@import "_components/_table";
@import "_modules/_kollektion";
@import "_modules/_produkt";
@import "_modules/_register";
@import "_modules/_startseite";
@import "_modules/_warenkorb";
当我尝试编译 Shopware 中的所有内容时,我收到错误消息:
Während der Bearbeitung von Shop "TEST" ist ein Fehler aufgetreten: in _forms.less on line 250, column 7 248| top: 0; 249| 250| @media (max-width: @screen-xs-max) { 251| height: 35px; 252| width: 40px; 253| background-color: black;
这意味着我的 _forms.less 在第 250 行有一个错误。第 250 行如下所示:
@media (max-width: @screen-xs-max) {
height: 35px;
width: 40px;
background-color: black;
color: @white;
border-left: 5px solid @white;
}
当我将@screen-xs-max 变量悬停在 PHPStorm 中时,它会显示:
元素“screen-xs-max”仅通过名称解析而不使用显式导入
当我直接在 all.less 中使用变量时(在从其导入中删除 _forms.less 之后)它工作得很好。
对此有什么建议吗?