mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-23 09:41:11 +00:00
Restore commented out dropdown styles, get open dropdown state working again
This commit is contained in:
parent
92adcfabb5
commit
2d10d61fde
62
docs/assets/css/bootstrap.css
vendored
62
docs/assets/css/bootstrap.css
vendored
@ -2693,15 +2693,10 @@ input[type="button"].btn-block {
|
|||||||
content: "\e160";
|
content: "\e160";
|
||||||
}
|
}
|
||||||
|
|
||||||
.open > a {
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.caret {
|
.caret {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
margin-top: 8px;
|
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
border-top: 4px solid #000;
|
border-top: 4px solid #000;
|
||||||
@ -2804,6 +2799,10 @@ input[type="button"].btn-block {
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.open > a {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.pull-right > .dropdown-menu {
|
.pull-right > .dropdown-menu {
|
||||||
right: 0;
|
right: 0;
|
||||||
left: auto;
|
left: auto;
|
||||||
@ -3163,6 +3162,13 @@ button.close {
|
|||||||
margin-top: 9px;
|
margin-top: 9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav > li.open > a,
|
||||||
|
.nav > li.open > a:hover,
|
||||||
|
.nav > li.open > a:focus {
|
||||||
|
background-color: #428bca;
|
||||||
|
border-color: #428bca;
|
||||||
|
}
|
||||||
|
|
||||||
.nav > .pull-right {
|
.nav > .pull-right {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
@ -3313,10 +3319,56 @@ button.close {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.nav-tabs .dropdown-menu {
|
.nav-tabs .dropdown-menu {
|
||||||
|
margin-top: -1px;
|
||||||
border-top-right-radius: 0;
|
border-top-right-radius: 0;
|
||||||
border-top-left-radius: 0;
|
border-top-left-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav .caret {
|
||||||
|
border-top-color: #428bca;
|
||||||
|
border-bottom-color: #428bca;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav a:hover .caret {
|
||||||
|
border-top-color: #2a6496;
|
||||||
|
border-bottom-color: #2a6496;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav .active .caret {
|
||||||
|
border-top-color: #fff;
|
||||||
|
border-bottom-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-tabs .active .caret {
|
||||||
|
border-top-color: #555555;
|
||||||
|
border-bottom-color: #555555;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav > .dropdown.active > a:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-tabs .open > a,
|
||||||
|
.nav-pills .open > a,
|
||||||
|
.nav > li.dropdown.open.active > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #999999;
|
||||||
|
border-color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav li.dropdown.open .caret,
|
||||||
|
.nav li.dropdown.open.active .caret,
|
||||||
|
.nav li.dropdown.open > a:hover .caret {
|
||||||
|
border-top-color: #fff;
|
||||||
|
border-bottom-color: #fff;
|
||||||
|
opacity: 1;
|
||||||
|
filter: alpha(opacity=100);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs-stacked .open > a:hover {
|
||||||
|
border-color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// Prevent IE8 from misplacing imgs
|
// Prevent IE8 from misplacing imgs
|
||||||
// See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
|
// See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
|
||||||
|
@ -2,10 +2,6 @@
|
|||||||
// Dropdown menus
|
// Dropdown menus
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
// Remove the outline when :focus is triggered
|
|
||||||
.open > a {
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Dropdown arrow/caret
|
// Dropdown arrow/caret
|
||||||
// --------------------
|
// --------------------
|
||||||
@ -107,9 +103,15 @@
|
|||||||
// Open state for the dropdown
|
// Open state for the dropdown
|
||||||
// ---------------------------
|
// ---------------------------
|
||||||
.open {
|
.open {
|
||||||
& > .dropdown-menu {
|
// Show the menu
|
||||||
|
> .dropdown-menu {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove the outline when :focus is triggered
|
||||||
|
> a {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Right aligned dropdowns
|
// Right aligned dropdowns
|
||||||
|
@ -28,17 +28,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Nav states and addons
|
// Disabled state sets text to gray and nukes hover/tab effects
|
||||||
// --------------------------------------------------
|
|
||||||
|
|
||||||
// Disabled state
|
|
||||||
// -------------------------
|
|
||||||
|
|
||||||
// Gray out text
|
|
||||||
&.disabled > a {
|
&.disabled > a {
|
||||||
color: @gray-light;
|
color: @gray-light;
|
||||||
}
|
}
|
||||||
// Nuke hover effects
|
|
||||||
&.disabled > a:hover,
|
&.disabled > a:hover,
|
||||||
&.disabled > a:focus {
|
&.disabled > a:focus {
|
||||||
color: @gray-light;
|
color: @gray-light;
|
||||||
@ -46,10 +39,19 @@
|
|||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Space the headers out when they follow another list item (link)
|
// Space the headers out when they follow another list item (link)
|
||||||
+ .nav-header {
|
+ .nav-header {
|
||||||
margin-top: 9px;
|
margin-top: 9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Open dropdowns
|
||||||
|
&.open > a,
|
||||||
|
&.open > a:hover,
|
||||||
|
&.open > a:focus {
|
||||||
|
background-color: @link-color;
|
||||||
|
border-color: @link-color;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Redeclare pull classes because of specifity
|
// Redeclare pull classes because of specifity
|
||||||
@ -222,11 +224,69 @@
|
|||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
.nav-tabs .dropdown-menu {
|
.nav-tabs .dropdown-menu {
|
||||||
|
// make dropdown border overlap tab border
|
||||||
|
margin-top: -1px;
|
||||||
// Remove the top rounded corners here since there is a hard edge above the menu
|
// Remove the top rounded corners here since there is a hard edge above the menu
|
||||||
.border-top-radius(0);
|
.border-top-radius(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Make dropdown carets use link color in navs
|
||||||
|
.nav .caret {
|
||||||
|
border-top-color: @link-color;
|
||||||
|
border-bottom-color: @link-color;
|
||||||
|
}
|
||||||
|
.nav a:hover .caret {
|
||||||
|
border-top-color: @link-hover-color;
|
||||||
|
border-bottom-color: @link-hover-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Active dropdown links
|
||||||
|
// -------------------------
|
||||||
|
.nav .active .caret {
|
||||||
|
border-top-color: #fff;
|
||||||
|
border-bottom-color: #fff;
|
||||||
|
}
|
||||||
|
.nav-tabs .active .caret {
|
||||||
|
border-top-color: @gray;
|
||||||
|
border-bottom-color: @gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Active:hover dropdown links
|
||||||
|
// -------------------------
|
||||||
|
.nav > .dropdown.active > a:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Open dropdowns
|
||||||
|
// -------------------------
|
||||||
|
.nav-tabs .open > a,
|
||||||
|
.nav-pills .open > a,
|
||||||
|
.nav > li.dropdown.open.active > a:hover {
|
||||||
|
color: #fff;
|
||||||
|
background-color: @gray-light;
|
||||||
|
border-color: @gray-light;
|
||||||
|
}
|
||||||
|
.nav li.dropdown.open .caret,
|
||||||
|
.nav li.dropdown.open.active .caret,
|
||||||
|
.nav li.dropdown.open > a:hover .caret {
|
||||||
|
border-top-color: #fff;
|
||||||
|
border-bottom-color: #fff;
|
||||||
|
.opacity(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dropdowns in stacked tabs
|
||||||
|
.tabs-stacked .open > a:hover {
|
||||||
|
border-color: @gray-light;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// Prevent IE8 from misplacing imgs
|
// Prevent IE8 from misplacing imgs
|
||||||
// See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
|
// See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
|
||||||
|
Loading…
x
Reference in New Issue
Block a user