Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Wed Oct 26 15:52:05 PDT 2011
* Date: Sun Nov 6 19:50:14 CET 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down Expand Up @@ -1598,6 +1598,9 @@ a.menu:after, .dropdown-toggle:after {
display: inline-block;
*display: inline;
}
.btn-dropdown .dropdown-menu {
*left: 0px;
}
.btn-dropdown .dropdown-toggle {
padding-right: 11px;
}
Expand Down Expand Up @@ -1636,6 +1639,10 @@ a.menu:after, .dropdown-toggle:after {
.btn-dropdown .large + .dropdown-menu {
top: 38px;
}
.btn-dropdown .small + .dropdown-menu {
top: 30px;
*top: 31px;
}
.tabs, .pills {
margin: 0 0 18px;
padding: 0;
Expand Down
3 changes: 2 additions & 1 deletion bootstrap.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions lib/patterns.less
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,10 @@ a.menu:after,
.btn-dropdown {
display: inline-block;
*display: inline;

.dropdown-menu {
*left: 0px;
}
}

// Define different toggle styles (colors, borders, margin and padding) for dropdown buttons
Expand Down Expand Up @@ -372,6 +376,12 @@ a.menu:after,
top: 38px;
}

// Change position for small buttons
.btn-dropdown .small + .dropdown-menu {
top: 30px;
*top: 31px;
}


// TABS AND PILLS
// --------------
Expand Down