【问题标题】:How can I combine my LESS file with the default bootstrap less file如何将我的 LESS 文件与默认的 bootstrapless 文件结合起来
【发布时间】:2014-11-17 04:03:42
【问题描述】:

我正在尝试从 twitter bootstrap LESS 创建一个不同的面板,因此我创建了一个新的 LESS 文件并将其命名为 panel.less。然而,twitter bootstrap 已经有他们默认的面板 LESS 文件,称为 panels.less

如何将它们组合起来,以便它也可以处理我的 less 文件?(这可能不是正确的词)

无面板

`

.panel-profile .panel-heading {
    position: relative;
}
.panel-profile .panel-heading  h4 {
    margin: 10px 0 20px;
    font-weight: normal;
}
.panel-profile .panel-heading img {
    margin: 0 auto 10px;
    display: block;
    border: 1px solid #ddd;
    background: #fff;
}
@media (min-width:400px) {
    .panel-profile .panel-heading a {
        font-size: .75em;
        float: right;
    }
   .panael-profile .panel-heading {
    margin-bottom: 30px;
    }
  .panel-profile .panel-heading img {
        position: absolute;
        margin: 0;
        display: inline;
        bottom: -25px;
    }
}

`

Bootstrap.less。 - 这是我的版本不是默认版本 `

// Core variables and mixins
@import "variables.less";
@import "mixins.less";

// Reset
@import "normalize.less";
@import "print.less";

// Core CSS
@import "scaffolding.less";
@import "type.less";
@import "grid.less";
@import "forms.less";
@import "buttons.less";

// Components
@import "component-animations.less";
@import "muicons.less";
@import "dropdowns.less";
@import "button-groups.less";
@import "navs.less";
@import "navbar.less";
@import "media.less";
@import "list-group.less";
@import "close.less";
@import "panel.less";

`

Panels.less ` // // 面板 //------------------------------------------------ --

// Base class
.panel {
  margin-bottom: @line-height-computed;
  background-color: @panel-bg;
  border: 1px solid transparent;
  border-radius: @panel-border-radius;
  .box-shadow(0 1px 1px rgba(0,0,0,.05));
}

// Panel contents
.panel-body {
  padding: @panel-body-padding;
  &:extend(.clearfix all);
}

// Optional heading
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  .border-top-radius((@panel-border-radius - 1));

  > .dropdown .dropdown-toggle {
    color: inherit;
  }
}

// Within heading, strip any `h*` tag of its default margins for spacing.
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: ceil((@font-size-base * 1.125));
  color: inherit;

  > a {
    color: inherit;
  }
}

// Optional footer (stays gray in every modifier class)
.panel-footer {
  padding: 10px 15px;
  background-color: @panel-footer-bg;
  border-top: 1px solid @panel-inner-border;
  .border-bottom-radius((@panel-border-radius - 1));
}


// List groups in panels
//
// By default, space out list group content from panel headings to account for
// any kind of custom content between the two.

.panel {
  > .list-group {
    margin-bottom: 0;

    .list-group-item {
      border-width: 1px 0;
      border-radius: 0;
    }

    // Add border top radius for first one
    &:first-child {
      .list-group-item:first-child {
        border-top: 0;
        .border-top-radius((@panel-border-radius - 1));
      }
    }
    // Add border bottom radius for last one
    &:last-child {
      .list-group-item:last-child {
        border-bottom: 0;
        .border-bottom-radius((@panel-border-radius - 1));
      }
    }
  }
}
// Collapse space between when there's no additional content.
.panel-heading + .list-group {
  .list-group-item:first-child {
    border-top-width: 0;
  }
}


// Tables in panels
//
// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and
// watch it go full width.

.panel {
  > .table,
  > .table-responsive > .table {
    margin-bottom: 0;
  }
  // Add border top radius for first one
  > .table:first-child,
  > .table-responsive:first-child > .table:first-child {
    .border-top-radius((@panel-border-radius - 1));

    > thead:first-child,
    > tbody:first-child {
      > tr:first-child {
        td:first-child,
        th:first-child {
          border-top-left-radius: (@panel-border-radius - 1);
        }
        td:last-child,
        th:last-child {
          border-top-right-radius: (@panel-border-radius - 1);
        }
      }
    }
  }
  // Add border bottom radius for last one
  > .table:last-child,
  > .table-responsive:last-child > .table:last-child {
    .border-bottom-radius((@panel-border-radius - 1));

    > tbody:last-child,
    > tfoot:last-child {
      > tr:last-child {
        td:first-child,
        th:first-child {
          border-bottom-left-radius: (@panel-border-radius - 1);
        }
        td:last-child,
        th:last-child {
          border-bottom-right-radius: (@panel-border-radius - 1);
        }
      }
    }
  }
  > .panel-body + .table,
  > .panel-body + .table-responsive {
    border-top: 1px solid @table-border-color;
  }
  > .table > tbody:first-child > tr:first-child th,
  > .table > tbody:first-child > tr:first-child td {
    border-top: 0;
  }
  > .table-bordered,
  > .table-responsive > .table-bordered {
    border: 0;
    > thead,
    > tbody,
    > tfoot {
      > tr {
        > th:first-child,
        > td:first-child {
          border-left: 0;
        }
        > th:last-child,
        > td:last-child {
          border-right: 0;
        }
      }
    }
    > thead,
    > tbody {
      > tr:first-child {
        > td,
        > th {
          border-bottom: 0;
        }
      }
    }
    > tbody,
    > tfoot {
      > tr:last-child {
        > td,
        > th {
          border-bottom: 0;
        }
      }
    }
  }
  > .table-responsive {
    border: 0;
    margin-bottom: 0;
  }
}


// Collapsable panels (aka, accordion)
//
// Wrap a series of panels in `.panel-group` to turn them into an accordion with
// the help of our collapse JavaScript plugin.

.panel-group {
  margin-bottom: @line-height-computed;

  // Tighten up margin so it's only between panels
  .panel {
    margin-bottom: 0;
    border-radius: @panel-border-radius;
    overflow: hidden; // crop contents when collapsed
    + .panel {
      margin-top: 5px;
    }
  }

  .panel-heading {
    border-bottom: 0;
    + .panel-collapse .panel-body {
      border-top: 1px solid @panel-inner-border;
    }
  }
  .panel-footer {
    border-top: 0;
    + .panel-collapse .panel-body {
      border-bottom: 1px solid @panel-inner-border;
    }
  }
}


// Contextual variations
.panel-default {
  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);
}
.panel-primary {
  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);
}
.panel-success {
  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);
}
.panel-info {
  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);
}
.panel-warning {
  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);
}
.panel-danger {
  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);
}

`

WORKS:我不确定出了什么问题,但我将面板 LESS 文件与默认面板 LESS 文件组合在一起并设法获得了结果。但我确信这是编译它的错误方法。

【问题讨论】:

    标签: css twitter-bootstrap twitter-bootstrap-3 less


    【解决方案1】:

    我通常会创建一个特定于应用程序的主引导文件版本,我们称之为app-bootstrap.less。只需将默认bootstrap.less 的内容复制到此文件中即可。这也是您注释掉您不使用的引导程序部分(例如弹出框、面板、表单等)的机会。或者,如果你正在使用它,你可以只做@import "bootstrap.less";

    您接下来要做的是添加您自己的panels.less。使用的目录搜索顺序可能由您的设置决定,但我想这不是一件容易的事,app-bootstrap.less 中的@import "panels.less"; 意味着一件事(即“从本地目录导入 panels.less”)和 @987654329 中的另一个@(即“从引导程序中导入 panels.less”)。因此,您可以将面板添加到 app-panels.less 中,并确保将该文件导入到您的 app-bootstrap.less 中。

    【讨论】:

    • 只要输入@import "panels.less" 就会出错;进入 app-bootstrap.less。错误是找不到该文件。但是我也尝试将整个目录写出来,但它仍然给我同样的错误。
    • 你如何编译你的less源码?浏览器还是命令行?作为 grunt 任务的一部分,我几乎总是运行 less,让我们指定一些包含路径,这些路径将用于搜索更少的文件。如果您使用的是lessc,则选项为--include-path=PATH1;PATH2
    【解决方案2】:

    您可以将 bootstrap.less 文件 (@import "path";) 包含在您的 less 文件中,然后编译它 - 这样您就可以以“CSS 方式”覆盖该类。或者您可以包含 bootstrap.less 中包含的所有文件,但将 panel.less 替换为您的文件,然后编译它。

    【讨论】:

    • 两种方式都可以。通过输入@import“路径”会给我一个错误。我用我的文件替换了我的 panel.less,它看起来很奇怪。 :(
    • 您必须将“path”替换为 bootstrap.less 的路径。而且您的 panel.less 应该包含与原始内容相同的内容,但需要进行更改。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-11-08
    • 2018-07-19
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多