Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
29b1e86b
Commit
29b1e86b
authored
Jan 28, 2012
by
Jacob Thornton
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.0-wip' of
https://github.com/twitter/bootstrap
into 2.0-wip
parents
616cbf93
9db4f2a3
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
50 additions
and
2 deletions
+50
-2
docs/assets/css/bootstrap-responsive.css
docs/assets/css/bootstrap-responsive.css
+27
-0
docs/components.html
docs/components.html
+1
-1
docs/templates/pages/components.mustache
docs/templates/pages/components.mustache
+1
-1
less/progress-bars.less
less/progress-bars.less
+1
-0
less/responsive.less
less/responsive.less
+20
-0
No files found.
docs/assets/css/bootstrap-responsive.css
View file @
29b1e86b
...
...
@@ -7,6 +7,33 @@
display
:
block
;
line-height
:
18px
;
}
input
[
class
*=
"span"
],
select
[
class
*=
"span"
],
textarea
[
class
*=
"span"
],
.uneditable-input
{
display
:
block
;
width
:
100%
;
height
:
28px
;
/* Make inputs at least the height of their button counterpart */
/* Makes inputs behave like true block-level elements */
-webkit-box-sizing
:
border-box
;
/* Older Webkit */
-moz-box-sizing
:
border-box
;
/* Older FF */
-ms-box-sizing
:
border-box
;
/* IE8 */
box-sizing
:
border-box
;
/* CSS3 spec*/
}
.input-prepend
input
[
class
*=
"span"
],
.input-append
input
[
class
*=
"span"
]
{
width
:
auto
;
}
input
[
type
=
"checkbox"
],
input
[
type
=
"radio"
]
{
border
:
1px
solid
#ccc
;
}
...
...
docs/components.html
View file @
29b1e86b
...
...
@@ -564,7 +564,7 @@
</ul>
</div>
<!-- /tabbable -->
<pre
class=
"prettyprint linenums"
style=
"margin-top: 11px;"
>
<
div class="tabbable tabs-b
ottom
"
>
<
div class="tabbable tabs-b
elow
"
>
<
ul class="nav tabs"
>
...
<
/ul
>
...
...
docs/templates/pages/components.mustache
View file @
29b1e86b
...
...
@@ -499,7 +499,7 @@
</ul>
</div>
<!-- /tabbable -->
<pre
class=
"prettyprint linenums"
style=
"margin-top: 11px;"
>
<
div class="tabbable tabs-b
ottom
"
>
<
div class="tabbable tabs-b
elow
"
>
<
ul class="nav tabs"
>
...
<
/ul
>
...
...
less/progress-bars.less
View file @
29b1e86b
...
...
@@ -11,6 +11,7 @@
to { background-position: 40px 0; }
}
// Firefox
@-moz-keyframes progress-bar-stripes {
from { background-position: 0 0; }
to { background-position: 40px 0; }
...
...
less/responsive.less
View file @
29b1e86b
...
...
@@ -33,6 +33,26 @@
line-height: @baseLineHeight;
}
// Make span* classes full width
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input {
display: block;
width: 100%;
height: 28px; /* Make inputs at least the height of their button counterpart */
/* Makes inputs behave like true block-level elements */
-webkit-box-sizing: border-box; /* Older Webkit */
-moz-box-sizing: border-box; /* Older FF */
-ms-box-sizing: border-box; /* IE8 */
box-sizing: border-box; /* CSS3 spec*/
}
// But don't let it screw up prepend/append inputs
.input-prepend input[class*="span"],
.input-append input[class*="span"] {
width: auto;
}
// Update checkboxes for iOS
input[type="checkbox"],
input[type="radio"] {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment