aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-01-05 21:43:28 -0800
committerMark Otto <[email protected]>2012-01-05 21:43:28 -0800
commitc56e9d2d35299b4c9e4e3d1aabcf59cedc9143f2 (patch)
tree9b34e0720ff5f367c0137a08b23b67f977196764 /lib
parent90e3a706ba8c01462516efd3c60cd124620950b9 (diff)
downloadbootstrap-c56e9d2d35299b4c9e4e3d1aabcf59cedc9143f2.tar.xz
bootstrap-c56e9d2d35299b4c9e4e3d1aabcf59cedc9143f2.zip
massive docs update, mostly to all our new forms, and to the buttons
Diffstat (limited to 'lib')
-rw-r--r--lib/buttons.less2
-rw-r--r--lib/forms.less32
-rw-r--r--lib/mixins.less1
3 files changed, 22 insertions, 13 deletions
diff --git a/lib/buttons.less b/lib/buttons.less
index bc2df0fb6..3fab6e039 100644
--- a/lib/buttons.less
+++ b/lib/buttons.less
@@ -35,7 +35,7 @@
.btn {
// Button Base
display: inline-block;
- padding: 5px 14px 6px;
+ padding: 5px 10px 6px;
font-size: @baseFontSize;
line-height: normal;
color: #333;
diff --git a/lib/forms.less b/lib/forms.less
index 32acbdaba..ddd735cc4 100644
--- a/lib/forms.less
+++ b/lib/forms.less
@@ -42,10 +42,11 @@ input,
textarea,
select,
.uneditable-input {
- display: inline-block;
+ display: block;
width: 210px;
height: @baseLineHeight;
padding: 4px;
+ margin-bottom: 9px;
font-size: @baseFontSize;
line-height: @baseLineHeight;
color: @gray;
@@ -177,7 +178,6 @@ select:focus {
// Grid style input sizes
// This is a duplication of the main grid .columns() mixin, but subtracts 10px to account for input padding and border
.formColumns(@columnSpan: 1) {
- display: inline-block;
float: none;
width: ((@gridColumnWidth) * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1)) - 10;
margin-left: 0;
@@ -224,6 +224,7 @@ textarea[readonly] {
+
// FORM FIELD FEEDBACK STATES
// --------------------------
@@ -289,10 +290,10 @@ textarea[readonly] {
}
// Placeholder text gets special styles; can't be bundled together though for some reason
-:-moz-placeholder {
+input:-moz-placeholder {
color: @grayLight;
}
-::-webkit-input-placeholder {
+input::-webkit-input-placeholder {
color: @grayLight;
}
@@ -301,7 +302,7 @@ textarea[readonly] {
// HELP TEXT
// ---------
-.help-text {
+.help-block {
margin-top: 5px;
margin-bottom: 0;
color: @grayLight;
@@ -314,12 +315,6 @@ textarea[readonly] {
padding-left: 5px;
}
-// Big blocks of help text
-.help-block {
- display: block;
- max-width: 600px;
-}
-
// INPUT GROUPS
@@ -328,6 +323,7 @@ textarea[readonly] {
// Allow us to put symbols and text within the input field for a cleaner look
.input-prepend,
.input-append {
+ margin-bottom: 5px;
.clearfix(); // Clear the float to prevent wrapping
input {
.border-radius(0 3px 3px 0);
@@ -377,6 +373,8 @@ textarea[readonly] {
// -----------
.search-form .search-query {
+ padding-left: 14px;
+ padding-right: 14px;
.border-radius(14px);
}
@@ -388,6 +386,18 @@ textarea[readonly] {
// Common properties
// -----------------
+.search-form,
+.inline-form,
+.horizontal-form {
+ input,
+ textarea,
+ select,
+ .uneditable-input {
+ display: inline-block;
+ margin-bottom: 0;
+ }
+}
+
// Margin to space out fieldsets
.control-group {
margin-bottom: @baseLineHeight;
diff --git a/lib/mixins.less b/lib/mixins.less
index 32d3a83ac..49eabb875 100644
--- a/lib/mixins.less
+++ b/lib/mixins.less
@@ -98,7 +98,6 @@
// Necessary grid styles for every column to make them appear next to each other horizontally
.gridColumn() {
- display: inline;
float: left;
margin-left: @gridGutterWidth;
}