Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/twitter/bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed Jan 4, 2012
2 parents eb123f6 + 1c7c5f7 commit 3237047
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
5 changes: 4 additions & 1 deletion bootstrap.css
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Designed and built with all the love in the world @twitter by @mdo and @fat. * Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Sun Nov 20 21:42:29 PST 2011 * Date: Sun Dec 25 20:18:31 PST 2011
*/ */
/* Reset.less /* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc). * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down Expand Up @@ -2177,6 +2177,8 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
top: 50%; top: 50%;
left: 50%; left: 50%;
z-index: 11000; z-index: 11000;
max-height: 500px;
overflow: auto;
width: 560px; width: 560px;
margin: -250px 0 0 -280px; margin: -250px 0 0 -280px;
background-color: #ffffff; background-color: #ffffff;
Expand Down Expand Up @@ -2415,6 +2417,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
-moz-border-radius: 3px; -moz-border-radius: 3px;
border-radius: 3px; border-radius: 3px;
text-shadow: none;
} }
.label.important { .label.important {
background-color: #c43c35; background-color: #c43c35;
Expand Down
4 changes: 2 additions & 2 deletions bootstrap.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions docs/index.html
Expand Up @@ -897,7 +897,10 @@ <h3>Example: Condensed table</h3>
</tr> </tr>
</tbody> </tbody>
</table> </table>

<pre class="prettyprint linenums">
&lt;table class="condensed-table"&gt;
...
&lt;/table&gt;</pre>
<h3>Example: Bordered table</h3> <h3>Example: Bordered table</h3>
<p>Make your tables look just a wee bit sleeker by rounding their corners and adding borders on all sides.</p> <p>Make your tables look just a wee bit sleeker by rounding their corners and adding borders on all sides.</p>
<table class="bordered-table"> <table class="bordered-table">
Expand Down Expand Up @@ -1971,7 +1974,7 @@ <h3>Ways to compile</h3>
<td>Node with makefile</td> <td>Node with makefile</td>
<td> <td>
<p>Install the less command line compiler with npm by running the following command:</p> <p>Install the less command line compiler with npm by running the following command:</p>
<pre>$ npm install lessc</pre> <pre>$ npm install less</pre>
<p>Once installed just run <code>make</code> from the root of your bootstrap directory and you're all set.</p> <p>Once installed just run <code>make</code> from the root of your bootstrap directory and you're all set.</p>
<p>Additionally, if you have <a href="https://github.com/mynyml/watchr">watchr</a> installed, you may run <code>make watch</code> to have bootstrap automatically rebuilt every time you edit a file in the bootstrap lib (this isn't required, just a convenience method).</p> <p>Additionally, if you have <a href="https://github.com/mynyml/watchr">watchr</a> installed, you may run <code>make watch</code> to have bootstrap automatically rebuilt every time you edit a file in the bootstrap lib (this isn't required, just a convenience method).</p>
</td> </td>
Expand Down
2 changes: 1 addition & 1 deletion docs/javascript.html
Expand Up @@ -385,7 +385,7 @@ <h3>Markup</h3>
<h3>Methods</h3> <h3>Methods</h3>
<h4>$().tabs or $().pills</h4> <h4>$().tabs or $().pills</h4>
<p> <p>
Activates tab and pill functionality for a given container. Tab links should reference id's in the document. Activates tab and pill functionality for a given container. Tab links should reference IDs in the document.
</p> </p>
<pre class="prettyprint linenums"> <pre class="prettyprint linenums">
&lt;ul class="tabs"&gt; &lt;ul class="tabs"&gt;
Expand Down
3 changes: 3 additions & 0 deletions lib/patterns.less
Expand Up @@ -834,6 +834,8 @@ input[type=submit].btn {
top: 50%; top: 50%;
left: 50%; left: 50%;
z-index: 11000; z-index: 11000;
max-height: 500px;
overflow: auto;
width: 560px; width: 560px;
margin: -250px 0 0 -280px; margin: -250px 0 0 -280px;
background-color: @white; background-color: @white;
Expand Down Expand Up @@ -1025,6 +1027,7 @@ input[type=submit].btn {
white-space: nowrap; white-space: nowrap;
background-color: @grayLight; background-color: @grayLight;
.border-radius(3px); .border-radius(3px);
text-shadow: none;
&.important { background-color: #c43c35; } &.important { background-color: #c43c35; }
&.warning { background-color: @orange; } &.warning { background-color: @orange; }
&.success { background-color: @green; } &.success { background-color: @green; }
Expand Down

0 comments on commit 3237047

Please sign in to comment.