From 918b2a49ca6ac074bac47f6685cf3a687a4c6212 Mon Sep 17 00:00:00 2001 From: Thomas Park Date: Sat, 1 Nov 2014 21:05:20 -0400 Subject: 3.2.0 -> 3.3.0 --- cyborg/variables.less | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) (limited to 'cyborg/variables.less') diff --git a/cyborg/variables.less b/cyborg/variables.less index ed379b2c..5180c572 100644 --- a/cyborg/variables.less +++ b/cyborg/variables.less @@ -1,4 +1,4 @@ -// Cyborg 3.2.0 +// Cyborg 3.3.0 // Variables // -------------------------------------------------- @@ -7,6 +7,7 @@ // //## Gray and brand colors for use across Bootstrap. +@gray-base: #000; @gray-darker: #222; // #222 @gray-dark: #282828; // #333 @gray: #555; // #555 @@ -33,6 +34,8 @@ @link-color: @brand-primary; //** Link hover color set via `darken()` function. @link-hover-color: @link-color; +//** Link hover decoration. +@link-hover-decoration: underline; //== Typography @@ -181,8 +184,15 @@ @input-color: @text-color; //** `` border color @input-border: @gray-dark; -//** `` border radius + +// TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4 +//** Default `.form-control` border radius @input-border-radius: @border-radius-base; +//** Large `.form-control` border radius +@input-border-radius-large: @border-radius-large; +//** Small `.form-control` border radius +@input-border-radius-small: @border-radius-small; + //** Border color for inputs on focus @input-border-focus: #66afe9; @@ -204,6 +214,9 @@ //** Border color for textual input addons @input-group-addon-border-color: @input-border; +//** Disabled cursor for form controls and buttons. +@cursor-disabled: not-allowed; + //== Dropdowns // @@ -252,8 +265,7 @@ @zindex-popover: 1060; @zindex-tooltip: 1070; @zindex-navbar-fixed: 1030; -@zindex-modal-background: 1040; -@zindex-modal: 1050; +@zindex-modal: 1040; //== Media queries breakpoints @@ -315,17 +327,17 @@ //## Define the maximum width of `.container` for different screen sizes. // Small screen / tablet -@container-tablet: ((720px + @grid-gutter-width)); +@container-tablet: (720px + @grid-gutter-width); //** For `@screen-sm-min` and up. @container-sm: @container-tablet; // Medium screen / desktop -@container-desktop: ((940px + @grid-gutter-width)); +@container-desktop: (940px + @grid-gutter-width); //** For `@screen-md-min` and up. @container-md: @container-desktop; // Large screen / wide desktop -@container-large-desktop: ((1140px + @grid-gutter-width)); +@container-large-desktop: (1140px + @grid-gutter-width); //** For `@screen-lg-min` and up. @container-lg: @container-large-desktop; @@ -403,8 +415,6 @@ @nav-disabled-link-color: @gray-light; @nav-disabled-link-hover-color: @gray-light; -@nav-open-link-hover-color: @gray-darker; - //== Tabs @nav-tabs-border-color: @gray-dark; @@ -628,6 +638,8 @@ @progress-bg: @gray-darker; //** Progress bar text color @progress-bar-color: #fff; +//** Variable for setting rounded corners on progress bar. +@progress-border-radius: @border-radius-base; //** Default progress bar color @progress-bar-bg: @brand-primary; @@ -842,5 +854,3 @@ @dl-horizontal-offset: @component-offset-horizontal; //** Horizontal line color. @hr-border: @gray-dark; - - -- cgit v1.2.3