From 0a93bc143d8b45a365ee983b05e64699081ddc5f Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 30 Nov 2012 15:36:16 -0800 Subject: [PATCH] hero unit and pagination vars --- docs/customize.html | 6 +++--- docs/templates/pages/customize.mustache | 6 +++--- less/hero-unit.less | 6 +++--- less/pagination.less | 6 +++--- less/variables.less | 16 ++++++++++------ 5 files changed, 22 insertions(+), 18 deletions(-) diff --git a/docs/customize.html b/docs/customize.html index aa02cfa2a3..4c5cb4f79e 100644 --- a/docs/customize.html +++ b/docs/customize.html @@ -310,11 +310,11 @@ - + - + - +

Tables

diff --git a/docs/templates/pages/customize.mustache b/docs/templates/pages/customize.mustache index 768de2391b..b2e21e71c1 100644 --- a/docs/templates/pages/customize.mustache +++ b/docs/templates/pages/customize.mustache @@ -242,11 +242,11 @@ - + - + - +

{{_i}}Tables{{/i}}

diff --git a/less/hero-unit.less b/less/hero-unit.less index f771fad027..1e61033ad0 100644 --- a/less/hero-unit.less +++ b/less/hero-unit.less @@ -9,14 +9,14 @@ font-size: 18px; font-weight: 200; line-height: @line-height-base * 1.5; - color: @heroUnitLeadColor; - background-color: @heroUnitBackground; + color: @hero-lead-color; + background-color: @hero-background; border-radius: 6px; h1 { margin-bottom: 0; font-size: 60px; line-height: 1; - color: @heroUnitHeadingColor; + color: @hero-heading-color; letter-spacing: -1px; } li { diff --git a/less/pagination.less b/less/pagination.less index 84ccf042dd..cad430dab3 100644 --- a/less/pagination.less +++ b/less/pagination.less @@ -26,14 +26,14 @@ padding: 4px 12px; line-height: @line-height-base; text-decoration: none; - background-color: @paginationBackground; - border: 1px solid @paginationBorder; + background-color: @pagination-background; + border: 1px solid @pagination-border; border-left-width: 0; } .pagination ul > li > a:hover, .pagination ul > .active > a, .pagination ul > .active > span { - background-color: @paginationActiveBackground; + background-color: @pagination-background-active; } .pagination ul > .active > a, .pagination ul > .active > span { diff --git a/less/variables.less b/less/variables.less index 7b0cfe82aa..6ef5359510 100644 --- a/less/variables.less +++ b/less/variables.less @@ -192,20 +192,24 @@ // Pagination // ------------------------- -@paginationBackground: #fff; -@paginationBorder: #ddd; -@paginationActiveBackground: #f5f5f5; + +@pagination-background: #fff; +@pagination-background-active: #f5f5f5; + +@pagination-border: #ddd; // Hero unit // ------------------------- -@heroUnitBackground: @grayLighter; -@heroUnitHeadingColor: inherit; -@heroUnitLeadColor: inherit; + +@hero-background: @grayLighter; +@hero-heading-color: inherit; +@hero-lead-color: inherit; // Form states and alerts // ------------------------- + @warningText: #c09853; @warningBackground: #fcf8e3; @warningBorder: darken(spin(@warningBackground, -10), 3%);