Less v2 does not compile Twitter's Bootstrap 2.x

前端 未结 5 2102
挽巷
挽巷 2020-12-05 17:30

When compiling Twitter\'s Bootstrap 2.3.2. with Less 2 i found to following error:

NameError: #grid > .core > .span is undefined in /home/bootstrap-2.3         


        
5条回答
  •  离开以前
    2020-12-05 17:55

    I was able to avoid the error without modifying Bootstrap files by creating a new mixin that loaded after the Bootstrap mixins:

    #grid {
        .core  {
            .span(@gridColumns) {
                width: (@gridColumnWidth * @gridColumns) + (@gridGutterWidth * (@gridColumns - 1));
            }
        }
    };
    

    This was better for us as we avoid patching contrib packages.

提交回复
热议问题