Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CSS source maps reference to docs. Closes #15211 #15238

Merged
merged 1 commit into from
Nov 30, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/_includes/getting-started/whats-included.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ <h2 id="whats-included-precompiled">Precompiled Bootstrap</h2>
bootstrap/
├── css/
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap.min.css
│ ├── bootstrap-theme.css
│ ├── bootstrap-theme.css.map
│ └── bootstrap-theme.min.css
├── js/
│ ├── bootstrap.js
Expand All @@ -29,7 +31,7 @@ <h2 id="whats-included-precompiled">Precompiled Bootstrap</h2>
└── glyphicons-halflings-regular.woff
{% endhighlight %}

<p>This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>). Fonts from Glyphicons are included, as is the optional Bootstrap theme.</p>
<p>This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>) and CSS source maps (<code>bootstrap.*.map</code>) for use with web browsers developer tools (if you are curious about CSS source maps check out Google Chrome developer network <a href="https://developers.google.com/chrome-developer-tools/docs/css-preprocessors" target="_blank">Working with CSS Preprocessors</a>). Fonts from Glyphicons are included, as is the optional Bootstrap theme.</p>

<h2 id="whats-included-source">Bootstrap source code</h2>
<p>The Bootstrap source code download includes the precompiled CSS, JavaScript, and font assets, along with source Less, JavaScript, and documentation. More specifically, it includes the following and more:</p>
Expand Down