Build bootstrap + docs

This commit is contained in:
Arnold Daniels
2012-02-23 18:13:28 +01:00
parent 692a67bbe7
commit a4e800fa43
3 changed files with 30 additions and 0 deletions

Binary file not shown.

View File

@@ -966,6 +966,24 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec
::-webkit-input-placeholder {
color: #999999;
}
.editor {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
height: 100px;
width: 100%;
padding: 5px;
}
.editor-ckeditor {
height: 277px;
}
.uneditable-textarea.editor-ckeditor {
white-space: normal;
padding: 5px 3px 5px 5px;
}
textarea.editor-ckeditor {
visibility: hidden;
}
.help-block {
margin-top: 5px;
margin-bottom: 0;
@@ -3767,6 +3785,9 @@ body > .page-alert {
margin-left: 5px;
margin-bottom: 0;
}
.modal form {
margin-bottom: 0;
}
.tooltip {
position: absolute;
z-index: 1020;

View File

@@ -1124,6 +1124,12 @@ on multiple lines
<p class="help-block">Use the same <code>.span*</code> classes from the grid system for input sizes.</p>
</div>
</div>
<div class="control-group">
<label class="control-label">Editor</label>
<div class="controls">
<textarea class="editor"></textarea>
</div>
</div>
<div class="control-group">
<label class="control-label" for="prependedInput">Prepended text</label>
<div class="controls">
@@ -1197,6 +1203,9 @@ on multiple lines
</form>
</div>
<div class="span4">
<h3>Editor textarea</h3>
<p>Add <code>.editor</code> to any textarea or <code>.uneditable-textarea</code> to create a larger field for content editing. If you're using <a href="http://ckeditor.com/" title="CKEditor">CKEditor</a>, also add <code>.editor-ckeditor</code>.</p>
<hr>
<h3>Prepend &amp; append inputs</h3>
<p>Input groups&mdash;with appended or prepended text&mdash;provide an easy way to give more context for your inputs. Great examples include the @ sign for Twitter usernames or $ for finances.</p>
<hr>