mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-20 17:54:23 +01:00
Conflicts: Gruntfile.js _config.yml dist/css/bootstrap-theme.css dist/css/bootstrap-theme.min.css dist/css/bootstrap.css dist/css/bootstrap.css.map dist/css/bootstrap.min.css dist/fonts/glyphicons-halflings-regular.eot dist/fonts/glyphicons-halflings-regular.svg dist/fonts/glyphicons-halflings-regular.ttf dist/fonts/glyphicons-halflings-regular.woff docs/_data/glyphicons.yml docs/_includes/components/alerts.html docs/_includes/components/badges.html docs/_includes/components/button-dropdowns.html docs/_includes/components/button-groups.html docs/_includes/components/dropdowns.html docs/_includes/components/glyphicons.html docs/_includes/components/input-groups.html docs/_includes/components/labels.html docs/_includes/components/media.html docs/_includes/components/navbar.html docs/_includes/components/navs.html docs/_includes/components/pagination.html docs/_includes/components/panels.html docs/_includes/components/progress-bars.html docs/_includes/css/buttons.html docs/_includes/css/forms.html docs/_includes/css/grid.html docs/_includes/css/helpers.html docs/_includes/css/images.html docs/_includes/css/less.html docs/_includes/css/responsive-utilities.html docs/_includes/css/sass.html docs/_includes/css/tables.html docs/_includes/css/type.html docs/_includes/getting-started/accessibility.html docs/_includes/getting-started/browser-device-support.html docs/_includes/getting-started/community.html docs/_includes/getting-started/download.html docs/_includes/getting-started/examples.html docs/_includes/getting-started/whats-included.html docs/_includes/js/affix.html docs/_includes/js/alerts.html docs/_includes/js/buttons.html docs/_includes/js/carousel.html docs/_includes/js/collapse.html docs/_includes/js/dropdowns.html docs/_includes/js/modal.html docs/_includes/js/overview.html docs/_includes/js/tabs.html docs/_includes/nav/components.html docs/_includes/nav/css.html docs/_includes/nav/javascript.html docs/_includes/nav/main.html docs/about.html docs/assets/css/docs.min.css docs/assets/js/customize.min.js docs/assets/js/raw-files.min.js docs/dist/css/bootstrap-theme.css docs/dist/css/bootstrap-theme.min.css docs/dist/css/bootstrap.css docs/dist/css/bootstrap.css.map docs/dist/css/bootstrap.min.css docs/dist/fonts/glyphicons-halflings-regular.eot docs/dist/fonts/glyphicons-halflings-regular.svg docs/dist/fonts/glyphicons-halflings-regular.ttf docs/dist/fonts/glyphicons-halflings-regular.woff docs/examples/carousel/index.html docs/examples/navbar-fixed-top/index.html docs/examples/navbar-static-top/index.html docs/examples/navbar/index.html docs/examples/non-responsive/index.html docs/examples/non-responsive/non-responsive.css docs/examples/sticky-footer-navbar/index.html docs/examples/theme/index.html fonts/glyphicons-halflings-regular.eot fonts/glyphicons-halflings-regular.svg fonts/glyphicons-halflings-regular.ttf fonts/glyphicons-halflings-regular.woff less/_carousel.less less/_forms.less less/glyphicons.less
207 lines
4.5 KiB
Plaintext
207 lines
4.5 KiB
Plaintext
//
|
|
// Dropdown menus
|
|
// --------------------------------------------------
|
|
|
|
// The dropdown wrapper (div)
|
|
.dropdown {
|
|
position: relative;
|
|
}
|
|
|
|
.dropdown-toggle {
|
|
// Generate the caret automatically
|
|
&:after {
|
|
display: inline-block;
|
|
width: 0;
|
|
height: 0;
|
|
content: "";
|
|
margin-left: .25rem;
|
|
vertical-align: middle;
|
|
border-top: @caret-width-base solid;
|
|
border-right: @caret-width-base solid transparent;
|
|
border-left: @caret-width-base solid transparent;
|
|
}
|
|
|
|
// Prevent the focus on the dropdown toggle when closing dropdowns
|
|
&:focus {
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
// The dropdown menu (ul)
|
|
.dropdown-menu {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
z-index: @zindex-dropdown;
|
|
display: none; // none by default, but block on "open" of the menu
|
|
float: left;
|
|
min-width: 160px;
|
|
padding: 5px 0;
|
|
margin: 2px 0 0; // override default ul
|
|
list-style: none;
|
|
font-size: @font-size-base;
|
|
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
|
background-color: @dropdown-bg;
|
|
border: 1px solid @dropdown-border;
|
|
.border-radius(@border-radius-base);
|
|
.box-shadow(0 6px 12px rgba(0,0,0,.175));
|
|
background-clip: padding-box;
|
|
|
|
// Dividers (basically an hr) within the dropdown
|
|
.divider {
|
|
.nav-divider(@dropdown-divider-bg);
|
|
}
|
|
|
|
// Links within the dropdown menu
|
|
> li > a {
|
|
display: block;
|
|
padding: 3px 20px;
|
|
clear: both;
|
|
font-weight: normal;
|
|
line-height: @line-height-base;
|
|
color: @dropdown-link-color;
|
|
white-space: nowrap; // prevent links from randomly breaking onto new lines
|
|
}
|
|
}
|
|
|
|
// Hover/Focus state
|
|
.dropdown-menu > li > a {
|
|
&:hover,
|
|
&:focus {
|
|
text-decoration: none;
|
|
color: @dropdown-link-hover-color;
|
|
background-color: @dropdown-link-hover-bg;
|
|
}
|
|
}
|
|
|
|
// Active state
|
|
.dropdown-menu > .active > a {
|
|
&,
|
|
&:hover,
|
|
&:focus {
|
|
color: @dropdown-link-active-color;
|
|
text-decoration: none;
|
|
outline: 0;
|
|
background-color: @dropdown-link-active-bg;
|
|
}
|
|
}
|
|
|
|
// Disabled state
|
|
//
|
|
// Gray out text and ensure the hover/focus state remains gray
|
|
|
|
.dropdown-menu > .disabled > a {
|
|
&,
|
|
&:hover,
|
|
&:focus {
|
|
color: @dropdown-link-disabled-color;
|
|
}
|
|
|
|
// Nuke hover/focus effects
|
|
&:hover,
|
|
&:focus {
|
|
text-decoration: none;
|
|
background-color: transparent;
|
|
background-image: none; // Remove CSS gradient
|
|
.reset-filter();
|
|
cursor: @cursor-disabled;
|
|
}
|
|
}
|
|
|
|
// Open state for the dropdown
|
|
.open {
|
|
// Show the menu
|
|
> .dropdown-menu {
|
|
display: block;
|
|
}
|
|
|
|
// Remove the outline when :focus is triggered
|
|
> a {
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
// Menu positioning
|
|
//
|
|
// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
|
|
// menu with the parent.
|
|
.dropdown-menu-right {
|
|
left: auto; // Reset the default from `.dropdown-menu`
|
|
right: 0;
|
|
}
|
|
// With v3, we enabled auto-flipping if you have a dropdown within a right
|
|
// aligned nav component. To enable the undoing of that, we provide an override
|
|
// to restore the default dropdown menu alignment.
|
|
//
|
|
// This is only for left-aligning a dropdown menu within a `.navbar-right` or
|
|
// `.pull-right` nav component.
|
|
.dropdown-menu-left {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
// Dropdown section headers
|
|
.dropdown-header {
|
|
display: block;
|
|
padding: 3px 20px;
|
|
font-size: @font-size-sm;
|
|
line-height: @line-height-base;
|
|
color: @dropdown-header-color;
|
|
white-space: nowrap; // as with > li > a
|
|
}
|
|
|
|
// Backdrop to catch body clicks on mobile, etc.
|
|
.dropdown-backdrop {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
top: 0;
|
|
z-index: (@zindex-dropdown - 10);
|
|
}
|
|
|
|
// Right aligned dropdowns
|
|
.pull-right > .dropdown-menu {
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
|
|
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
|
//
|
|
// Just add .dropup after the standard .dropdown class and you're set, bro.
|
|
// TODO: abstract this so that the navbar fixed styles are not placed here?
|
|
|
|
.dropup,
|
|
.navbar-fixed-bottom .dropdown {
|
|
// Reverse the caret
|
|
.caret {
|
|
border-top: 0;
|
|
border-bottom: @caret-width-base solid;
|
|
content: "";
|
|
}
|
|
// Different positioning for bottom up menu
|
|
.dropdown-menu {
|
|
top: auto;
|
|
bottom: 100%;
|
|
margin-bottom: 2px;
|
|
}
|
|
}
|
|
|
|
|
|
// Component alignment
|
|
//
|
|
// Reiterate per navbar.less and the modified component alignment there.
|
|
|
|
.media-sm({
|
|
.navbar-right {
|
|
.dropdown-menu {
|
|
.dropdown-menu-right();
|
|
}
|
|
// Necessary for overrides of the default right aligned menu.
|
|
// Will remove come v4 in all likelihood.
|
|
.dropdown-menu-left {
|
|
.dropdown-menu-left();
|
|
}
|
|
}
|
|
});
|