messages of 404.html defined in main program, template moved in common directory
3 // --------------------------------------------------
6 // Wrapper and base class
8 // Provide a static navbar from which we expand to create full-width, fixed, and
9 // other navbar variations.
13 min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)
14 margin-bottom: @navbar-margin-bottom;
15 border: 1px solid transparent;
17 // Prevent floats from breaking the navbar
20 @media (min-width: @grid-float-breakpoint) {
21 border-radius: @navbar-border-radius;
28 // Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy
29 // styling of responsive aspects.
34 @media (min-width: @grid-float-breakpoint) {
40 // Navbar collapse (body)
42 // Group your navbar content into this for easy collapsing and expanding across
43 // various device sizes. By default, this content is collapsed when <768px, but
44 // will expand past that for a horizontal display.
46 // To start (on mobile devices) the navbar links, forms, and buttons are stacked
47 // vertically and include a `max-height` to overflow in case you have too much
48 // content for the user's viewport.
53 padding-right: @navbar-padding-horizontal;
54 padding-left: @navbar-padding-horizontal;
55 border-top: 1px solid transparent;
56 box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
58 -webkit-overflow-scrolling: touch;
64 @media (min-width: @grid-float-breakpoint) {
70 display: block !important;
71 height: auto !important;
72 padding-bottom: 0; // Override default setting
73 overflow: visible !important;
80 // Undo the collapse side padding for navbars with containers to ensure
81 // alignment of right-aligned contents.
84 .navbar-fixed-bottom & {
92 // Both navbar header and collapse
94 // When a container is present, change the behavior of the header and collapse.
96 .container > .navbar-header,
97 .container > .navbar-collapse {
98 margin-right: -@navbar-padding-horizontal;
99 margin-left: -@navbar-padding-horizontal;
101 @media (min-width: @grid-float-breakpoint) {
109 // Navbar alignment options
111 // Display the navbar across the entirety of the page or fixed it to the top or
112 // bottom of the page.
114 // Static top (unfixed, but 100% wide) navbar
116 z-index: @zindex-navbar;
117 border-width: 0 0 1px;
119 @media (min-width: @grid-float-breakpoint) {
124 // Fix the top/bottom navbars when screen real estate supports it
126 .navbar-fixed-bottom {
130 z-index: @zindex-navbar-fixed;
132 // Undo the rounded corners
133 @media (min-width: @grid-float-breakpoint) {
139 border-width: 0 0 1px;
141 .navbar-fixed-bottom {
143 margin-bottom: 0; // override .navbar defaults
144 border-width: 1px 0 0;
148 // Brand/project name
152 padding: @navbar-padding-vertical @navbar-padding-horizontal;
153 font-size: @font-size-large;
154 line-height: @line-height-computed;
158 text-decoration: none;
161 @media (min-width: @grid-float-breakpoint) {
162 .navbar > .container & {
163 margin-left: -@navbar-padding-horizontal;
171 // Custom button for toggling the `.navbar-collapse`, powered by the collapse
172 // JavaScript plugin.
177 margin-right: @navbar-padding-horizontal;
179 .navbar-vertical-align(34px);
180 background-color: transparent;
181 background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
182 border: 1px solid transparent;
183 border-radius: @border-radius-base;
192 .icon-bar + .icon-bar {
196 @media (min-width: @grid-float-breakpoint) {
204 // Builds on top of the `.nav` components with it's own modifier class to make
205 // the nav the full height of the horizontal nav (above 768px).
208 margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;
212 padding-bottom: 10px;
213 line-height: @line-height-computed;
216 @media (max-width: @grid-float-breakpoint-max) {
217 // Dropdowns get custom display when collapsed
218 .open .dropdown-menu {
223 background-color: transparent;
228 padding: 5px 15px 5px 25px;
231 line-height: @line-height-computed;
234 background-image: none;
240 // Uncollapse the nav
241 @media (min-width: @grid-float-breakpoint) {
248 padding-top: @navbar-padding-vertical;
249 padding-bottom: @navbar-padding-vertical;
253 &.navbar-right:last-child {
254 margin-right: -@navbar-padding-horizontal;
260 // Component alignment
262 // Repurpose the pull utilities as their own navbar utilities to avoid specificity
263 // issues with parents and chaining. Only do this when the navbar is uncollapsed
264 // though so that navbar contents properly stack and align in mobile.
266 @media (min-width: @grid-float-breakpoint) {
267 .navbar-left { .pull-left(); }
268 .navbar-right { .pull-right(); }
274 // Extension of the `.form-inline` with some extra flavor for optimum display in
278 margin-left: -@navbar-padding-horizontal;
279 margin-right: -@navbar-padding-horizontal;
280 padding: 10px @navbar-padding-horizontal;
281 border-top: 1px solid transparent;
282 border-bottom: 1px solid transparent;
283 @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
284 .box-shadow(@shadow);
286 // Mixin behavior for optimum display
290 @media (max-width: @grid-float-breakpoint-max) {
295 // Vertically center in expanded, horizontal navbar
296 .navbar-vertical-align(@input-height-base);
298 // Undo 100% width for pull classes
299 @media (min-width: @grid-float-breakpoint) {
308 // Outdent the form if last child to line up with content down the page
309 &.navbar-right:last-child {
310 margin-right: -@navbar-padding-horizontal;
318 // Menu position and menu carets
319 .navbar-nav > li > .dropdown-menu {
321 .border-top-radius(0);
323 // Menu position and menu caret support for dropups via extra dropup class
324 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
325 .border-bottom-radius(0);
328 // Right aligned menus need alt position
329 .navbar-nav.pull-right > li > .dropdown-menu,
330 .navbar-nav > li > .dropdown-menu.pull-right {
336 // Buttons in navbars
338 // Vertically center a button within a navbar (when *not* in a form).
341 .navbar-vertical-align(@input-height-base);
344 .navbar-vertical-align(@input-height-small);
347 .navbar-vertical-align(22);
354 // Add a class to make any element properly align itself vertically within the navbars.
357 .navbar-vertical-align(@line-height-computed);
359 @media (min-width: @grid-float-breakpoint) {
361 margin-left: @navbar-padding-horizontal;
362 margin-right: @navbar-padding-horizontal;
364 // Outdent the form if last child to line up with content down the page
365 &.navbar-right:last-child {
372 // --------------------------------------------------
376 background-color: @navbar-default-bg;
377 border-color: @navbar-default-border;
380 color: @navbar-default-brand-color;
383 color: @navbar-default-brand-hover-color;
384 background-color: @navbar-default-brand-hover-bg;
389 color: @navbar-default-color;
394 color: @navbar-default-link-color;
398 color: @navbar-default-link-hover-color;
399 background-color: @navbar-default-link-hover-bg;
406 color: @navbar-default-link-active-color;
407 background-color: @navbar-default-link-active-bg;
414 color: @navbar-default-link-disabled-color;
415 background-color: @navbar-default-link-disabled-bg;
421 border-color: @navbar-default-toggle-border-color;
424 background-color: @navbar-default-toggle-hover-bg;
427 background-color: @navbar-default-toggle-icon-bar-bg;
433 border-color: @navbar-default-border;
436 // Dropdown menu items
438 // Remove background color from open dropdown
443 background-color: @navbar-default-link-active-bg;
444 color: @navbar-default-link-active-color;
448 @media (max-width: @grid-float-breakpoint-max) {
449 // Dropdowns get custom display when collapsed
450 .open .dropdown-menu {
452 color: @navbar-default-link-color;
455 color: @navbar-default-link-hover-color;
456 background-color: @navbar-default-link-hover-bg;
463 color: @navbar-default-link-active-color;
464 background-color: @navbar-default-link-active-bg;
471 color: @navbar-default-link-disabled-color;
472 background-color: @navbar-default-link-disabled-bg;
482 // Add a class to ensure links outside the navbar nav are colored correctly.
485 color: @navbar-default-link-color;
487 color: @navbar-default-link-hover-color;
496 background-color: @navbar-inverse-bg;
497 border-color: @navbar-inverse-border;
500 color: @navbar-inverse-brand-color;
503 color: @navbar-inverse-brand-hover-color;
504 background-color: @navbar-inverse-brand-hover-bg;
509 color: @navbar-inverse-color;
514 color: @navbar-inverse-link-color;
518 color: @navbar-inverse-link-hover-color;
519 background-color: @navbar-inverse-link-hover-bg;
526 color: @navbar-inverse-link-active-color;
527 background-color: @navbar-inverse-link-active-bg;
534 color: @navbar-inverse-link-disabled-color;
535 background-color: @navbar-inverse-link-disabled-bg;
540 // Darken the responsive nav toggle
542 border-color: @navbar-inverse-toggle-border-color;
545 background-color: @navbar-inverse-toggle-hover-bg;
548 background-color: @navbar-inverse-toggle-icon-bar-bg;
554 border-color: darken(@navbar-inverse-bg, 7%);
563 background-color: @navbar-inverse-link-active-bg;
564 color: @navbar-inverse-link-active-color;
568 @media (max-width: @grid-float-breakpoint-max) {
569 // Dropdowns get custom display
570 .open .dropdown-menu {
572 border-color: @navbar-inverse-border;
575 background-color: @navbar-inverse-border;
578 color: @navbar-inverse-link-color;
581 color: @navbar-inverse-link-hover-color;
582 background-color: @navbar-inverse-link-hover-bg;
589 color: @navbar-inverse-link-active-color;
590 background-color: @navbar-inverse-link-active-bg;
597 color: @navbar-inverse-link-disabled-color;
598 background-color: @navbar-inverse-link-disabled-bg;
606 color: @navbar-inverse-link-color;
608 color: @navbar-inverse-link-hover-color;