编译错误的胜绩twitterbootstrap buttons.less时(Error when c

2019-09-18 22:32发布

我得到一个“EVAL”为空或在未胜绩对象上buttons.less。

任何人 ?

PS。 我已经使用了最新版的所有功能和进口变量/混入的

我使用的版本是:1.5.3胜绩少1.3引导2.04

编辑:

这是固定的引导2.1.1

Answer 1:

Twitter的引导团队指出 ,他们不喜欢保证个人button.less文件汇编。 他们鼓励那些拥有所需的全部依赖关系bootstrap.less的汇编。 否则,你必须确保你有通过button.less(通常mixins.less和variables.less)所需的全部依赖。

其实这个问题似乎涉及到在一些胜绩解析的问题,所以它是固定的,然后才能过来和黑客攻击,这将欺骗不胜解析器。 在mixins.less,更改:

// IE7 inline-block
// ----------------
.ie7-inline-block() {
  *display: inline; /* IE7 inline-block hack */
  *zoom: 1;
}

有:

// IE7 inline-block
// ----------------
.ie7-inline-block() {
  *display: inline; /* IE7 inline-block hack */
  *zoom: 1;
  // comment to make it work with WinLESS
}

正如你可以看到它包含在添加新的行// comment to make it work with WinLESS欺骗不胜解析器和使其工作!



Answer 2:

还有另一种解决办法。

在取出的button.less在评论

    .btn {
  display: inline-block;
  .ie7-inline-block();
  padding: 4px 10px 4px;
  margin-bottom: 0; // For input.btn
  font-size: @baseFontSize;
  line-height: @baseLineHeight;
  *line-height: 20px;
  color: @grayDark;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255,255,255,.75);
  vertical-align: middle;
  cursor: pointer;
  .buttonBackground(@btnBackground, @btnBackgroundHighlight);
  border: 1px solid @btnBorder;
  *border: 0; **// Remove the border to prevent IE7's black border on input:focus  [remove this]**
  border-bottom-color: darken(@btnBorder, 10%);
  .border-radius(4px);
  .ie7-restore-left-whitespace(); **// Give IE7 some love [remove this]**
  .box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
}


文章来源: Error when compiling twitterbootstrap buttons.less on WinLess