Commit a36643dd authored by Mark Otto's avatar Mark Otto

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
parents 3a2d6e40 6dd51fab
......@@ -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;
}
......
This diff was suppressed by a .gitattributes entry.
......@@ -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,
......
This diff was suppressed by a .gitattributes entry.
This diff is collapsed.
This diff is collapsed.
This diff was suppressed by a .gitattributes entry.
This diff was suppressed by a .gitattributes entry.
......@@ -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.
*/
......
......@@ -20,7 +20,7 @@
}
&:focus {
// Remove focus outline when dropdown JS adds it after closing the menu
outline: none;
outline: 0;
}
}
}
......
......@@ -91,7 +91,7 @@
// Hover/focus state
&:hover,
&:focus {
outline: none;
outline: 0;
color: @carousel-control-color;
text-decoration: none;
.opacity(.9);
......
......@@ -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
......
......@@ -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
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment