Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
f4d3d7da
Commit
f4d3d7da
authored
12 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
ensure 100% width for .uneditable-inputs in <767px viewports
parent
a4bf6ef0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
docs/assets/css/bootstrap-responsive.css
+1
-0
docs/assets/css/bootstrap-responsive.css
docs/assets/css/bootstrap.css
+1
-0
docs/assets/css/bootstrap.css
less/forms.less
+1
-0
less/forms.less
less/responsive-767px-max.less
+1
-0
less/responsive-767px-max.less
less/tests/forms-responsive.html
+71
-0
less/tests/forms-responsive.html
with
75 additions
and
0 deletions
+75
-0
docs/assets/css/bootstrap-responsive.css
+
1
-
0
View file @
f4d3d7da
...
...
@@ -820,6 +820,7 @@
margin-left
:
0
;
}
[
class
*=
"span"
],
.uneditable-input
[
class
*=
"span"
],
.row-fluid
[
class
*=
"span"
]
{
display
:
block
;
float
:
none
;
...
...
This diff is collapsed.
Click to expand it.
docs/assets/css/bootstrap.css
+
1
-
0
View file @
f4d3d7da
...
...
@@ -992,6 +992,7 @@ input[type="color"],
font-size
:
14px
;
line-height
:
20px
;
color
:
#555555
;
vertical-align
:
middle
;
-webkit-border-radius
:
4px
;
-moz-border-radius
:
4px
;
border-radius
:
4px
;
...
...
This diff is collapsed.
Click to expand it.
less/forms.less
+
1
-
0
View file @
f4d3d7da
...
...
@@ -86,6 +86,7 @@ input[type="color"],
line-height: @baseLineHeight;
color: @gray;
.border-radius(@inputBorderRadius);
vertical-align: middle;
}
// Reset appearance properties for textual inputs and textarea
...
...
This diff is collapsed.
Click to expand it.
less/responsive-767px-max.less
+
1
-
0
View file @
f4d3d7da
...
...
@@ -58,6 +58,7 @@
}
// Make all grid-sized elements block level again
[class*="span"],
.uneditable-input[class*="span"], // Makes uneditable inputs full-width when using grid sizing
.row-fluid [class*="span"] {
float: none;
display: block;
...
...
This diff is collapsed.
Click to expand it.
less/tests/forms-responsive.html
0 → 100644
+
71
-
0
View file @
f4d3d7da
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<title>
Bootstrap, from Twitter
</title>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"description"
content=
""
>
<meta
name=
"author"
content=
""
>
<!-- Le styles -->
<link
href=
"../../docs/assets/css/bootstrap.css"
rel=
"stylesheet"
>
<link
href=
"../../docs/assets/css/bootstrap-responsive.css"
rel=
"stylesheet"
>
<style>
body
{
padding-top
:
30px
;
padding-bottom
:
30px
;
}
</style>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link
rel=
"shortcut icon"
href=
"../../docs/assets/ico/favicon.ico"
>
<link
rel=
"apple-touch-icon-precomposed"
sizes=
"144x144"
href=
"../../docs/assets/ico/apple-touch-icon-144-precomposed.png"
>
<link
rel=
"apple-touch-icon-precomposed"
sizes=
"114x114"
href=
"../../docs/assets/ico/apple-touch-icon-114-precomposed.png"
>
<link
rel=
"apple-touch-icon-precomposed"
sizes=
"72x72"
href=
"../../docs/assets/ico/apple-touch-icon-72-precomposed.png"
>
<link
rel=
"apple-touch-icon-precomposed"
href=
"../../docs/assets/ico/apple-touch-icon-57-precomposed.png"
>
</head>
<body>
<form
class=
"container"
>
<div
class=
"page-header"
>
<h1>
Fixed grid
</h1>
</div>
<h3>
Vertical alignment
</h3>
<input
type=
"text"
class=
"span2"
placeholder=
"span2"
>
<select
class=
"span2"
><option>
span2
</option></select>
<span
class=
"uneditable-input span2"
>
span1
</span>
<h3>
Width across elements
</h3>
<div>
<input
type=
"text"
class=
"span2"
placeholder=
"span2"
>
</div>
<div>
<select
class=
"span2"
><option>
span2
</option></select>
</div>
<div>
<span
class=
"uneditable-input span2"
>
span2
</span>
</div>
<div
class=
"page-header"
>
<h1>
Fluid grid
</h1>
</div>
<div
class=
"row-fluid"
>
<input
type=
"text"
class=
"span2"
placeholder=
"span2"
>
<select
class=
"span2"
><option>
span2
</option></select>
<span
class=
"uneditable-input span2"
>
span1
</span>
</div>
</form>
<!-- /container -->
</body>
</html>
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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