1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-31 00:59:51 +02:00
[ci skip]
This commit is contained in:
Chris Rebert
2016-06-04 18:21:15 -07:00
parent eb350d1a7c
commit 0f3d427bbd
35 changed files with 176 additions and 87 deletions

View File

@@ -1,5 +1,6 @@
/*!
* Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com)
* Copyright 2011-2016 The Bootstrap Authors
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
@@ -396,17 +397,17 @@ a:focus {
outline-offset: -2px;
}
a:not([href]) {
a:not([href]):not([tabindex]) {
color: inherit;
text-decoration: none;
}
a:not([href]):focus, a:not([href]):hover {
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
color: inherit;
text-decoration: none;
}
a:not([href]):focus {
a:not([href]):not([tabindex]):focus {
outline: none;
}
@@ -5666,6 +5667,10 @@ button.close {
border-radius: 0.2375rem 0.2375rem 0 0;
}
.popover-title:empty {
display: none;
}
.popover-content {
padding: 9px 14px;
}