vsn4ik
d7d6384d39
Fix margin-bottom on dropdown (navbar-fixed-bottom).
2014-12-05 23:30:30 +03:00
Mark Otto
df28b7e25f
Fixes #14965 : Reset top border-radii on dropdown menus in fixed bottom navbars
2014-11-08 00:13:19 -08:00
Mark Otto
6cfd176ac3
Reverts 0ec05da0ee to bring back #14444 to fix #14348 (again)
2014-09-23 13:29:19 -07:00
Mark Otto
f540569e87
Fixes #14227 , #14603 : Drop translate3d for translate on navbars to avoid iOS rendering problems and ensure a more predictable base styling
2014-09-22 14:17:54 -07:00
Mark Otto
c6d7d71549
Fixes #14557 : Reset the bottom margin on .form-group:last-child in .navbar-form to prevent extra spacing
2014-09-08 10:57:50 -07:00
Mark Otto
6f88238a6b
Merge pull request #14051 from loic/issue13325
...
Address margins on .navbar-right to fix #13325 #13464 .
2014-07-07 00:39:06 -07:00
Loic Bistuer
e88fa90991
Address margins on .navbar-right to fix #13325 #13464 .
...
This commit follows f9fde56 .
2014-07-07 12:56:52 +07:00
Mark Otto
8e2348e9ed
Fixes #13746 : Add docs section for brand image
2014-07-06 18:39:37 -07:00
Mark Otto
f9fde567be
Merge pull request #13464 from nickcolley/#13325-navbar-right-first
...
Changed last-child to first-child to fix #13325
2014-07-05 18:51:47 -07:00
Mark Otto
3537481c97
Fixes #12738 again: use max-device-width instead of max-width for .navbar-collapse height in landscape devices
2014-07-03 00:55:32 -07:00
ItsJonQ
7da34cc0ec
Applied translate3d to modal, navbar-fixed and affix to combat browser repaint
2014-05-21 17:24:43 -04:00
Nick Colley
dd0b0cd664
Changed last-child to first-child
...
As noted by @jerem the first child will actually be the last shown
2014-04-30 01:08:24 +01:00
Mark Otto
1848b0f249
Merge branch 'master' of github.com:twbs/bootstrap
2014-03-09 23:57:31 -07:00
Zlatan Vasović
d50a89bea9
Use outline: 0 consistently
2014-03-10 07:55:29 +01:00
Mark Otto
3640d71ad7
proper var
2014-03-09 23:25:15 -07:00
Mark Otto
b4d66b7f6b
Fixes #12738
...
* Removes default max-height from .navbar-collapse (so not every navbar
will get a max-height collapse section)
* Scopes regular 340px max-height to fixed top and bottom navbars only
(those are the only ones that really need a max-height to enable
scrolling)
* Adds a landscape media query for phones to cap the max-height at
200px for fixed navbars"
2014-03-09 20:45:32 -07:00
Supergibbs
49094844ac
Correctly set .btn-link colors in a .navbar and .navbar-inverse #12694
2014-02-21 20:51:06 -08:00
Chris Kankiewicz
22e576c600
Fix issue causing .navbar-brand element height to be shorter than .navbar height
2014-01-30 14:59:54 -07:00
Alan Hamlett
e38fd138ce
fixes #10495 by forcing .navbar-brand height to prevent it's inner content from increasing navbar height
2014-01-25 21:40:56 -08:00
Chris Rebert
67271a18ac
add @navbar-collapse-max-height Less variable
2014-01-21 10:23:57 -08:00
Mark Otto
50cf0b1a9d
Update Gruntfile.js to copy 'dist/' files to 'docs/dist/' with 'grunt dist' task; Fixes #12030 : navbar toggle focus state
2013-12-31 18:23:10 -08:00
Mark Otto
ab740f0f0f
navbars need to use prefixed nav class or they won't work as expected
2013-12-18 14:28:03 -08:00
Julian Thilo
2b312bf3c1
Revert commits
...
Bootstrap is being relicensed from Apache 2.0 to MIT so that more of our community can use the free and open source software we lovely create together. As commits are copyright their original authors, the commits of any individual not agreeing to relicense their contributions are being removed to be later rewritten by the @twbs/team.
This undoes the changes introduced by the following commits:
https://github.com/twbs/bootstrap/commit/7ea34ae0ef79c793e9a9d393b4eef825b71e84b5 , https://github.com/twbs/bootstrap/commit/7376eef378fe7d5e69b8b8cce93c7c64b751d55a , https://github.com/twbs/bootstrap/commit/303ba1326bbe367598ab4cc063b4607507208e56 , https://github.com/twbs/bootstrap/commit/7d1c8c2a0ce16331583a965821690f7715e62908 , https://github.com/twbs/bootstrap/commit/11319f6da9f9a19ec40743cdfe868ac732698149 , https://github.com/twbs/bootstrap/commit/110fc8860117d8675345806219ba313b18086db2 , https://github.com/twbs/bootstrap/commit/ced08f69359f3a70771804a98fa3c499f388cc74
2013-12-18 22:58:13 +01:00
Chris Rebert
be508e043c
copyediting
2013-12-15 18:13:50 -08:00
Mark Otto
11c6ab767c
Fixes #10370 : Improved and deprecated dropdown menu alignment options
...
* Removes an old pair of selectors that didn’t properly target the
right-aligned navbar alignment of dropdown menus.
* Deprecates the `.pull-right` alignment in favor of a more specific
and unique class name.
* Adds `.dropdown-menu-right` as the new alignment class. This is then
mixin-ed into the `.navbar-right.navbar-nav` dropdown menus for
auto-alignment.
* To override that auto-alignment, use `.dropdown-menu-left` as needed.
2013-12-14 13:22:56 -08:00
Mark Otto
22820d7151
Fixes #10495 : Float Glyphicon and set margins in .navbar-brand to ensure there is no added height because wtf even is CSS
2013-12-13 23:06:04 -08:00
Mark Otto
0016c17f93
Switch to &:extend(.clearfix all) for clearfix mixin
...
Original discussion:
https://github.com/less/less.js/issues/1437#issuecomment-21383639 .
Since we’re switching to `grunt-contrib-less`, we can take advantage of
newer LESS features than what RECESS supported. Included in that is the
ability to `:extend`, and not only that, but `:extend(.mixin-name
all)`. By doing so, we remove duplicate CSS for all our elements that
were being clearfix-ed.
Fixes #8947 , #8968 , #8991 , #9257 , #9268 , #9291 , #9430 , #9604 , #9686 ,
#9929 , #10731 , #10793 , #11305 , #11498 , #11533 , #11570 , #11604 , #11652 .
(dem issues, tho)
2013-12-08 23:18:28 -08:00
Mark Otto
6273604601
Add .container-fluid variation for full-width containers and layouts
...
/cc #10711 #9862
2013-12-07 20:52:51 -08:00
Mark Otto
45930acdf7
Fixes #11610 : Add @grid-float-breakpoint-max to better link navbar behavior across viewports and improve customization.
...
Also addresses #10371 , #10395 , and #10465 .
2013-12-04 22:32:56 -08:00
Chris Rebert
199872418c
reference root issue in explanatory comment
2013-12-03 11:14:13 -08:00
Mark Otto
561aff7942
Merge pull request #11499 from bassjobsen/patch-3
...
fix navbar dropdown window resize bug
2013-12-01 20:18:40 -08:00
Mark Otto
5a0365524d
Rework navbar padding and margins for right aligned last-child elements
...
This slight reworking of the navbar spacing was brought about by a
problem noted in #11530 : use of `.navbar-form.navbar-right` leaves an
extra 15px of space on the right.
Here’s what’s new:
* Removed the `padding` on `.navbar-collapse` within static top, fixed
top, and fixed bottom navbars. Meaning, it’s still there for the
default navbar. This was the root cause of the extra 15px padding for
navbar forms.
* As part of this, I also replaced the existing negative margin
overrides for last-child elements with more contextual ones within
their sub-components.
Overall not too different, but should be more effective now and easier
to work with now.
For example of new changes, see http://jsbin.com/odeSiSo/1/ .
2013-12-01 19:27:33 -08:00
Mark Otto
d417fcecea
Fixes #11357 : Vertically center sm and xs buttons in the navbar
2013-12-01 18:13:27 -08:00
Mark Otto
6a2ca0ab3a
Fixes #11444 : Use @navbar-padding-vertical for nav links padding
2013-11-30 16:08:49 -08:00
Mark Otto
09cd5289ab
Fixes #11468 : Prevent default gradient on in Firefox for Android
2013-11-29 17:47:27 -08:00
Mark Otto
9f68a5b241
Fixes #11516 : Invert dropdown divider border in navbars
2013-11-28 12:39:39 -08:00
Tobias Lindig
ea78248608
removed all caret border color settings.
2013-11-28 17:41:43 +01:00
Julian Thilo
cdb243706e
Fix #11513 : Don't always float navbar-text
...
`navbar-text` should only float when the navbar is expanded on larger
screens, otherwise the element might be (hidden) behind `navbar-nav`.
Fixes #11513 .
X-Ref: #8820 #8815
2013-11-17 23:07:28 +01:00
Bass Jobsen
fbd3cf5f52
Update navbar.less
...
fix for issue #11243
2013-11-16 12:03:50 +01:00
Chris Rebert
aafe3f90bd
fix misspelling in comment
2013-10-24 19:50:08 -07:00
Chris Rebert
f31aae469e
fix misspelling in comment
2013-10-24 19:48:42 -07:00
Mark Otto
eed53d7811
Fixes #10601 : Use overflow-y: auto; for navbar collapse instead of visible to better enable scrolling on Android 4.x
2013-10-21 01:53:41 -07:00
Mark Otto
76baacf2c9
Remove default z-index on navbar and only set on static and fixed variants
2013-10-20 21:12:09 -07:00
Mark Otto
e486bb4f39
Fixes #10433 : Navbar z-index refactor
...
* Resets the default navbar z-index to auto at a certain breakpoint
* Adds fixed navbar z-index var to fixed bottom navbar (previously only on fixed top navbar)
2013-10-20 20:30:16 -07:00
jeonghwan
976f6dfdad
Fixes issue #11122 -- navbar-fixed-bottom border
...
Enable border-top in .navbar-fixed-bottom
2013-10-16 23:20:34 +09:00
Lipis
a6e2a93feb
Changed the border-color of .navbar-form to @navbar-default-border
2013-09-16 19:36:39 +02:00
Mark Otto
7bc845abfa
Add default navbar z-index to fix #9844
...
iOS doesn't pick up the z-indexing properly on the dropdowns unless you
specify one for the parent navbar.
2013-08-19 09:31:16 -07:00
Mark Otto
f497b5e1f5
move dropdown change from navbar to dropdowns to fix customizer compiling
2013-08-19 08:54:40 -07:00
Mark Otto
14c4484ec4
Nuke margin for last child navbar text
2013-08-19 00:34:31 -07:00
Mark Otto
5bd2d7ed7e
fixes #9815 : proper alignment of navbar nav if first child
2013-08-18 18:49:07 -07:00