总之,我得到了以下结构:
- 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;
}
当我将鼠标悬停在PHPStorm的@屏幕-XS-MAX变量,它说:
元素“屏幕-XS-MAX”仅由名称解析,而不使用明确的进口
当我在all.less直接使用变量(除去其进口_forms.less后),它工作得很好。
这有什么建议?