Skip to content

Commit

Permalink
little fixes for ie 7
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed Sep 16, 2011
1 parent 8896497 commit 68f89d1
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions bootstrap-1.3.0.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Tue Sep 13 22:22:48 PDT 2011
* Date: Thu Sep 15 22:27:27 PDT 2011
*/
/* 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).
Expand Down Expand Up @@ -705,7 +705,7 @@ input, textarea {
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
input:focus, textarea:focus {
outline: none;
outline: 0;
border-color: rgba(82, 168, 236, 0.8);
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
Expand Down Expand Up @@ -964,6 +964,8 @@ textarea[readonly] {
}
.input-prepend .add-on, .input-append .add-on {
position: relative;
background: #f5f5f5;
border: 1px solid #ccc;
z-index: 2;
float: left;
display: block;
Expand All @@ -977,8 +979,6 @@ textarea[readonly] {
color: #bfbfbf;
text-align: center;
text-shadow: 0 1px 0 #ffffff;
background-color: #f5f5f5;
border: 1px solid #ccc;
-webkit-border-radius: 3px 0 0 3px;
-moz-border-radius: 3px 0 0 3px;
border-radius: 3px 0 0 3px;
Expand Down Expand Up @@ -1322,7 +1322,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
color: #ffffff;
}
.topbar input:focus, .topbar input.focused {
outline: none;
outline: 0;
background-color: #ffffff;
color: #404040;
text-shadow: 0 1px 0 #ffffff;
Expand Down
6 changes: 3 additions & 3 deletions bootstrap-1.3.0.min.css

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

8 changes: 4 additions & 4 deletions docs/assets/css/docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ section > .row {
margin-bottom: 10px;
}
.show-grid [class*="span"] {
background-color: #eee;
background-color: rgba(0,0,0,.1);
background: #eee;
background: rgba(0,0,0,.1);
text-align: center;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
Expand All @@ -192,8 +192,8 @@ section > .row {
line-height: 30px;
}
.show-grid:hover [class*="span"] {
background-color: #ddd;
background-color: rgba(0,0,0,.2);
background: #ddd;
background: rgba(0,0,0,.2);
}
.show-grid .show-grid {
margin-top: 0;
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ <h3>History</h3>
<div class="span-one-third">
<h3>Browser support</h3>
<p>Bootstrap is tested and supported in major modern browsers like Chrome, Safari, Internet Explorer, and Firefox.</p>
<img src="assets/img/browsers.png" width="258px" height="48px" alt="Tested and supported in Chrome, Safari, Internet Explorer, and Firefox">
<img src="assets/img/browsers.png" alt="Tested and supported in Chrome, Safari, Internet Explorer, and Firefox">
<ul>
<li>Latest Safari</li>
<li>Latest Google Chrome</li>
Expand Down Expand Up @@ -1670,7 +1670,7 @@ <h3 class="title">Popover Title</h3>
</div>
</div>
</div>
<img class="large-bird" src="assets/img/bird.png" width="220px" height="145px">
<img class="large-bird" src="assets/img/bird.png" >
</div>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions lib/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ textarea {
}
input:focus,
textarea:focus {
outline: none;
outline: 0;
border-color: rgba(82,168,236,.8);
@shadow: inset 0 1px 3px rgba(0,0,0,.1), 0 0 8px rgba(82,168,236,.6);
.box-shadow(@shadow);
Expand Down Expand Up @@ -331,6 +331,8 @@ textarea[readonly] {
}
.add-on {
position: relative;
background: #f5f5f5;
border: 1px solid #ccc;
z-index: 2;
float: left;
display: block;
Expand All @@ -344,8 +346,6 @@ textarea[readonly] {
color: @grayLight;
text-align: center;
text-shadow: 0 1px 0 @white;
background-color: #f5f5f5;
border: 1px solid #ccc;
.border-radius(3px 0 0 3px);
}
.active {
Expand Down
2 changes: 1 addition & 1 deletion lib/patterns.less
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
// Focus states (we use .focused since IE8 and down doesn't support :focus)
&:focus,
&.focused {
outline: none;
outline: 0;
background-color: @white;
color: @grayDark;
text-shadow: 0 1px 0 @white;
Expand Down

0 comments on commit 68f89d1

Please sign in to comment.