vendor/assets/stylesheets/variables.scss in anjlab-bootstrap-rails-2.0.2.1 vs vendor/assets/stylesheets/variables.scss in anjlab-bootstrap-rails-2.0.3.rc
- old
+ new
@@ -43,14 +43,18 @@
$linkColorHover: darken($linkColor, 15%) !default;
// Typography
// -------------------------
+$sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
+$serifFontFamily: Georgia, "Times New Roman", Times, serif !default;
+$monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace !default;
+
$baseFontSize: 13px !default;
-$baseFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
+$baseFontFamily: $sansFontFamily !default;
$baseLineHeight: 18px !default;
-$altFontFamily: Georgia, "Times New Roman", Times, serif !default;
+$altFontFamily: $serifFontFamily !default;
$headingsFontFamily: inherit !default; // empty to use BS default, $baseFontFamily
$headingsFontWeight: bold !default; // instead of browser default, bold
$headingsColor: inherit !default; // empty to use BS default, $textColor
@@ -65,11 +69,11 @@
// Buttons
// -------------------------
$btnBackground: $white !default;
$btnBackgroundHighlight: darken($white, 10%) !default;
-$btnBorder: darken($white, 20%) !default;
+$btnBorder: #ccc !default;
$btnPrimaryBackground: $linkColor !default;
$btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, 15%) !default;
$btnInfoBackground: #5bc0de !default;
@@ -90,13 +94,14 @@
// Forms
// -------------------------
$inputBackground: $white !default;
$inputBorder: #ccc !default;
+$inputBorderRadius: 3px !default;
$inputDisabledBackground: $grayLighter !default;
+$formActionsBackground: #f5f5f5 !default;
-
// Dropdowns
// -------------------------
$dropdownBackground: $white !default;
$dropdownBorder: rgba(0,0,0,.2) !default;
$dropdownLinkColor: $grayDark !default;
@@ -145,10 +150,11 @@
$navbarSearchBackground: lighten($navbarBackground, 25%) !default;
$navbarSearchBackgroundFocus: $white !default;
$navbarSearchBorder: darken($navbarSearchBackground, 30%) !default;
$navbarSearchPlaceholderColor: #ccc !default;
+$navbarBrandColor: $navbarLinkColor !default;
// Hero unit
// -------------------------
$heroUnitBackground: $grayLighter !default;
@@ -174,20 +180,18 @@
$infoBackground: #d9edf7 !default;
$infoBorder: darken(adjust-hue($infoBackground, -10), 7%) !default;
-
// GRID
// --------------------------------------------------
// Default 940px grid
// -------------------------
$gridColumns: 12 !default;
$gridColumnWidth: 60px !default;
$gridGutterWidth: 20px !default;
$gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1)) !default;
-
// Fluid grid
$fluidGridColumnWidth: 6.382978723% !default;
$fluidGridGutterWidth: 2.127659574% !default;