Merge branch 'master' into modular-the-mixins

Conflicts:
	dist/css/bootstrap.css.map
	docs/assets/js/raw-files.min.js
	docs/dist/css/bootstrap.css.map
This commit is contained in:
Mark Otto 2014-03-10 00:08:29 -07:00
commit a36643dd33
14 changed files with 17 additions and 17 deletions

View file

@ -4046,7 +4046,7 @@ tbody.collapse.in {
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
outline: none;
outline: 0;
}
.btn-group .btn + .btn,
@ -4801,7 +4801,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
}
.navbar-toggle:focus {
outline: none;
outline: 0;
}
.navbar-toggle .icon-bar {
@ -6571,7 +6571,7 @@ button.close {
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
outline: none;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
@ -7011,7 +7011,7 @@ button.close {
color: #fff;
text-decoration: none;
filter: alpha(opacity=90);
outline: none;
outline: 0;
opacity: .9;
}

Binary file not shown.

View file

@ -3207,7 +3207,7 @@ tbody.collapse.in {
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
outline: none;
outline: 0;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
@ -3835,7 +3835,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
border-radius: 4px;
}
.navbar-toggle:focus {
outline: none;
outline: 0;
}
.navbar-toggle .icon-bar {
display: block;
@ -5303,7 +5303,7 @@ button.close {
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
outline: none;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
@ -5678,7 +5678,7 @@ button.close {
color: #fff;
text-decoration: none;
filter: alpha(opacity=90);
outline: none;
outline: 0;
opacity: .9;
}
.carousel-control .icon-prev,

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

View file

@ -2,7 +2,7 @@
* grunt-contrib-qunit
* http://gruntjs.com/
*
* Copyright (c) 2013 'Cowboy' Ben Alman, contributors
* Copyright (c) 2013 "Cowboy" Ben Alman, contributors
* Licensed under the MIT license.
*/

View file

@ -20,7 +20,7 @@
}
&:focus {
// Remove focus outline when dropdown JS adds it after closing the menu
outline: none;
outline: 0;
}
}
}

View file

@ -91,7 +91,7 @@
// Hover/focus state
&:hover,
&:focus {
outline: none;
outline: 0;
color: @carousel-control-color;
text-decoration: none;
.opacity(.9);

View file

@ -54,7 +54,7 @@
.box-shadow(0 3px 9px rgba(0,0,0,.5));
background-clip: padding-box;
// Remove focus outline from opened modal
outline: none;
outline: 0;
}
// Modal background

View file

@ -92,7 +92,7 @@
.navbar-collapse {
max-height: @navbar-collapse-max-height;
@media (max-width: @screen-phone) and (orientation: landscape) {
@media (max-width: @screen-xs-min) and (orientation: landscape) {
max-height: 200px;
}
}
@ -200,7 +200,7 @@
// We remove the `outline` here, but later compensate by attaching `:hover`
// styles to `:focus`.
&:focus {
outline: none;
outline: 0;
}
// Bars

File diff suppressed because one or more lines are too long