diff options
| author | Mark Otto <[email protected]> | 2013-03-31 17:29:05 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-03-31 17:29:05 -0700 |
| commit | b7fa0d343446d394535063aca72fa6d7fdd1396f (patch) | |
| tree | 8bf3394af930775c1a1d991845e8f13384ac257c /less | |
| parent | d6f37f3c568ed70a7e20fdaa5429501d5af406a7 (diff) | |
| download | bootstrap-b7fa0d343446d394535063aca72fa6d7fdd1396f.tar.xz bootstrap-b7fa0d343446d394535063aca72fa6d7fdd1396f.zip | |
-background to -bg for body and table vars
Diffstat (limited to 'less')
| -rw-r--r-- | less/navs.less | 2 | ||||
| -rw-r--r-- | less/scaffolding.less | 2 | ||||
| -rw-r--r-- | less/tables.less | 8 | ||||
| -rw-r--r-- | less/variables.less | 8 |
4 files changed, 10 insertions, 10 deletions
diff --git a/less/navs.less b/less/navs.less index b8a7fb23c..88641229c 100644 --- a/less/navs.less +++ b/less/navs.less @@ -65,7 +65,7 @@ .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus { color: @gray; - background-color: @body-background; + background-color: @body-bg; border: 1px solid #ddd; border-bottom-color: transparent; cursor: default; diff --git a/less/scaffolding.less b/less/scaffolding.less index fe3655636..e5f15032e 100644 --- a/less/scaffolding.less +++ b/less/scaffolding.less @@ -34,7 +34,7 @@ body { font-size: 14px; line-height: @line-height-base; color: @text-color; - background-color: @body-background; + background-color: @body-bg; } // Reset fonts for revelant elements diff --git a/less/tables.less b/less/tables.less index 29ae81ee4..987921937 100644 --- a/less/tables.less +++ b/less/tables.less @@ -5,7 +5,7 @@ table { max-width: 100%; - background-color: @table-background; + background-color: @table-bg; border-collapse: collapse; border-spacing: 0; } @@ -48,7 +48,7 @@ th { // Nesting .table { - background-color: @body-background; + background-color: @body-bg; } } @@ -153,7 +153,7 @@ th { > tbody { > tr:nth-child(odd) > td, > tr:nth-child(odd) > th { - background-color: @table-background-accent; + background-color: @table-bg-accent; } } } @@ -168,7 +168,7 @@ th { > tbody { > tr:hover > td, > tr:hover > th { - background-color: @table-background-hover; + background-color: @table-bg-hover; } } } diff --git a/less/variables.less b/less/variables.less index 2b82998dc..060e0c97e 100644 --- a/less/variables.less +++ b/less/variables.less @@ -28,7 +28,7 @@ // Scaffolding // ------------------------- -@body-background: #fff; +@body-bg: #fff; @text-color: @grayDark; // Links @@ -74,9 +74,9 @@ // Tables // ------------------------- -@table-background: transparent; // overall background-color -@table-background-accent: #f9f9f9; // for striping -@table-background-hover: #f5f5f5; // for hover +@table-bg: transparent; // overall background-color +@table-bg-accent: #f9f9f9; // for striping +@table-bg-hover: #f5f5f5; // for hover @table-border: #ddd; // table and cell border |
