mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Refactor input groups
* Deprecate .input-append and .input-prepend * Use new, single base class for component, .input-group * Deprecate .addon for .input-group-addon * For compatibility with all buttons, require .input-group-btn to wrap buttons and button dropdowns * Still need to reimplement with segmented button dropdowns, but that's dependent on a refactor of those first
This commit is contained in:
parent
6649918c7f
commit
4c82dd3645
6 changed files with 422 additions and 815 deletions
347
docs/assets/css/bootstrap.css
vendored
347
docs/assets/css/bootstrap.css
vendored
|
@ -1340,63 +1340,38 @@ select:focus:invalid:focus {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-append,
|
.input-group {
|
||||||
.input-prepend {
|
display: table;
|
||||||
margin-bottom: 5px;
|
|
||||||
font-size: 0;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-append input,
|
.input-group[class*="span"] {
|
||||||
.input-prepend input,
|
|
||||||
.input-append select,
|
|
||||||
.input-prepend select,
|
|
||||||
.input-append .uneditable-input,
|
|
||||||
.input-prepend .uneditable-input,
|
|
||||||
.input-append .dropdown-menu,
|
|
||||||
.input-prepend .dropdown-menu {
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-append input,
|
|
||||||
.input-prepend input,
|
|
||||||
.input-append select,
|
|
||||||
.input-prepend select,
|
|
||||||
.input-append .uneditable-input,
|
|
||||||
.input-prepend .uneditable-input {
|
|
||||||
position: relative;
|
|
||||||
float: none;
|
float: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-group input,
|
||||||
|
.input-group select,
|
||||||
|
.input-group .uneditable-input {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-group-addon,
|
||||||
|
.input-group-btn,
|
||||||
|
.input-group input,
|
||||||
|
.input-group .uneditable-input {
|
||||||
|
display: table-cell;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 14px;
|
border-radius: 0;
|
||||||
vertical-align: top;
|
|
||||||
border-radius: 0 4px 4px 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-append input:focus,
|
.input-group-addon,
|
||||||
.input-prepend input:focus,
|
.input-group-btn {
|
||||||
.input-append select:focus,
|
width: 1%;
|
||||||
.input-prepend select:focus,
|
vertical-align: middle;
|
||||||
.input-append .uneditable-input:focus,
|
|
||||||
.input-prepend .uneditable-input:focus {
|
|
||||||
z-index: 2;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-append input[class*="span"],
|
.input-group-addon {
|
||||||
.input-prepend input[class*="span"],
|
padding: 6px 8px;
|
||||||
.input-append select[class*="span"],
|
|
||||||
.input-prepend select[class*="span"],
|
|
||||||
.input-append .uneditable-input[class*="span"],
|
|
||||||
.input-prepend .uneditable-input[class*="span"] {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-append .add-on,
|
|
||||||
.input-prepend .add-on {
|
|
||||||
display: inline-block;
|
|
||||||
width: auto;
|
|
||||||
height: 20px;
|
|
||||||
min-width: 16px;
|
|
||||||
padding: 6px;
|
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
|
@ -1404,244 +1379,69 @@ select:focus:invalid:focus {
|
||||||
text-shadow: 0 1px 0 #fff;
|
text-shadow: 0 1px 0 #fff;
|
||||||
background-color: #eeeeee;
|
background-color: #eeeeee;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-append .add-on,
|
.input-group input:first-child,
|
||||||
.input-prepend .add-on,
|
.input-group .uneditable-input:first-child,
|
||||||
.input-append .btn,
|
.input-group-addon:first-child {
|
||||||
.input-prepend .btn,
|
border-bottom-left-radius: 4px;
|
||||||
.input-append .btn-group > .dropdown-toggle,
|
border-top-left-radius: 4px;
|
||||||
.input-prepend .btn-group > .dropdown-toggle {
|
|
||||||
vertical-align: top;
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-append .active,
|
.input-group-addon:first-child {
|
||||||
.input-prepend .active {
|
border-right: 0;
|
||||||
background-color: #dff0d8;
|
|
||||||
border-color: #468847;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-prepend .add-on,
|
.input-group input:last-child,
|
||||||
.input-prepend .btn {
|
.input-group .uneditable-input:last-child,
|
||||||
margin-right: -1px;
|
.input-group-addon:last-child {
|
||||||
|
border-top-right-radius: 4px;
|
||||||
|
border-bottom-right-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-prepend .add-on:first-child,
|
.input-group-addon:last-child {
|
||||||
.input-prepend .btn:first-child {
|
border-left: 0;
|
||||||
border-radius: 4px 0 0 4px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-append input,
|
.input-group-btn,
|
||||||
.input-append select,
|
.input-group-btn .btn {
|
||||||
.input-append .uneditable-input {
|
white-space: nowrap;
|
||||||
border-radius: 4px 0 0 4px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-append input + .btn-group .btn,
|
.input-group-btn > .btn {
|
||||||
.input-append select + .btn-group .btn,
|
|
||||||
.input-append .uneditable-input + .btn-group .btn,
|
|
||||||
.input-append input + .btn-group .btn:last-child,
|
|
||||||
.input-append select + .btn-group .btn:last-child,
|
|
||||||
.input-append .uneditable-input + .btn-group .btn:last-child {
|
|
||||||
border-radius: 0 4px 4px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-append .add-on,
|
|
||||||
.input-append .btn,
|
|
||||||
.input-append .btn-group {
|
|
||||||
margin-left: -1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-append .add-on:last-child,
|
|
||||||
.input-append .btn:last-child,
|
|
||||||
.input-append .btn-group:last-child > .dropdown-toggle {
|
|
||||||
border-radius: 0 4px 4px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-prepend.input-append input,
|
|
||||||
.input-prepend.input-append select,
|
|
||||||
.input-prepend.input-append .uneditable-input {
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-prepend.input-append input + .btn-group .btn,
|
|
||||||
.input-prepend.input-append select + .btn-group .btn,
|
|
||||||
.input-prepend.input-append .uneditable-input + .btn-group .btn {
|
|
||||||
border-radius: 0 4px 4px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-prepend.input-append .add-on:first-child,
|
|
||||||
.input-prepend.input-append .btn:first-child {
|
|
||||||
margin-right: -1px;
|
|
||||||
border-radius: 4px 0 0 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-prepend.input-append .add-on:last-child,
|
|
||||||
.input-prepend.input-append .btn:last-child {
|
|
||||||
margin-left: -1px;
|
|
||||||
border-radius: 0 4px 4px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-prepend.input-append .btn-group:first-child {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
input.search-query {
|
|
||||||
padding-right: 14px;
|
|
||||||
padding-right: 4px \9;
|
|
||||||
padding-left: 14px;
|
|
||||||
padding-left: 4px \9;
|
|
||||||
/* IE8 doesn't have border radius, so don't indent the padding */
|
|
||||||
|
|
||||||
margin-bottom: 0;
|
|
||||||
border-radius: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Allow for input prepend/append in search forms */
|
|
||||||
|
|
||||||
.form-search .input-append .search-query,
|
|
||||||
.form-search .input-prepend .search-query {
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search .input-append .search-query {
|
|
||||||
border-radius: 20px 0 0 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search .input-append .btn {
|
|
||||||
border-radius: 0 20px 20px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search .input-prepend .search-query {
|
|
||||||
border-radius: 0 20px 20px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search .input-prepend .btn {
|
|
||||||
border-radius: 20px 0 0 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search input,
|
|
||||||
.form-inline input,
|
|
||||||
.form-horizontal input,
|
|
||||||
.form-search textarea,
|
|
||||||
.form-inline textarea,
|
|
||||||
.form-horizontal textarea,
|
|
||||||
.form-search select,
|
|
||||||
.form-inline select,
|
|
||||||
.form-horizontal select,
|
|
||||||
.form-search .help-inline,
|
|
||||||
.form-inline .help-inline,
|
|
||||||
.form-horizontal .help-inline,
|
|
||||||
.form-search .uneditable-input,
|
|
||||||
.form-inline .uneditable-input,
|
|
||||||
.form-horizontal .uneditable-input,
|
|
||||||
.form-search .input-prepend,
|
|
||||||
.form-inline .input-prepend,
|
|
||||||
.form-horizontal .input-prepend,
|
|
||||||
.form-search .input-append,
|
|
||||||
.form-inline .input-append,
|
|
||||||
.form-horizontal .input-append {
|
|
||||||
display: inline-block;
|
|
||||||
margin-bottom: 0;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search .hide,
|
|
||||||
.form-inline .hide,
|
|
||||||
.form-horizontal .hide {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search label,
|
|
||||||
.form-inline label,
|
|
||||||
.form-search .btn-group,
|
|
||||||
.form-inline .btn-group {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search .input-append,
|
|
||||||
.form-inline .input-append,
|
|
||||||
.form-search .input-prepend,
|
|
||||||
.form-inline .input-prepend {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search .radio,
|
|
||||||
.form-search .checkbox,
|
|
||||||
.form-inline .radio,
|
|
||||||
.form-inline .checkbox {
|
|
||||||
display: inline-block;
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search .radio label,
|
|
||||||
.form-search .checkbox label,
|
|
||||||
.form-inline .radio label,
|
|
||||||
.form-inline .checkbox label {
|
|
||||||
margin-bottom: 0;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-search .radio input[type="radio"],
|
|
||||||
.form-search .checkbox input[type="checkbox"],
|
|
||||||
.form-inline .radio input[type="radio"],
|
|
||||||
.form-inline .checkbox input[type="checkbox"] {
|
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: 3px;
|
border-radius: 0;
|
||||||
margin-left: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.control-group {
|
.input-group-btn > .btn + .btn {
|
||||||
margin-bottom: 10px;
|
border-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
legend + .control-group {
|
.input-group-btn.btn-group {
|
||||||
margin-top: 20px;
|
display: table-cell;
|
||||||
-webkit-margin-top-collapse: separate;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-horizontal .control-group {
|
.input-group-btn:first-child > .btn:last-child,
|
||||||
margin-bottom: 20px;
|
.input-group-btn.btn-group:first-child > .btn {
|
||||||
|
border-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-horizontal .control-group:before,
|
.input-group-btn:first-child > .btn:first-child,
|
||||||
.form-horizontal .control-group:after {
|
.input-group-btn.btn-group:first-child > .btn {
|
||||||
display: table;
|
border-radius: 4px 0 0 4px;
|
||||||
line-height: 0;
|
|
||||||
content: "";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-horizontal .control-group:after {
|
.input-group-btn:last-child > .btn:first-child,
|
||||||
clear: both;
|
.input-group-btn.btn-group:last-child > .btn:first-child {
|
||||||
|
border-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-horizontal .control-label {
|
.input-group-btn:last-child > .btn:last-child,
|
||||||
float: left;
|
.input-group-btn.btn-group:last-child > .btn {
|
||||||
width: 160px;
|
border-radius: 0 4px 4px 0;
|
||||||
padding-top: 5px;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-horizontal .controls {
|
|
||||||
margin-left: 180px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-horizontal .help-block {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-horizontal input + .help-block,
|
|
||||||
.form-horizontal select + .help-block,
|
|
||||||
.form-horizontal textarea + .help-block,
|
|
||||||
.form-horizontal .uneditable-input + .help-block,
|
|
||||||
.form-horizontal .input-prepend + .help-block,
|
|
||||||
.form-horizontal .input-append + .help-block {
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-horizontal .form-actions {
|
|
||||||
padding-left: 180px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
|
@ -2753,21 +2553,22 @@ button.close {
|
||||||
color: #333333;
|
color: #333333;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
||||||
|
white-space: nowrap;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: #f5f5f5;
|
background-color: #f0f0f0;
|
||||||
background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
|
background-image: -moz-linear-gradient(top, #fafafa, #e1e1e1);
|
||||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafafa), to(#e1e1e1));
|
||||||
background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
|
background-image: -webkit-linear-gradient(top, #fafafa, #e1e1e1);
|
||||||
background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
|
background-image: -o-linear-gradient(top, #fafafa, #e1e1e1);
|
||||||
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
|
background-image: linear-gradient(to bottom, #fafafa, #e1e1e1);
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
border: 1px solid #bbbbbb;
|
border: 1px solid #bbbbbb;
|
||||||
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
border-color: #e1e1e1 #e1e1e1 #bababa;
|
||||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||||
border-bottom-color: #a2a2a2;
|
border-bottom-color: #a2a2a2;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffe1e1e1', GradientType=0);
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
||||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||||
|
@ -2779,12 +2580,12 @@ button.close {
|
||||||
.btn.disabled,
|
.btn.disabled,
|
||||||
.btn[disabled] {
|
.btn[disabled] {
|
||||||
color: #333333;
|
color: #333333;
|
||||||
background-color: #e6e6e6;
|
background-color: #e1e1e1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn:active,
|
.btn:active,
|
||||||
.btn.active {
|
.btn.active {
|
||||||
background-color: #cccccc \9;
|
background-color: #c7c7c7 \9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn:hover {
|
.btn:hover {
|
||||||
|
@ -3205,7 +3006,7 @@ input[type="button"].btn-block {
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group.open .btn.dropdown-toggle {
|
.btn-group.open .btn.dropdown-toggle {
|
||||||
background-color: #e6e6e6;
|
background-color: #e1e1e1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group.open .btn-primary.dropdown-toggle {
|
.btn-group.open .btn-primary.dropdown-toggle {
|
||||||
|
|
250
docs/css.html
250
docs/css.html
|
@ -1119,13 +1119,15 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
<label class="control-label" for="inputPassword">Password</label>
|
<label class="control-label" for="inputPassword">Password</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<input type="password" id="inputPassword" placeholder="Password">
|
<input type="password" id="inputPassword" placeholder="Password">
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox"> Remember me
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox"> Remember me
|
|
||||||
</label>
|
|
||||||
<button type="submit" class="btn">Sign in</button>
|
<button type="submit" class="btn">Sign in</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1146,9 +1148,11 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<label class="checkbox">
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
<input type="checkbox"> Remember me
|
<input type="checkbox"> Remember me
|
||||||
</label>
|
</label>
|
||||||
|
</div>
|
||||||
<button type="submit" class="btn">Sign in</button>
|
<button type="submit" class="btn">Sign in</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1284,85 +1288,116 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
<h2 id="forms-extending">Extending form controls</h2>
|
<h2 id="forms-extending">Extending form controls</h2>
|
||||||
<p>Adding on top of existing browser controls, Bootstrap includes other useful form components.</p>
|
<p>Adding on top of existing browser controls, Bootstrap includes other useful form components.</p>
|
||||||
|
|
||||||
<h3>Prepended and appended inputs</h3>
|
<h3>Input groups</h3>
|
||||||
<p>Add text or buttons before or after any text-based input. Do note that <code>select</code> elements are not supported here.</p>
|
<p>Add text or buttons before, after, or on both sides of any text-based input. Use <code>.input-group</code> with a <code>.add-on</code> to prepend or append elements to an <code><input></code>.</p>
|
||||||
|
<p>Avoid using <code><select></code> elements here as they cannot be fully styled in WebKit browsers.</p>
|
||||||
<h4>Default options</h4>
|
|
||||||
<p>Wrap an <code>.add-on</code> and an <code>input</code> with one of two classes to prepend or append text to an input.</p>
|
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-prepend">
|
<div class="input-group span9">
|
||||||
<span class="add-on">@</span>
|
<span class="input-group-addon">@</span>
|
||||||
<input id="prependedInput" type="text" placeholder="Username">
|
<input type="text" placeholder="Username">
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
<div class="input-append">
|
<div class="input-group span6">
|
||||||
<input id="appendedInput" type="text">
|
<input type="text">
|
||||||
<span class="add-on">.00</span>
|
<span class="input-group-addon">.00</span>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="input-group span3">
|
||||||
|
<span class="input-group-addon">$</span>
|
||||||
|
<input type="text">
|
||||||
|
<span class="input-group-addon">.00</span>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<div class="input-prepend">
|
<div class="input-group span9">
|
||||||
<span class="add-on">@</span>
|
<span class="input-group-addon">@</span>
|
||||||
<input id="prependedInput" type="text" placeholder="Username">
|
<input type="text" placeholder="Username">
|
||||||
</div>
|
</div>
|
||||||
<div class="input-append">
|
|
||||||
<input id="appendedInput" type="text">
|
|
||||||
<span class="add-on">.00</span>
|
|
||||||
</div>
|
|
||||||
</pre>
|
|
||||||
|
|
||||||
<h4>Combined</h4>
|
<div class="input-group span6">
|
||||||
<p>Use both classes and two instances of <code>.add-on</code> to prepend and append an input.</p>
|
<input type="text">
|
||||||
<form class="bs-docs-example form-inline">
|
<span class="input-group-addon">.00</span>
|
||||||
<div class="input-prepend input-append">
|
</div>
|
||||||
<span class="add-on">$</span>
|
|
||||||
<input id="appendedPrependedInput" type="text">
|
<div class="input-group span3">
|
||||||
<span class="add-on">.00</span>
|
<span class="input-group-addon">$</span>
|
||||||
</div>
|
<input type="text">
|
||||||
</form>
|
<span class="input-group-addon">.00</span>
|
||||||
<pre class="prettyprint linenums">
|
|
||||||
<div class="input-prepend input-append">
|
|
||||||
<span class="add-on">$</span>
|
|
||||||
<input id="appendedPrependedInput" type="text">
|
|
||||||
<span class="add-on">.00</span>
|
|
||||||
</div>
|
</div>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<h4>Buttons instead of text</h4>
|
<h4>Buttons instead of text</h4>
|
||||||
<p>Instead of a <code><span></code> with text, use a <code>.btn</code> to attach a button (or two) to an input.</p>
|
<p>Buttons in input groups are a bit different and require one extra level of nesting. Instead of <code>.input-group-addon</code>, you'll need to use <code>.input-group-btn</code> to wrap the buttons. This is required due to default browser styles that cannot be overridden.</p>
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedInputButton" type="text">
|
<span class="input-group-btn">
|
||||||
<button class="btn" type="button">Go!</button>
|
<button class="btn" type="button">Go!</button>
|
||||||
|
</span>
|
||||||
|
<input type="text">
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="input-group span7">
|
||||||
|
<input type="text">
|
||||||
|
<span class="input-group-btn">
|
||||||
|
<button class="btn" type="button">Go!</button>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedInputButton" type="text">
|
<span class="input-group-btn">
|
||||||
<button class="btn" type="button">Go!</button>
|
<button class="btn" type="button">Go!</button>
|
||||||
|
</span>
|
||||||
|
<input type="text">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="input-group span7">
|
||||||
|
<input type="text">
|
||||||
|
<span class="input-group-btn">
|
||||||
|
<button class="btn" type="button">Go!</button>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</pre>
|
</pre>
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedInputButtons" type="text">
|
<input type="text">
|
||||||
|
<span class="input-group-btn">
|
||||||
<button class="btn" type="button">Search</button>
|
<button class="btn" type="button">Search</button>
|
||||||
<button class="btn" type="button">Options</button>
|
<button class="btn" type="button">Options</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="input-group span7">
|
||||||
|
<span class="input-group-btn">
|
||||||
|
<button class="btn" type="button">Search</button>
|
||||||
|
<button class="btn" type="button">Options</button>
|
||||||
|
</span>
|
||||||
|
<input type="text">
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedInputButton" type="text">
|
<input type="text">
|
||||||
|
<span class="input-group-btn">
|
||||||
<button class="btn" type="button">Search</button>
|
<button class="btn" type="button">Search</button>
|
||||||
<button class="btn" type="button">Options</button>
|
<button class="btn" type="button">Options</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="input-group span7">
|
||||||
|
<span class="input-group-btn">
|
||||||
|
<button class="btn" type="button">Search</button>
|
||||||
|
<button class="btn" type="button">Options</button>
|
||||||
|
</span>
|
||||||
|
<input type="text">
|
||||||
</div>
|
</div>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<h4>Button dropdowns</h4>
|
<h4>Button dropdowns</h4>
|
||||||
<p></p>
|
<p></p>
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedDropdownButton" type="text">
|
<div class="input-group-btn btn-group">
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a href="#">Action</a></li>
|
<li><a href="#">Action</a></li>
|
||||||
|
@ -1372,13 +1407,26 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
<li><a href="#">Separated link</a></li>
|
<li><a href="#">Separated link</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div><!-- /btn-group -->
|
</div><!-- /btn-group -->
|
||||||
</div><!-- /input-append -->
|
<input type="text">
|
||||||
|
</div><!-- /input-group -->
|
||||||
|
<br>
|
||||||
|
<div class="input-group span7">
|
||||||
|
<input type="text">
|
||||||
|
<div class="input-group-btn btn-group">
|
||||||
|
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
<li><a href="#">Action</a></li>
|
||||||
|
<li><a href="#">Another action</a></li>
|
||||||
|
<li><a href="#">Something else here</a></li>
|
||||||
|
<li class="divider"></li>
|
||||||
|
<li><a href="#">Separated link</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!-- /btn-group -->
|
||||||
|
</div><!-- /input-group -->
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input id="appendedInputButtons" type="text">
|
<div class="input-group-btn btn-group">
|
||||||
<input class="span3" id="appendedDropdownButton" type="text">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
||||||
Action
|
Action
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
|
@ -1387,77 +1435,12 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
...
|
...
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<input type="text">
|
||||||
</div>
|
</div>
|
||||||
</pre>
|
|
||||||
|
|
||||||
<form class="bs-docs-example">
|
<div class="input-group span7">
|
||||||
<div class="input-prepend">
|
<input type="text">
|
||||||
<div class="btn-group">
|
<div class="input-group-btn btn-group">
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
<li><a href="#">Action</a></li>
|
|
||||||
<li><a href="#">Another action</a></li>
|
|
||||||
<li><a href="#">Something else here</a></li>
|
|
||||||
<li class="divider"></li>
|
|
||||||
<li><a href="#">Separated link</a></li>
|
|
||||||
</ul>
|
|
||||||
</div><!-- /btn-group -->
|
|
||||||
<input class="span2" id="prependedDropdownButton" type="text">
|
|
||||||
</div><!-- /input-prepend -->
|
|
||||||
</form>
|
|
||||||
<pre class="prettyprint linenums">
|
|
||||||
<div class="input-prepend">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
|
||||||
Action
|
|
||||||
<span class="caret"></span>
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
...
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<input class="span2" id="prependedDropdownButton" type="text">
|
|
||||||
</div>
|
|
||||||
</pre>
|
|
||||||
|
|
||||||
<form class="bs-docs-example">
|
|
||||||
<div class="input-prepend input-append">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
<li><a href="#">Action</a></li>
|
|
||||||
<li><a href="#">Another action</a></li>
|
|
||||||
<li><a href="#">Something else here</a></li>
|
|
||||||
<li class="divider"></li>
|
|
||||||
<li><a href="#">Separated link</a></li>
|
|
||||||
</ul>
|
|
||||||
</div><!-- /btn-group -->
|
|
||||||
<input class="span2" id="appendedPrependedDropdownButton" type="text">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
<li><a href="#">Action</a></li>
|
|
||||||
<li><a href="#">Another action</a></li>
|
|
||||||
<li><a href="#">Something else here</a></li>
|
|
||||||
<li class="divider"></li>
|
|
||||||
<li><a href="#">Separated link</a></li>
|
|
||||||
</ul>
|
|
||||||
</div><!-- /btn-group -->
|
|
||||||
</div><!-- /input-prepend input-append -->
|
|
||||||
</form>
|
|
||||||
<pre class="prettyprint linenums">
|
|
||||||
<div class="input-prepend input-append">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
|
||||||
Action
|
|
||||||
<span class="caret"></span>
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
...
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<input class="span2" id="appendedPrependedDropdownButton" type="text">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
||||||
Action
|
Action
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
|
@ -1471,8 +1454,8 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
|
|
||||||
<h4>Segmented dropdown groups</h4>
|
<h4>Segmented dropdown groups</h4>
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-prepend">
|
<div class="input-group span7">
|
||||||
<div class="btn-group">
|
<div class="input-group-btn btn-group">
|
||||||
<button class="btn" tabindex="-1">Action</button>
|
<button class="btn" tabindex="-1">Action</button>
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown" tabindex="-1">
|
<button class="btn dropdown-toggle" data-toggle="dropdown" tabindex="-1">
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
|
@ -1487,9 +1470,10 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
</div>
|
</div>
|
||||||
<input type="text" class="span3">
|
<input type="text" class="span3">
|
||||||
</div>
|
</div>
|
||||||
<div class="input-append">
|
|
||||||
<input type="text" class="span3">
|
<div class="input-group span7">
|
||||||
<div class="btn-group">
|
<input type="text">
|
||||||
|
<div class="input-group-btn btn-group">
|
||||||
<button class="btn" tabindex="-1">Action</button>
|
<button class="btn" tabindex="-1">Action</button>
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown" tabindex="-1">
|
<button class="btn dropdown-toggle" data-toggle="dropdown" tabindex="-1">
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
|
@ -1505,16 +1489,14 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<form>
|
<div class="input-prepend">
|
||||||
<div class="input-prepend">
|
|
||||||
<div class="btn-group">...</div>
|
<div class="btn-group">...</div>
|
||||||
<input type="text" class="span3">
|
<input type="text" class="span3">
|
||||||
</div>
|
</div>
|
||||||
<div class="input-append">
|
<div class="input-append">
|
||||||
<input type="text" class="span3">
|
<input type="text" class="span3">
|
||||||
<div class="btn-group">...</div>
|
<div class="btn-group">...</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<h4>Search form</h4>
|
<h4>Search form</h4>
|
||||||
|
|
252
docs/templates/pages/css.mustache
vendored
252
docs/templates/pages/css.mustache
vendored
|
@ -1059,13 +1059,15 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
<label class="control-label" for="inputPassword">Password</label>
|
<label class="control-label" for="inputPassword">Password</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<input type="password" id="inputPassword" placeholder="Password">
|
<input type="password" id="inputPassword" placeholder="Password">
|
||||||
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox"> Remember me
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<label class="checkbox">
|
|
||||||
<input type="checkbox"> Remember me
|
|
||||||
</label>
|
|
||||||
<button type="submit" class="btn">Sign in</button>
|
<button type="submit" class="btn">Sign in</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1086,9 +1088,11 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<label class="checkbox">
|
<div class="checkbox">
|
||||||
|
<label>
|
||||||
<input type="checkbox"> Remember me
|
<input type="checkbox"> Remember me
|
||||||
</label>
|
</label>
|
||||||
|
</div>
|
||||||
<button type="submit" class="btn">Sign in</button>
|
<button type="submit" class="btn">Sign in</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1224,85 +1228,116 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
<h2 id="forms-extending">Extending form controls</h2>
|
<h2 id="forms-extending">Extending form controls</h2>
|
||||||
<p>Adding on top of existing browser controls, Bootstrap includes other useful form components.</p>
|
<p>Adding on top of existing browser controls, Bootstrap includes other useful form components.</p>
|
||||||
|
|
||||||
<h3>Prepended and appended inputs</h3>
|
<h3>Input groups</h3>
|
||||||
<p>Add text or buttons before or after any text-based input. Do note that <code>select</code> elements are not supported here.</p>
|
<p>Add text or buttons before, after, or on both sides of any text-based input. Use <code>.input-group</code> with a <code>.add-on</code> to prepend or append elements to an <code><input></code>.</p>
|
||||||
|
<p>Avoid using <code><select></code> elements here as they cannot be fully styled in WebKit browsers.</p>
|
||||||
<h4>Default options</h4>
|
|
||||||
<p>Wrap an <code>.add-on</code> and an <code>input</code> with one of two classes to prepend or append text to an input.</p>
|
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-prepend">
|
<div class="input-group span9">
|
||||||
<span class="add-on">@</span>
|
<span class="input-group-addon">@</span>
|
||||||
<input id="prependedInput" type="text" placeholder="Username">
|
<input type="text" placeholder="Username">
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
<div class="input-append">
|
<div class="input-group span6">
|
||||||
<input id="appendedInput" type="text">
|
<input type="text">
|
||||||
<span class="add-on">.00</span>
|
<span class="input-group-addon">.00</span>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="input-group span3">
|
||||||
|
<span class="input-group-addon">$</span>
|
||||||
|
<input type="text">
|
||||||
|
<span class="input-group-addon">.00</span>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<div class="input-prepend">
|
<div class="input-group span9">
|
||||||
<span class="add-on">@</span>
|
<span class="input-group-addon">@</span>
|
||||||
<input id="prependedInput" type="text" placeholder="Username">
|
<input type="text" placeholder="Username">
|
||||||
</div>
|
</div>
|
||||||
<div class="input-append">
|
|
||||||
<input id="appendedInput" type="text">
|
|
||||||
<span class="add-on">.00</span>
|
|
||||||
</div>
|
|
||||||
</pre>
|
|
||||||
|
|
||||||
<h4>Combined</h4>
|
<div class="input-group span6">
|
||||||
<p>Use both classes and two instances of <code>.add-on</code> to prepend and append an input.</p>
|
<input type="text">
|
||||||
<form class="bs-docs-example form-inline">
|
<span class="input-group-addon">.00</span>
|
||||||
<div class="input-prepend input-append">
|
</div>
|
||||||
<span class="add-on">$</span>
|
|
||||||
<input id="appendedPrependedInput" type="text">
|
<div class="input-group span3">
|
||||||
<span class="add-on">.00</span>
|
<span class="input-group-addon">$</span>
|
||||||
</div>
|
<input type="text">
|
||||||
</form>
|
<span class="input-group-addon">.00</span>
|
||||||
<pre class="prettyprint linenums">
|
|
||||||
<div class="input-prepend input-append">
|
|
||||||
<span class="add-on">$</span>
|
|
||||||
<input id="appendedPrependedInput" type="text">
|
|
||||||
<span class="add-on">.00</span>
|
|
||||||
</div>
|
</div>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<h4>Buttons instead of text</h4>
|
<h4>Buttons instead of text</h4>
|
||||||
<p>Instead of a <code><span></code> with text, use a <code>.btn</code> to attach a button (or two) to an input.</p>
|
<p>Buttons in input groups are a bit different and require one extra level of nesting. Instead of <code>.input-group-addon</code>, you'll need to use <code>.input-group-btn</code> to wrap the buttons. This is required due to default browser styles that cannot be overridden.</p>
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedInputButton" type="text">
|
<span class="input-group-btn">
|
||||||
<button class="btn" type="button">Go!</button>
|
<button class="btn" type="button">Go!</button>
|
||||||
|
</span>
|
||||||
|
<input type="text">
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="input-group span7">
|
||||||
|
<input type="text">
|
||||||
|
<span class="input-group-btn">
|
||||||
|
<button class="btn" type="button">Go!</button>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedInputButton" type="text">
|
<span class="input-group-btn">
|
||||||
<button class="btn" type="button">Go!</button>
|
<button class="btn" type="button">Go!</button>
|
||||||
|
</span>
|
||||||
|
<input type="text">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="input-group span7">
|
||||||
|
<input type="text">
|
||||||
|
<span class="input-group-btn">
|
||||||
|
<button class="btn" type="button">Go!</button>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</pre>
|
</pre>
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedInputButtons" type="text">
|
<input type="text">
|
||||||
|
<span class="input-group-btn">
|
||||||
<button class="btn" type="button">Search</button>
|
<button class="btn" type="button">Search</button>
|
||||||
<button class="btn" type="button">Options</button>
|
<button class="btn" type="button">Options</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="input-group span7">
|
||||||
|
<span class="input-group-btn">
|
||||||
|
<button class="btn" type="button">Search</button>
|
||||||
|
<button class="btn" type="button">Options</button>
|
||||||
|
</span>
|
||||||
|
<input type="text">
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedInputButton" type="text">
|
<input type="text">
|
||||||
|
<span class="input-group-btn">
|
||||||
<button class="btn" type="button">Search</button>
|
<button class="btn" type="button">Search</button>
|
||||||
<button class="btn" type="button">Options</button>
|
<button class="btn" type="button">Options</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="input-group span7">
|
||||||
|
<span class="input-group-btn">
|
||||||
|
<button class="btn" type="button">Search</button>
|
||||||
|
<button class="btn" type="button">Options</button>
|
||||||
|
</span>
|
||||||
|
<input type="text">
|
||||||
</div>
|
</div>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<h4>Button dropdowns</h4>
|
<h4>Button dropdowns</h4>
|
||||||
<p></p>
|
<p></p>
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input class="span3" id="appendedDropdownButton" type="text">
|
<div class="input-group-btn btn-group">
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a href="#">Action</a></li>
|
<li><a href="#">Action</a></li>
|
||||||
|
@ -1312,13 +1347,26 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
<li><a href="#">Separated link</a></li>
|
<li><a href="#">Separated link</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div><!-- /btn-group -->
|
</div><!-- /btn-group -->
|
||||||
</div><!-- /input-append -->
|
<input type="text">
|
||||||
|
</div><!-- /input-group -->
|
||||||
|
<br>
|
||||||
|
<div class="input-group span7">
|
||||||
|
<input type="text">
|
||||||
|
<div class="input-group-btn btn-group">
|
||||||
|
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
||||||
|
<ul class="dropdown-menu">
|
||||||
|
<li><a href="#">Action</a></li>
|
||||||
|
<li><a href="#">Another action</a></li>
|
||||||
|
<li><a href="#">Something else here</a></li>
|
||||||
|
<li class="divider"></li>
|
||||||
|
<li><a href="#">Separated link</a></li>
|
||||||
|
</ul>
|
||||||
|
</div><!-- /btn-group -->
|
||||||
|
</div><!-- /input-group -->
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<div class="input-append">
|
<div class="input-group span7">
|
||||||
<input id="appendedInputButtons" type="text">
|
<div class="input-group-btn btn-group">
|
||||||
<input class="span3" id="appendedDropdownButton" type="text">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
||||||
Action
|
Action
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
|
@ -1327,77 +1375,12 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
...
|
...
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<input type="text">
|
||||||
</div>
|
</div>
|
||||||
</pre>
|
|
||||||
|
|
||||||
<form class="bs-docs-example">
|
<div class="input-group span7">
|
||||||
<div class="input-prepend">
|
<input type="text">
|
||||||
<div class="btn-group">
|
<div class="input-group-btn btn-group">
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
<li><a href="#">Action</a></li>
|
|
||||||
<li><a href="#">Another action</a></li>
|
|
||||||
<li><a href="#">Something else here</a></li>
|
|
||||||
<li class="divider"></li>
|
|
||||||
<li><a href="#">Separated link</a></li>
|
|
||||||
</ul>
|
|
||||||
</div><!-- /btn-group -->
|
|
||||||
<input class="span2" id="prependedDropdownButton" type="text">
|
|
||||||
</div><!-- /input-prepend -->
|
|
||||||
</form>
|
|
||||||
<pre class="prettyprint linenums">
|
|
||||||
<div class="input-prepend">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
|
||||||
Action
|
|
||||||
<span class="caret"></span>
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
...
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<input class="span2" id="prependedDropdownButton" type="text">
|
|
||||||
</div>
|
|
||||||
</pre>
|
|
||||||
|
|
||||||
<form class="bs-docs-example">
|
|
||||||
<div class="input-prepend input-append">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
<li><a href="#">Action</a></li>
|
|
||||||
<li><a href="#">Another action</a></li>
|
|
||||||
<li><a href="#">Something else here</a></li>
|
|
||||||
<li class="divider"></li>
|
|
||||||
<li><a href="#">Separated link</a></li>
|
|
||||||
</ul>
|
|
||||||
</div><!-- /btn-group -->
|
|
||||||
<input class="span2" id="appendedPrependedDropdownButton" type="text">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
<li><a href="#">Action</a></li>
|
|
||||||
<li><a href="#">Another action</a></li>
|
|
||||||
<li><a href="#">Something else here</a></li>
|
|
||||||
<li class="divider"></li>
|
|
||||||
<li><a href="#">Separated link</a></li>
|
|
||||||
</ul>
|
|
||||||
</div><!-- /btn-group -->
|
|
||||||
</div><!-- /input-prepend input-append -->
|
|
||||||
</form>
|
|
||||||
<pre class="prettyprint linenums">
|
|
||||||
<div class="input-prepend input-append">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
|
||||||
Action
|
|
||||||
<span class="caret"></span>
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu">
|
|
||||||
...
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<input class="span2" id="appendedPrependedDropdownButton" type="text">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
<button class="btn dropdown-toggle" data-toggle="dropdown">
|
||||||
Action
|
Action
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
|
@ -1411,8 +1394,8 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
|
|
||||||
<h4>Segmented dropdown groups</h4>
|
<h4>Segmented dropdown groups</h4>
|
||||||
<form class="bs-docs-example">
|
<form class="bs-docs-example">
|
||||||
<div class="input-prepend">
|
<div class="input-group span7">
|
||||||
<div class="btn-group">
|
<div class="input-group-btn btn-group">
|
||||||
<button class="btn" tabindex="-1">Action</button>
|
<button class="btn" tabindex="-1">Action</button>
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown" tabindex="-1">
|
<button class="btn dropdown-toggle" data-toggle="dropdown" tabindex="-1">
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
|
@ -1427,9 +1410,12 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
</div>
|
</div>
|
||||||
<input type="text" class="span3">
|
<input type="text" class="span3">
|
||||||
</div>
|
</div>
|
||||||
<div class="input-append">
|
|
||||||
<input type="text" class="span3">
|
<br>
|
||||||
<div class="btn-group">
|
|
||||||
|
<div class="input-group span7">
|
||||||
|
<input type="text">
|
||||||
|
<div class="input-group-btn btn-group">
|
||||||
<button class="btn" tabindex="-1">Action</button>
|
<button class="btn" tabindex="-1">Action</button>
|
||||||
<button class="btn dropdown-toggle" data-toggle="dropdown" tabindex="-1">
|
<button class="btn dropdown-toggle" data-toggle="dropdown" tabindex="-1">
|
||||||
<span class="caret"></span>
|
<span class="caret"></span>
|
||||||
|
@ -1445,16 +1431,14 @@ For example, <code><section></code> should be wrapped as inlin
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<pre class="prettyprint linenums">
|
<pre class="prettyprint linenums">
|
||||||
<form>
|
<div class="input-prepend">
|
||||||
<div class="input-prepend">
|
|
||||||
<div class="btn-group">...</div>
|
<div class="btn-group">...</div>
|
||||||
<input type="text" class="span3">
|
<input type="text" class="span3">
|
||||||
</div>
|
</div>
|
||||||
<div class="input-append">
|
<div class="input-append">
|
||||||
<input type="text" class="span3">
|
<input type="text" class="span3">
|
||||||
<div class="btn-group">...</div>
|
<div class="btn-group">...</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<h4>Search form</h4>
|
<h4>Search form</h4>
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
white-space: nowrap;
|
||||||
.buttonBackground(@btn-background, @btn-background-highlight, @grayDark, 0 1px 1px rgba(255,255,255,.75));
|
.buttonBackground(@btn-background, @btn-background-highlight, @grayDark, 0 1px 1px rgba(255,255,255,.75));
|
||||||
border: 1px solid @btn-border;
|
border: 1px solid @btn-border;
|
||||||
border-bottom-color: darken(@btn-border, 10%);
|
border-bottom-color: darken(@btn-border, 10%);
|
||||||
|
|
329
less/forms.less
329
less/forms.less
|
@ -421,49 +421,50 @@ select:focus:invalid {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// INPUT GROUPS
|
|
||||||
// ------------
|
|
||||||
|
|
||||||
// Allow us to put symbols and text within the input field for a cleaner look
|
// Input groups
|
||||||
.input-append,
|
// --------------------------------------------------
|
||||||
.input-prepend {
|
|
||||||
margin-bottom: 5px;
|
|
||||||
font-size: 0; // white space collapse hack
|
|
||||||
white-space: nowrap; // Prevent span and input from separating
|
|
||||||
|
|
||||||
// Reset the white space collapse hack
|
// Base styles
|
||||||
input,
|
// -------------------------
|
||||||
select,
|
.input-group {
|
||||||
.uneditable-input,
|
display: table;
|
||||||
.dropdown-menu {
|
|
||||||
font-size: @font-size-base;
|
// Undo padding and float of grid classes
|
||||||
|
&[class*="span"] {
|
||||||
|
float: none;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input,
|
input,
|
||||||
select,
|
select,
|
||||||
.uneditable-input {
|
.uneditable-input {
|
||||||
position: relative; // placed here by default so that on :focus we can place the input above the .add-on for full border and box-shadow goodness
|
width: 100%;
|
||||||
float: none; // Undo the float from grid sizing
|
|
||||||
margin: 0; // Prevent bottom margin from screwing up alignment in stacked forms
|
|
||||||
font-size: @font-size-base;
|
|
||||||
vertical-align: top;
|
|
||||||
border-radius: 0 @input-border-radius @input-border-radius 0;
|
|
||||||
// Make input on top when focused so blue border and shadow always show
|
|
||||||
&:focus {
|
|
||||||
z-index: 2;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
input[class*="span"],
|
|
||||||
select[class*="span"],
|
// Display as table-cell
|
||||||
.uneditable-input[class*="span"] {
|
// -------------------------
|
||||||
|
.input-group-addon,
|
||||||
|
.input-group-btn,
|
||||||
|
.input-group input,
|
||||||
|
.input-group .uneditable-input {
|
||||||
|
display: table-cell;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
border-radius: 0;
|
||||||
.add-on {
|
}
|
||||||
display: inline-block;
|
// Addon and addon wrapper for buttons
|
||||||
width: auto;
|
.input-group-addon,
|
||||||
height: @line-height-base;
|
.input-group-btn {
|
||||||
min-width: 16px;
|
width: 1%;
|
||||||
padding: 6px;
|
vertical-align: middle; // Match the inputs
|
||||||
|
}
|
||||||
|
|
||||||
|
// Text input groups
|
||||||
|
// -------------------------
|
||||||
|
.input-group-addon {
|
||||||
|
.box-sizing(border-box);
|
||||||
|
padding: 6px 8px;
|
||||||
font-size: @font-size-base;
|
font-size: @font-size-base;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
line-height: @line-height-base;
|
line-height: @line-height-base;
|
||||||
|
@ -471,223 +472,61 @@ select:focus:invalid {
|
||||||
text-shadow: 0 1px 0 #fff;
|
text-shadow: 0 1px 0 #fff;
|
||||||
background-color: @grayLighter;
|
background-color: @grayLighter;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
.add-on,
|
|
||||||
.btn,
|
// Reset rounded corners
|
||||||
.btn-group > .dropdown-toggle {
|
.input-group input:first-child,
|
||||||
vertical-align: top;
|
.input-group .uneditable-input:first-child,
|
||||||
|
.input-group-addon:first-child {
|
||||||
|
.border-left-radius(@border-radius-base);
|
||||||
|
}
|
||||||
|
.input-group-addon:first-child {
|
||||||
|
border-right: 0;
|
||||||
|
}
|
||||||
|
.input-group input:last-child,
|
||||||
|
.input-group .uneditable-input:last-child,
|
||||||
|
.input-group-addon:last-child {
|
||||||
|
.border-right-radius(@border-radius-base);
|
||||||
|
}
|
||||||
|
.input-group-addon:last-child {
|
||||||
|
border-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Button input groups
|
||||||
|
// -------------------------
|
||||||
|
.input-group-btn,
|
||||||
|
.input-group-btn .btn {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.input-group-btn > .btn {
|
||||||
|
float: left; // Collapse white-space
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
+ .btn {
|
||||||
.active {
|
border-left: 0;
|
||||||
background-color: @state-success-background;
|
|
||||||
border-color: @state-success-text;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.input-group-btn.btn-group {
|
||||||
.input-prepend {
|
display: table-cell;
|
||||||
.add-on,
|
}
|
||||||
.btn {
|
// Prepend
|
||||||
margin-right: -1px;
|
.input-group-btn {
|
||||||
|
&:first-child > .btn:last-child,
|
||||||
|
&.btn-group:first-child > .btn {
|
||||||
|
border-right: 0;
|
||||||
}
|
}
|
||||||
.add-on:first-child,
|
&:first-child > .btn:first-child,
|
||||||
.btn:first-child {
|
&.btn-group:first-child > .btn {
|
||||||
// FYI, `.btn:first-child` accounts for a button group that's prepended
|
border-radius: @border-radius-base 0 0 @border-radius-base;
|
||||||
border-radius: @input-border-radius 0 0 @input-border-radius;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Append
|
||||||
.input-append {
|
.input-group-btn {
|
||||||
input,
|
&:last-child > .btn:first-child,
|
||||||
select,
|
&.btn-group:last-child > .btn:first-child {
|
||||||
.uneditable-input {
|
border-left: 0;
|
||||||
border-radius: @input-border-radius 0 0 @input-border-radius;
|
|
||||||
+ .btn-group .btn,
|
|
||||||
+ .btn-group .btn:last-child {
|
|
||||||
border-radius: 0 @input-border-radius @input-border-radius 0;
|
|
||||||
}
|
}
|
||||||
}
|
&:last-child > .btn:last-child,
|
||||||
.add-on,
|
&.btn-group:last-child > .btn {
|
||||||
.btn,
|
border-radius: 0 @border-radius-base @border-radius-base 0;
|
||||||
.btn-group {
|
|
||||||
margin-left: -1px;
|
|
||||||
}
|
|
||||||
.add-on:last-child,
|
|
||||||
.btn:last-child,
|
|
||||||
.btn-group:last-child > .dropdown-toggle {
|
|
||||||
border-radius: 0 @input-border-radius @input-border-radius 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove all border-radius for inputs with both prepend and append
|
|
||||||
.input-prepend.input-append {
|
|
||||||
input,
|
|
||||||
select,
|
|
||||||
.uneditable-input {
|
|
||||||
border-radius: 0;
|
|
||||||
+ .btn-group .btn {
|
|
||||||
border-radius: 0 @input-border-radius @input-border-radius 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.add-on:first-child,
|
|
||||||
.btn:first-child {
|
|
||||||
margin-right: -1px;
|
|
||||||
border-radius: @input-border-radius 0 0 @input-border-radius;
|
|
||||||
}
|
|
||||||
.add-on:last-child,
|
|
||||||
.btn:last-child {
|
|
||||||
margin-left: -1px;
|
|
||||||
border-radius: 0 @input-border-radius @input-border-radius 0;
|
|
||||||
}
|
|
||||||
.btn-group:first-child {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// SEARCH FORM
|
|
||||||
// -----------
|
|
||||||
|
|
||||||
input.search-query {
|
|
||||||
padding-right: 14px;
|
|
||||||
padding-right: 4px \9;
|
|
||||||
padding-left: 14px;
|
|
||||||
padding-left: 4px \9; /* IE8 doesn't have border radius, so don't indent the padding */
|
|
||||||
margin-bottom: 0; // Remove the default margin on all inputs
|
|
||||||
border-radius: @input-border-radius-search;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Allow for input prepend/append in search forms */
|
|
||||||
.form-search .input-append .search-query,
|
|
||||||
.form-search .input-prepend .search-query {
|
|
||||||
border-radius: 0; // Override due to specificity
|
|
||||||
}
|
|
||||||
.form-search .input-append .search-query {
|
|
||||||
border-radius: @input-border-radius-search 0 0 @input-border-radius-search;
|
|
||||||
}
|
|
||||||
.form-search .input-append .btn {
|
|
||||||
border-radius: 0 @input-border-radius-search @input-border-radius-search 0;
|
|
||||||
}
|
|
||||||
.form-search .input-prepend .search-query {
|
|
||||||
border-radius: 0 @input-border-radius-search @input-border-radius-search 0;
|
|
||||||
}
|
|
||||||
.form-search .input-prepend .btn {
|
|
||||||
border-radius: @input-border-radius-search 0 0 @input-border-radius-search;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// HORIZONTAL & VERTICAL FORMS
|
|
||||||
// ---------------------------
|
|
||||||
|
|
||||||
// Common properties
|
|
||||||
// -----------------
|
|
||||||
|
|
||||||
.form-search,
|
|
||||||
.form-inline,
|
|
||||||
.form-horizontal {
|
|
||||||
input,
|
|
||||||
textarea,
|
|
||||||
select,
|
|
||||||
.help-inline,
|
|
||||||
.uneditable-input,
|
|
||||||
.input-prepend,
|
|
||||||
.input-append {
|
|
||||||
display: inline-block;
|
|
||||||
margin-bottom: 0;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
// Re-hide hidden elements due to specifity
|
|
||||||
.hide {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.form-search label,
|
|
||||||
.form-inline label,
|
|
||||||
.form-search .btn-group,
|
|
||||||
.form-inline .btn-group {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
// Remove margin for input-prepend/-append
|
|
||||||
.form-search .input-append,
|
|
||||||
.form-inline .input-append,
|
|
||||||
.form-search .input-prepend,
|
|
||||||
.form-inline .input-prepend {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
// Inline checkbox/radio labels (remove padding on left)
|
|
||||||
.form-search .radio,
|
|
||||||
.form-search .checkbox,
|
|
||||||
.form-inline .radio,
|
|
||||||
.form-inline .checkbox {
|
|
||||||
display: inline-block;
|
|
||||||
padding-left: 0;
|
|
||||||
label {
|
|
||||||
margin-bottom: 0;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Remove float and margin, set to inline-block
|
|
||||||
.form-search .radio input[type="radio"],
|
|
||||||
.form-search .checkbox input[type="checkbox"],
|
|
||||||
.form-inline .radio input[type="radio"],
|
|
||||||
.form-inline .checkbox input[type="checkbox"] {
|
|
||||||
float: left;
|
|
||||||
margin-right: 3px;
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Margin to space out fieldsets
|
|
||||||
.control-group {
|
|
||||||
margin-bottom: @line-height-base / 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Legend collapses margin, so next element is responsible for spacing
|
|
||||||
legend + .control-group {
|
|
||||||
margin-top: @line-height-base;
|
|
||||||
-webkit-margin-top-collapse: separate;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Horizontal-specific styles
|
|
||||||
// --------------------------
|
|
||||||
|
|
||||||
.form-horizontal {
|
|
||||||
// Increase spacing between groups
|
|
||||||
.control-group {
|
|
||||||
margin-bottom: @line-height-base;
|
|
||||||
.clearfix();
|
|
||||||
}
|
|
||||||
// Float the labels left
|
|
||||||
.control-label {
|
|
||||||
float: left;
|
|
||||||
width: @component-offset-horizontal - 20;
|
|
||||||
padding-top: 5px;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
// Move over all input controls and content
|
|
||||||
.controls {
|
|
||||||
margin-left: @component-offset-horizontal;
|
|
||||||
}
|
|
||||||
// Remove bottom margin on block level help text since that's accounted for on .control-group
|
|
||||||
.help-block {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
// And apply it only to .help-block instances that follow a form control
|
|
||||||
input,
|
|
||||||
select,
|
|
||||||
textarea,
|
|
||||||
.uneditable-input,
|
|
||||||
.input-prepend,
|
|
||||||
.input-append {
|
|
||||||
+ .help-block {
|
|
||||||
margin-top: @line-height-base / 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Move over buttons in .form-actions to align with .controls
|
|
||||||
.form-actions {
|
|
||||||
padding-left: @component-offset-horizontal;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,8 +76,8 @@
|
||||||
// Buttons
|
// Buttons
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
@btn-background: #fff;
|
@btn-background: #fafafa;
|
||||||
@btn-background-highlight: darken(#fff, 10%);
|
@btn-background-highlight: darken(@btn-background, 10%);
|
||||||
@btn-border: #bbb;
|
@btn-border: #bbb;
|
||||||
|
|
||||||
@btn-backround-primary: @link-color;
|
@btn-backround-primary: @link-color;
|
||||||
|
|
Loading…
Reference in a new issue