mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
remove lingering references to Less in the docs
This commit is contained in:
parent
edb6c07254
commit
626f30fd6b
2 changed files with 5 additions and 5 deletions
|
@ -16,7 +16,7 @@ Depending on the context, you may override as-needed (Option 1) or reset the box
|
||||||
*
|
*
|
||||||
* Reset individual elements or override regions to avoid conflicts due to
|
* Reset individual elements or override regions to avoid conflicts due to
|
||||||
* global box model settings of Bootstrap. Two options, individual overrides and
|
* global box model settings of Bootstrap. Two options, individual overrides and
|
||||||
* region resets, are available as plain CSS and uncompiled Less formats.
|
* region resets, are available as plain CSS and uncompiled Sass formats.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Option 1A: Override a single element's box model via CSS */
|
/* Option 1A: Override a single element's box model via CSS */
|
||||||
|
@ -26,7 +26,7 @@ Depending on the context, you may override as-needed (Option 1) or reset the box
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Option 1B: Override a single element's box model by using a Bootstrap Less mixin */
|
/* Option 1B: Override a single element's box model by using a Bootstrap Sass mixin */
|
||||||
.element {
|
.element {
|
||||||
.box-sizing(content-box);
|
.box-sizing(content-box);
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ Depending on the context, you may override as-needed (Option 1) or reset the box
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Option 2B: Reset an entire region with a custom Less mixin */
|
/* Option 2B: Reset an entire region with a custom Sass mixin */
|
||||||
.reset-box-sizing {
|
.reset-box-sizing {
|
||||||
&,
|
&,
|
||||||
*,
|
*,
|
||||||
|
|
|
@ -25,9 +25,9 @@ title: Bootstrap · The world's most popular mobile-first and responsive f
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<img src="assets/img/sass-less.png" alt="Sass and Less support" class="img-responsive">
|
<img src="assets/img/sass-less.png" alt="Sass support" class="img-responsive">
|
||||||
<h3>Preprocessors</h3>
|
<h3>Preprocessors</h3>
|
||||||
<p>Bootstrap ships with vanilla CSS, but its source code utilizes the two most popular CSS preprocessors, <a href="../css/#less">Less</a> and <a href="../css/#sass">Sass</a>. Quickly get started with precompiled CSS or build on the source.</p>
|
<p>Bootstrap ships with vanilla CSS, but its source code utilizes <a href="../css/#sass">Sass</a>, a popular CSS preprocessor. Quickly get started with precompiled CSS or build on the source.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<img src="assets/img/devices.png" alt="Responsive across devices" class="img-responsive">
|
<img src="assets/img/devices.png" alt="Responsive across devices" class="img-responsive">
|
||||||
|
|
Loading…
Reference in a new issue