From d1a7271ea1272e0f9775d49e6a84ee49819e0094 Mon Sep 17 00:00:00 2001 From: Frederick Marcoux Date: Fri, 31 Jan 2014 15:25:09 -0500 Subject: Update variables.less --- less/variables.less | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index ebc72c00e..814f45351 100644 --- a/less/variables.less +++ b/less/variables.less @@ -633,6 +633,14 @@ @list-group-active-border: @list-group-active-bg; @list-group-active-text-color: lighten(@list-group-active-bg, 40%); +//** Text color of disabled list elements +@list-group-disabled-color: @grey-light; // Or something else you want +//** Background color of disabled list elements +@list-group-disabled-bg: @grey-ligher; // Or something else you want +//** Border color of disabled list elements +@list-group-disabled-border: #eee; // Or something else you want +@list-group-disabled-text-color: lighten(@list-group-disabled-bg, 40%); // Or something else you want + @list-group-link-color: #555; @list-group-link-heading-color: #333; -- cgit v1.2.3 From 2fba53e600a796995f07e96c53c11ed22bfe8e06 Mon Sep 17 00:00:00 2001 From: DaSch Date: Fri, 14 Feb 2014 13:56:36 +0100 Subject: add posibillity to hover links and not background in list-groups --- less/variables.less | 1 + 1 file changed, 1 insertion(+) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index 3846adc59..fcbadd73b 100644 --- a/less/variables.less +++ b/less/variables.less @@ -654,6 +654,7 @@ @list-group-active-text-color: lighten(@list-group-active-bg, 40%); @list-group-link-color: #555; +@list-group-link-hover-color: @list-group-link-color; @list-group-link-heading-color: #333; -- cgit v1.2.3 From eef939916bb840b405a2f0cceca1c00daa5ed328 Mon Sep 17 00:00:00 2001 From: rhaase Date: Fri, 14 Feb 2014 15:51:01 +0100 Subject: Defined and use variables for .panel-heading & .panel-footer padding --- less/variables.less | 2 ++ 1 file changed, 2 insertions(+) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index 3846adc59..14ef0ec1b 100644 --- a/less/variables.less +++ b/less/variables.less @@ -663,6 +663,8 @@ @panel-bg: #fff; @panel-body-padding: 15px; +@panel-heading-padding: 10px 15px; +@panel-footer-padding: @panel-heading-padding; @panel-border-radius: @border-radius-base; //** Border color for elements within panels -- cgit v1.2.3 From 7e551ecaf71cb9971990e156c54e5ee0fb758a98 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 22 Feb 2014 12:38:56 -0800 Subject: =?UTF-8?q?Update=20modals=20to=20use=20more=20consistent=20paddin?= =?UTF-8?q?g=E2=80=94modal=20body=20and=20footer=20now=20match=20modal=20h?= =?UTF-8?q?eader?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- less/variables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index 3846adc59..fa736f0ac 100644 --- a/less/variables.less +++ b/less/variables.less @@ -558,7 +558,7 @@ //## //** Padding applied to the modal body -@modal-inner-padding: 20px; +@modal-inner-padding: 15px; //** Padding applied to the modal title @modal-title-padding: 15px; -- cgit v1.2.3 From 13ed379767d19040c98fc23bd9b5cdb84e66474b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 4 Mar 2014 16:19:30 -0800 Subject: clarify deprecation /cc @cvrebert --- less/variables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index b58417e98..9e372f2b0 100644 --- a/less/variables.less +++ b/less/variables.less @@ -257,7 +257,7 @@ //## Define the breakpoints at which your layout will change, adapting to different screen sizes. // Extra small screen / phone -// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1 +// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1, and @screen-xs-min as of v3.2 @screen-xs: 480px; @screen-xs-min: @screen-xs; @screen-phone: @screen-xs-min; -- cgit v1.2.3 From 9dae5368f54a9a5a36849d19350a9109224ad542 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 4 Mar 2014 16:21:17 -0800 Subject: use full version number in deprecation note --- less/variables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index 9e372f2b0..8cb951740 100644 --- a/less/variables.less +++ b/less/variables.less @@ -257,7 +257,7 @@ //## Define the breakpoints at which your layout will change, adapting to different screen sizes. // Extra small screen / phone -// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1, and @screen-xs-min as of v3.2 +// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1, and @screen-xs-min as of v3.2.0 @screen-xs: 480px; @screen-xs-min: @screen-xs; @screen-phone: @screen-xs-min; -- cgit v1.2.3 From 0c9308a3b29be6d56c582dce33092164be7997b4 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 6 Mar 2014 21:40:22 -0800 Subject: Rewrite the disabled list group items to simplify styles --- less/variables.less | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index 823ef859c..bdc719cb3 100644 --- a/less/variables.less +++ b/less/variables.less @@ -643,23 +643,23 @@ //** List group border radius @list-group-border-radius: @border-radius-base; -//** Background color of single list elements on hover +//** Background color of single list items on hover @list-group-hover-bg: #f5f5f5; -//** Text color of active list elements +//** Text color of active list items @list-group-active-color: @component-active-color; -//** Background color of active list elements +//** Background color of active list items @list-group-active-bg: @component-active-bg; //** Border color of active list elements @list-group-active-border: @list-group-active-bg; +//** Text color for content within active list items @list-group-active-text-color: lighten(@list-group-active-bg, 40%); -//** Text color of disabled list elements -@list-group-disabled-color: @gray-light; -//** Background color of disabled list elements -@list-group-disabled-bg: @gray-lighter; -//** Border color of disabled list elements -@list-group-disabled-border: #eee; // Or something else you want -@list-group-disabled-text-color: lighten(@list-group-disabled-bg, 40%); // Or something else you want +//** Text color of disabled list items +@list-group-disabled-color: @gray-light; +//** Background color of disabled list items +@list-group-disabled-bg: @gray-lighter; +//** Text color for content within disabled list items +@list-group-disabled-text-color: @list-group-disabled-color; @list-group-link-color: #555; @list-group-link-heading-color: #333; -- cgit v1.2.3 From 03701b8d4bdda30dc625cdd263ca586835f544e3 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 8 Mar 2014 15:32:24 -0800 Subject: Fixes #12966: Ensure icon font vars are loaded into Customizer --- less/variables.less | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index 43d4efd00..a97bb41f4 100644 --- a/less/variables.less +++ b/less/variables.less @@ -68,14 +68,18 @@ @headings-color: inherit; -//-- Iconography +//== Iconography // -//## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower. +//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower. +//** Load fonts from this directory. @icon-font-path: "../fonts/"; +//** File name for all font files. @icon-font-name: "glyphicons-halflings-regular"; +//** File name for SVG icon file. @icon-font-svg-id: "glyphicons_halflingsregular"; + //== Components // //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start). -- cgit v1.2.3 From 7c3881086f7a6bc3ae5ea41c80ac2572878c8cdc Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 8 Mar 2014 17:11:48 -0800 Subject: Fix comment --- less/variables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index a97bb41f4..23577e5f9 100644 --- a/less/variables.less +++ b/less/variables.less @@ -76,7 +76,7 @@ @icon-font-path: "../fonts/"; //** File name for all font files. @icon-font-name: "glyphicons-halflings-regular"; -//** File name for SVG icon file. +//** Element ID within SVG icon file. @icon-font-svg-id: "glyphicons_halflingsregular"; -- cgit v1.2.3 From b4d66b7f6b8ca49fbf45fccf445910d607969946 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 9 Mar 2014 20:45:32 -0700 Subject: 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" --- less/variables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'less/variables.less') diff --git a/less/variables.less b/less/variables.less index 23577e5f9..82616ac56 100644 --- a/less/variables.less +++ b/less/variables.less @@ -261,7 +261,7 @@ //## Define the breakpoints at which your layout will change, adapting to different screen sizes. // Extra small screen / phone -// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1, and @screen-xs-min as of v3.2.0 +// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1 @screen-xs: 480px; @screen-xs-min: @screen-xs; @screen-phone: @screen-xs-min; -- cgit v1.2.3