From 2fd8689b08ecef4f2d1efa5d1e1edede21d2403f Mon Sep 17 00:00:00 2001 From: Elvis Ratzlaff Date: Sat, 3 Aug 2013 03:56:06 -0400 Subject: [PATCH 1/2] Change line-height value with variable for btn-large and btn-small --- less/buttons.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/less/buttons.less b/less/buttons.less index 8905ffa4a5..e53b0132fc 100644 --- a/less/buttons.less +++ b/less/buttons.less @@ -123,14 +123,14 @@ .btn-large { padding: @padding-large-vertical @padding-large-horizontal; font-size: @font-size-large; - line-height: 1.33; // ensure even-numbered height of button next to large input + line-height: @line-height-large; // ensure even-numbered height of button next to large input border-radius: @border-radius-large; } .btn-small, .btn-mini { padding: @padding-small-vertical @padding-small-horizontal; font-size: @font-size-small; - line-height: 1.5; // ensure proper height of button next to small input + line-height: @line-height-small; // ensure proper height of button next to small input border-radius: @border-radius-small; } .btn-mini { From 777ae911b6d5d290675b8d90d8262fa2d355cb9e Mon Sep 17 00:00:00 2001 From: Elvis Ratzlaff Date: Sat, 3 Aug 2013 03:59:37 -0400 Subject: [PATCH 2/2] Change value for padding on pagination to variables --- less/pagination.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/pagination.less b/less/pagination.less index 6720c68989..3441106c94 100644 --- a/less/pagination.less +++ b/less/pagination.less @@ -12,7 +12,7 @@ > a, > span { float: left; // Collapse white-space - padding: 4px 12px; + padding: @padding-base-vertical @padding-base-horizontal; line-height: @line-height-base; text-decoration: none; background-color: @pagination-bg;