From 157ec5feff877cd918a45985ee7368e3d9d7b5b0 Mon Sep 17 00:00:00 2001 From: Thomas Park Date: Thu, 5 Dec 2013 13:05:07 -0500 Subject: 3.0.2 -> 3.0.3 --- .../bootstrap/examples/non-responsive/index.html | 101 ------------------ .../examples/non-responsive/non-responsive.css | 116 --------------------- 2 files changed, 217 deletions(-) delete mode 100644 bower_components/bootstrap/examples/non-responsive/index.html delete mode 100644 bower_components/bootstrap/examples/non-responsive/non-responsive.css (limited to 'bower_components/bootstrap/examples/non-responsive') diff --git a/bower_components/bootstrap/examples/non-responsive/index.html b/bower_components/bootstrap/examples/non-responsive/index.html deleted file mode 100644 index 1c56b300..00000000 --- a/bower_components/bootstrap/examples/non-responsive/index.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - Non-responsive Template for Bootstrap - - - - - - - - - - - - - - - - - - - -
- - - -

What changes

-

Note the lack of the <meta name="viewport" content="width=device-width, initial-scale=1.0">, which disables the zooming aspect of sites in mobile devices. In addition, we reset our container's width and are basically good to go.

- -

Regarding navbars

-

As a heads up, the navbar component is rather tricky here in that the styles for displaying it are rather specific and detailed. Overrides to ensure desktop styles display are not as performant or sleek as one would like. Just be aware there may be potential gotchas as you build on top of this example when using the navbar.

- -

Non-responsive grid system

-
-
One third
-
One third
-
One third
-
- -
- - - - - - - - diff --git a/bower_components/bootstrap/examples/non-responsive/non-responsive.css b/bower_components/bootstrap/examples/non-responsive/non-responsive.css deleted file mode 100644 index 526b0b8b..00000000 --- a/bower_components/bootstrap/examples/non-responsive/non-responsive.css +++ /dev/null @@ -1,116 +0,0 @@ -/* Template-specific stuff - * - * Customizations just for the template; these are not necessary for anything - * with disabling the responsiveness. - */ - -/* Account for fixed navbar */ -body { - padding-top: 70px; - padding-bottom: 30px; -} - -/* Finesse the page header spacing */ -.page-header { - margin-bottom: 30px; -} -.page-header .lead { - margin-bottom: 10px; -} - - -/* Non-responsive overrides - * - * Utilitze the following CSS to disable the responsive-ness of the container, - * grid system, and navbar. - */ - -/* Reset the container */ -.container { - max-width: none !important; - width: 970px; -} - -/* Demonstrate the grids */ -.col-xs-4 { - padding-top: 15px; - padding-bottom: 15px; - background-color: #eee; - border: 1px solid #ddd; - background-color: rgba(86,61,124,.15); - border: 1px solid rgba(86,61,124,.2); -} - -.container .navbar-header, -.container .navbar-collapse { - margin-right: 0; - margin-left: 0; -} - -/* Always float the navbar header */ -.navbar-header { - float: left; -} - -/* Undo the collapsing navbar */ -.navbar-collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; -} - -.navbar-toggle { - display: none; -} - -.navbar-brand { - margin-left: -15px; -} - -/* Always apply the floated nav */ -.navbar-nav { - float: left; - margin: 0; -} -.navbar-nav > li { - float: left; -} -.navbar-nav > li > a { - padding: 15px; -} - -/* Redeclare since we override the float above */ -.navbar-nav.navbar-right { - float: right; -} - -/* Undo custom dropdowns */ -.navbar .open .dropdown-menu { - position: absolute; - float: left; - background-color: #fff; - border: 1px solid #cccccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-width: 0 1px 1px; - border-radius: 0 0 4px 4px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); -} -.navbar .open .dropdown-menu > li > a { - color: #333; -} -.navbar .open .dropdown-menu > li > a:hover, -.navbar .open .dropdown-menu > li > a:focus, -.navbar .open .dropdown-menu > .active > a, -.navbar .open .dropdown-menu > .active > a:hover, -.navbar .open .dropdown-menu > .active > a:focus { - color: #fff !important; - background-color: #428bca !important; -} -.navbar .open .dropdown-menu > .disabled > a, -.navbar .open .dropdown-menu > .disabled > a:hover, -.navbar .open .dropdown-menu > .disabled > a:focus { - color: #999 !important; - background-color: transparent !important; -} -- cgit v1.2.3