diff options
| author | Mark Otto <[email protected]> | 2012-11-30 15:05:23 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-11-30 15:05:23 -0800 |
| commit | 9239bfbc7bbd549d987da03046399dd5fcbd5f7f (patch) | |
| tree | 59ccd973d5d5a0c4c87f7d98520cc505834edd24 /less/variables.less | |
| parent | b0e2b5813db753bdfa3ee018ccdd73e78a69457e (diff) | |
| download | bootstrap-9239bfbc7bbd549d987da03046399dd5fcbd5f7f.tar.xz bootstrap-9239bfbc7bbd549d987da03046399dd5fcbd5f7f.zip | |
more vars changed, remove @white var
Diffstat (limited to 'less/variables.less')
| -rw-r--r-- | less/variables.less | 67 |
1 files changed, 33 insertions, 34 deletions
diff --git a/less/variables.less b/less/variables.less index 6623b288b..786fe657e 100644 --- a/less/variables.less +++ b/less/variables.less @@ -15,7 +15,6 @@ @gray: #555; @grayLight: #999; @grayLighter: #eee; -@white: #fff; // Accent colors @@ -31,7 +30,7 @@ // Scaffolding // ------------------------- -@body-background: @white; +@body-background: #fff; @text-color: @grayDark; @@ -74,58 +73,58 @@ // Tables // ------------------------- -@tableBackground: transparent; // overall background-color -@tableBackgroundAccent: #f9f9f9; // for striping -@tableBackgroundHover: #f5f5f5; // for hover -@tableBorder: #ddd; // table and cell border +@table-background: transparent; // overall background-color +@table-background-accent: #f9f9f9; // for striping +@table-background-hover: #f5f5f5; // for hover +@table-border: #ddd; // table and cell border // Buttons // ------------------------- -@btnBackground: @white; -@btnBackgroundHighlight: darken(@white, 10%); -@btnBorder: #bbb; +@btn-background: #fff; +@btn-background-highlight: darken(#fff, 10%); +@btn-border: #bbb; -@btnPrimaryBackground: @link-color; -@btnPrimaryBackgroundHighlight: spin(@btnPrimaryBackground, 20%); +@btn-backround-primary: @link-color; +@btn-backround-primary-highlight: spin(@btn-backround-primary, 20%); -@btnInfoBackground: #5bc0de; -@btnInfoBackgroundHighlight: #2f96b4; +@btn-backround-info: #5bc0de; +@btn-backround-info-highlight: #2f96b4; -@btnSuccessBackground: #62c462; -@btnSuccessBackgroundHighlight: #51a351; +@btn-backround-success: #62c462; +@btn-backround-success-highlight: #51a351; -@btnWarningBackground: lighten(@orange, 15%); -@btnWarningBackgroundHighlight: @orange; +@btn-backround-warning: lighten(#f89406, 15%); +@btn-backround-warning-highlight: #f89406; -@btnDangerBackground: #ee5f5b; -@btnDangerBackgroundHighlight: #bd362f; +@btn-backround-danger: #ee5f5b; +@btn-backround-danger-highlight: #bd362f; -@btnInverseBackground: #444; -@btnInverseBackgroundHighlight: @grayDarker; +@btn-backround-inverse: #444; +@btn-backround-inverse-highlight: @grayDarker; // Forms // ------------------------- -@inputBackground: @white; -@inputBorder: #ccc; -@inputBorderRadius: @border-radius-base; -@inputSearchBorderRadius: 20px; -@inputDisabledBackground: @grayLighter; -@formActionsBackground: #f5f5f5; -@inputHeight: @line-height-base + 14px; // base line-height + 12px vertical padding + 2px top/bottom border +@input-background: #fff; +@input-border: #ccc; +@input-border-radius: @border-radius-base; +@input-border-radius-search: 20px; +@input-background-disabled: @grayLighter; +@form-actions-background: #f5f5f5; +@input-height: @line-height-base + 14px; // base line-height + 12px vertical padding + 2px top/bottom border // Dropdowns // ------------------------- -@dropdownBackground: @white; +@dropdownBackground: #fff; @dropdownBorder: rgba(0,0,0,.2); @dropdownDividerTop: #e5e5e5; -@dropdownDividerBottom: @white; +@dropdownDividerBottom: #fff; @dropdownLinkColor: @grayDark; -@dropdownLinkColorHover: @white; -@dropdownLinkColorActive: @white; +@dropdownLinkColorHover: #fff; +@dropdownLinkColorActive: #fff; @dropdownLinkBackgroundActive: @link-color; @dropdownLinkBackgroundHover: @dropdownLinkBackgroundActive; @@ -200,13 +199,13 @@ @navbarInverseText: @grayLight; @navbarInverseLinkColor: @grayLight; -@navbarInverseLinkColorHover: @white; +@navbarInverseLinkColorHover: #fff; @navbarInverseLinkColorActive: @navbarInverseLinkColorHover; @navbarInverseLinkBackgroundHover: transparent; @navbarInverseLinkBackgroundActive: @navbarInverseBackground; @navbarInverseSearchBackground: lighten(@navbarInverseBackground, 25%); -@navbarInverseSearchBackgroundFocus: @white; +@navbarInverseSearchBackgroundFocus: #fff; @navbarInverseSearchBorder: @navbarInverseBackground; @navbarInverseSearchPlaceholderColor: #ccc; |
