Commit 1fd5e558 authored by Jacob Thornton's avatar Jacob Thornton

Merge branch '2.0.2-wip' of github.com:twitter/bootstrap into 2.0.2-wip

Conflicts:
	docs/assets/bootstrap.zip
	docs/assets/css/bootstrap-responsive.css
	docs/assets/css/bootstrap.css
parents 1a8d7576 9ebc6b4c
...@@ -324,9 +324,9 @@ h4, ...@@ -324,9 +324,9 @@ h4,
h5, h5,
h6 { h6 {
margin: 0; margin: 0;
font-family: ''; font-family: inherit;
font-weight: normal; font-weight: bold;
color: ''; color: inherit;
text-rendering: optimizelegibility; text-rendering: optimizelegibility;
} }
h1 small, h1 small,
...@@ -1878,6 +1878,18 @@ table .span24 { ...@@ -1878,6 +1878,18 @@ table .span24 {
border-color: #ddd; border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15); border-color: rgba(0, 0, 0, 0.15);
} }
.well-large {
padding: 24px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.well-small {
padding: 9px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.fade { .fade {
-webkit-transition: opacity 0.15s linear; -webkit-transition: opacity 0.15s linear;
-moz-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear;
......
...@@ -63,6 +63,7 @@ hr.soften { ...@@ -63,6 +63,7 @@ hr.soften {
.jumbotron h1 { .jumbotron h1 {
margin-bottom: 9px; margin-bottom: 9px;
font-size: 81px; font-size: 81px;
font-weight: bold;
letter-spacing: -1px; letter-spacing: -1px;
line-height: 1; line-height: 1;
} }
......
This diff is collapsed.
This diff is collapsed.
...@@ -48,7 +48,7 @@ input, ...@@ -48,7 +48,7 @@ input,
button, button,
select, select,
textarea { textarea {
#font > #family > .sans-serif(); // And only set font-family here for those that need it (note the missing label element) font-family: @baseFontFamily; // And only set font-family here for those that need it (note the missing label element)
} }
// Identify controls by their labels // Identify controls by their labels
......
...@@ -233,9 +233,9 @@ ...@@ -233,9 +233,9 @@
// Active nav items // Active nav items
.navbar .nav .active > a, .navbar .nav .active > a,
.navbar .nav .active > a:hover { .navbar .nav .active > a:hover {
color: @navbarLinkColorHover; color: @navbarLinkColorActive;
text-decoration: none; text-decoration: none;
background-color: @navbarBackground; background-color: @navbarLinkBackgroundActive;
} }
// Dividers (basically a vertical hr) // Dividers (basically a vertical hr)
......
...@@ -50,9 +50,9 @@ ...@@ -50,9 +50,9 @@
@baseLineHeight: 18px; @baseLineHeight: 18px;
@altFontFamily: Georgia, "Times New Roman", Times, serif; @altFontFamily: Georgia, "Times New Roman", Times, serif;
@headingsFontFamily: ''; // empty to use BS default, @baseFontFamily @headingsFontFamily: inherit; // empty to use BS default, @baseFontFamily
@headingsFontWeight: normal; // instead of browser default, bold @headingsFontWeight: bold; // instead of browser default, bold
@headingsColor: ''; // empty to use BS default, @textColor @headingsColor: inherit; // empty to use BS default, @textColor
// Tables // Tables
...@@ -105,10 +105,12 @@ ...@@ -105,10 +105,12 @@
// COMPONENT VARIABLES // COMPONENT VARIABLES
// -------------------------------------------------- // --------------------------------------------------
// Z-index master list // Z-index master list
// -------------------------
// Used for a bird's eye view of components dependent on the z-axis // Used for a bird's eye view of components dependent on the z-axis
// Try to avoid customizing these :) // Try to avoid customizing these :)
@zindexDropdown: 1000; @zindexDropdown: 1000;
...@@ -118,32 +120,46 @@ ...@@ -118,32 +120,46 @@
@zindexModalBackdrop: 1040; @zindexModalBackdrop: 1040;
@zindexModal: 1050; @zindexModal: 1050;
// Sprite icons path // Sprite icons path
// -------------------------
@iconSpritePath: "../img/glyphicons-halflings.png"; @iconSpritePath: "../img/glyphicons-halflings.png";
@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png"; @iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
// Input placeholder text color // Input placeholder text color
// -------------------------
@placeholderText: @grayLight; @placeholderText: @grayLight;
// Hr border color // Hr border color
// -------------------------
@hrBorder: @grayLighter; @hrBorder: @grayLighter;
// Navbar // Navbar
// -------------------------
@navbarHeight: 40px; @navbarHeight: 40px;
@navbarBackground: @grayDarker; @navbarBackground: @grayDarker;
@navbarBackgroundHighlight: @grayDark; @navbarBackgroundHighlight: @grayDark;
@navbarLinkBackgroundHover: transparent;
@navbarText: @grayLight; @navbarText: @grayLight;
@navbarLinkColor: @grayLight; @navbarLinkColor: @grayLight;
@navbarLinkColorHover: @white; @navbarLinkColorHover: @white;
@navbarLinkColorActive: @navbarLinkColorHover;
@navbarLinkBackgroundHover: transparent;
@navbarLinkBackgroundActive: @navbarBackground;
// Hero unit // Hero unit
// -------------------------
@heroUnitBackground: #312f2e; @heroUnitBackground: #312f2e;
@heroUnitHeadingColor: @white; @heroUnitHeadingColor: @white;
@heroUnitLeadColor: @white; @heroUnitLeadColor: @white;
// Form states and alerts // Form states and alerts
// -------------------------
@warningText: #c09853; @warningText: #c09853;
@warningBackground: #fcf8e3; @warningBackground: #fcf8e3;
@warningBorder: darken(spin(@warningBackground, -10), 3%); @warningBorder: darken(spin(@warningBackground, -10), 3%);
...@@ -162,15 +178,19 @@ ...@@ -162,15 +178,19 @@
// GRID // GRID
// -------------------------------------------------- // --------------------------------------------------
// Default 940px grid // Default 940px grid
// -------------------------
@gridColumns: 12; @gridColumns: 12;
@gridColumnWidth: 60px; @gridColumnWidth: 60px;
@gridGutterWidth: 20px; @gridGutterWidth: 20px;
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1)); @gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
// Fluid grid // Fluid grid
// -------------------------
@fluidGridColumnWidth: 6.382978723%; @fluidGridColumnWidth: 6.382978723%;
@fluidGridGutterWidth: 2.127659574%; @fluidGridGutterWidth: 2.127659574%;
...@@ -15,3 +15,13 @@ ...@@ -15,3 +15,13 @@
border-color: rgba(0,0,0,.15); border-color: rgba(0,0,0,.15);
} }
} }
// Sizes
.well-large {
padding: 24px;
.border-radius(6px);
}
.well-small {
padding: 9px;
.border-radius(3px);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment