1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-01 03:10:14 +02:00

Merge branch '2.0-wip' of git://github.com/twitter/bootstrap into 2.0-wip

This commit is contained in:
Burak Tuyan
2012-01-27 20:48:37 +02:00
6 changed files with 45 additions and 4 deletions

View File

@@ -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: Thu Jan 26 22:39:03 PST 2012 * Date: Fri Jan 27 12:16:22 EST 2012
*/ */
article, article,
aside, aside,
@@ -604,6 +604,9 @@ input:focus, textarea:focus {
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
outline: 0; outline: 0;
outline: 1px dotted #666 \9;
/* IE6-8 */
} }
input[type=file]:focus, input[type=checkbox]:focus, select:focus { input[type=file]:focus, input[type=checkbox]:focus, select:focus {
-webkit-box-shadow: none; -webkit-box-shadow: none;
@@ -884,6 +887,12 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
-moz-border-radius: 0 3px 3px 0; -moz-border-radius: 0 3px 3px 0;
border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0;
} }
.input-append input:first-child {
*margin-left: -160px;
}
.input-append input:first-child + .add-on {
*margin-left: -21px;
}
.search-query { .search-query {
padding-left: 14px; padding-left: 14px;
padding-right: 14px; padding-right: 14px;
@@ -969,6 +978,7 @@ table {
.table-bordered { .table-bordered {
border: 1px solid #ddd; border: 1px solid #ddd;
border-collapse: separate; border-collapse: separate;
*border-collapse: collapsed;
-webkit-border-radius: 4px; -webkit-border-radius: 4px;
-moz-border-radius: 4px; -moz-border-radius: 4px;
border-radius: 4px; border-radius: 4px;
@@ -2535,6 +2545,8 @@ table .span12 {
.btn { .btn {
display: inline-block; display: inline-block;
padding: 4px 10px 4px; padding: 4px 10px 4px;
*padding: 2px 10px;
*margin-left: 4px;
font-size: 13px; font-size: 13px;
line-height: 18px; line-height: 18px;
color: #333333; color: #333333;
@@ -2557,6 +2569,9 @@ table .span12 {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
cursor: pointer; cursor: pointer;
} }
.btn:first-child {
*margin-left: 0;
}
.btn:hover { .btn:hover {
color: #333333; color: #333333;
text-decoration: none; text-decoration: none;

View File

@@ -19,7 +19,7 @@
<section class="download" id="components"> <section class="download" id="components">
<div class="page-header"> <div class="page-header">
<a class="pull-right toggle-all" href="#">Toggle all</a> <a class="btn small pull-right toggle-all" href="#">Toggle all</a>
<h1> <h1>
1. Select components 1. Select components
<small>Get just the CSS you need</small> <small>Get just the CSS you need</small>
@@ -79,7 +79,7 @@
<section class="download" id="variables"> <section class="download" id="variables">
<div class="page-header"> <div class="page-header">
<a class="pull-right toggle-all" href="#">Reset to defaults</a> <a class="btn small pull-right toggle-all" href="#">Reset to defaults</a>
<h1> <h1>
2. Modify variables 2. Modify variables
<small>Customize Bootstrap without using a LESS compiler</small> <small>Customize Bootstrap without using a LESS compiler</small>
@@ -157,7 +157,7 @@
<section class="download" id="plugins"> <section class="download" id="plugins">
<div class="page-header"> <div class="page-header">
<a class="pull-right toggle-all" href="#">Toggle all</a> <a class="btn small pull-right toggle-all" href="#">Toggle all</a>
<h1> <h1>
3. Select jQuery plugins 3. Select jQuery plugins
<small>Quickly add only the necessary javascript</small> <small>Quickly add only the necessary javascript</small>

View File

@@ -71,6 +71,8 @@
</div> </div>
</div><!-- /row --> </div><!-- /row -->
<br>
<h2>Offsetting columns</h2> <h2>Offsetting columns</h2>
<div class="row show-grid"> <div class="row show-grid">
<div class="span4">4</div> <div class="span4">4</div>
@@ -83,6 +85,12 @@
<div class="row show-grid"> <div class="row show-grid">
<div class="span8 offset4">8 offset 4</div> <div class="span8 offset4">8 offset 4</div>
</div><!-- /row --> </div><!-- /row -->
<pre class="prettyprint linenums">
&lt;div class="row"&gt;
&lt;div class="span4"&gt;...&lt;/div&gt;
&lt;div class="span4 offset4"&gt;...&lt;/div&gt;
&lt;/div&gt;
</pre>
<br> <br>

View File

@@ -67,6 +67,13 @@
// Button Base // Button Base
display: inline-block; display: inline-block;
padding: 4px 10px 4px; padding: 4px 10px 4px;
*padding: 2px 10px;
// IE7 likes to collapse the whitespace before the button, so bring it back...
*margin-left: 4px;
&:first-child {
// ...but not before the first button
*margin-left: 0;
}
font-size: @baseFontSize; font-size: @baseFontSize;
line-height: @baseLineHeight; line-height: @baseLineHeight;
color: @grayDark; color: @grayDark;

View File

@@ -192,6 +192,7 @@ textarea:focus {
@shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6); @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
.box-shadow(@shadow); .box-shadow(@shadow);
outline: 0; outline: 0;
outline: 1px dotted #666 \9; /* IE6-8 */
} }
input[type=file]:focus, input[type=file]:focus,
input[type=checkbox]:focus, input[type=checkbox]:focus,
@@ -439,6 +440,15 @@ select:focus:required:invalid {
margin-left: -1px; margin-left: -1px;
.border-radius(0 3px 3px 0); .border-radius(0 3px 3px 0);
} }
input:first-child {
// In IE7, having a hasLayout container (from clearfix's zoom:1) can make the first input
// inherit the sum of its ancestors' margins.
*margin-left: -160px;
&+.add-on {
*margin-left: -21px;
}
}
} }

View File

@@ -64,6 +64,7 @@ table {
.table-bordered { .table-bordered {
border: 1px solid #ddd; border: 1px solid #ddd;
border-collapse: separate; // Done so we can round those corners! border-collapse: separate; // Done so we can round those corners!
*border-collapse: collapsed; // IE7 can't round corners anyway
.border-radius(4px); .border-radius(4px);
th + th, th + th,
td + td, td + td,