mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-10 15:50:58 +00:00
fixes #9969: add support for output element
This commit is contained in:
parent
802e5caf51
commit
9733a998e2
3 changed files with 19 additions and 1 deletions
9
dist/css/bootstrap.css
vendored
9
dist/css/bootstrap.css
vendored
|
|
@ -1689,6 +1689,15 @@ input[type="number"]::-webkit-inner-spin-button {
|
|||
height: auto;
|
||||
}
|
||||
|
||||
output {
|
||||
display: block;
|
||||
padding-top: 7px;
|
||||
font-size: 14px;
|
||||
line-height: 1.428571429;
|
||||
color: #555555;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.form-control:-moz-placeholder {
|
||||
color: #999999;
|
||||
}
|
||||
|
|
|
|||
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
|
|
@ -82,6 +82,15 @@ input[type="number"] {
|
|||
}
|
||||
}
|
||||
|
||||
// Adjust output element
|
||||
output {
|
||||
display: block;
|
||||
padding-top: (@padding-base-vertical + 1);
|
||||
font-size: @font-size-base;
|
||||
line-height: @line-height-base;
|
||||
color: @input-color;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
// Placeholder
|
||||
//
|
||||
|
|
|
|||
Loading…
Reference in a new issue