From 575b82473f8d248ca3782fa86ce1c92eea03905c Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 6 Feb 2012 23:34:03 -0800 Subject: rearrange some of the docs on buttons to show examples of all possible renderings along with code snippets and note about usage; also fix the portrait tablet media query --- less/responsive.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/responsive.less') diff --git a/less/responsive.less b/less/responsive.less index 7d494a357..7ed58bb4e 100644 --- a/less/responsive.less +++ b/less/responsive.less @@ -123,7 +123,7 @@ // LANDSCAPE PHONE TO SMALL DESKTOP & PORTRAIT TABLET // -------------------------------------------------- -@media (max-width: 768px) { +@media (max-width: 767px) { // GRID & CONTAINERS // ----------------- // Remove width from containers -- cgit v1.2.3 From 5bb55e46157ec974120535acdb6335841c85fa37 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 11 Feb 2012 19:21:23 -0800 Subject: change fixed height on responsive textareas to min-height --- less/responsive.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/responsive.less') diff --git a/less/responsive.less b/less/responsive.less index 7ed58bb4e..1e3bf371c 100644 --- a/less/responsive.less +++ b/less/responsive.less @@ -56,7 +56,7 @@ .uneditable-input { display: block; width: 100%; - height: 28px; /* Make inputs at least the height of their button counterpart */ + min-height: 28px; /* Make inputs at least the height of their button counterpart */ /* Makes inputs behave like true block-level elements */ -webkit-box-sizing: border-box; /* Older Webkit */ -moz-box-sizing: border-box; /* Older FF */ -- cgit v1.2.3 From cbe10bd591412c5bff365c86451caacb7cedb4f8 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 12 Feb 2012 21:11:56 -0800 Subject: clean up nav-header in responsive --- less/responsive.less | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'less/responsive.less') diff --git a/less/responsive.less b/less/responsive.less index 1e3bf371c..c55af0236 100644 --- a/less/responsive.less +++ b/less/responsive.less @@ -215,6 +215,10 @@ .navbar .nav > .divider-vertical { display: none; } + .navbar .nav .nav-header { + color: @navbarText; + text-shadow: none; + } // Nav and dropdown links in navbar .navbar .nav > li > a, .navbar .dropdown-menu a { -- cgit v1.2.3 From 489276f5be328773e4e4dbd7d6d8e326d3135437 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 16 Feb 2012 21:08:52 -0800 Subject: fix responsive media queries to use 979 and 980 where appropro --- less/responsive.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'less/responsive.less') diff --git a/less/responsive.less b/less/responsive.less index c55af0236..5b85776e9 100644 --- a/less/responsive.less +++ b/less/responsive.less @@ -154,7 +154,7 @@ // PORTRAIT TABLET TO DEFAULT DESKTOP // ---------------------------------- -@media (min-width: 768px) and (max-width: 980px) { +@media (min-width: 768px) and (max-width: 979px) { // Fixed grid #gridSystem > .generate(12, 42px, 20px); @@ -171,7 +171,7 @@ // TABLETS AND BELOW // ----------------- -@media (max-width: 980px) { +@media (max-width: 979px) { // UNFIX THE TOPBAR // ---------------- -- cgit v1.2.3