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
f3479a39
Commit
f3479a39
authored
Aug 14, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compensate for ie7 button padding with no borders, fix indentation
parent
f933a41c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
7 deletions
+8
-7
docs/assets/css/bootstrap.css
docs/assets/css/bootstrap.css
+2
-2
docs/base-css.html
docs/base-css.html
+1
-1
docs/templates/pages/base-css.mustache
docs/templates/pages/base-css.mustache
+1
-1
less/buttons.less
less/buttons.less
+3
-2
less/mixins.less
less/mixins.less
+1
-1
No files found.
docs/assets/css/bootstrap.css
View file @
f3479a39
...
...
@@ -3253,8 +3253,8 @@ button.close {
button
.btn
,
input
[
type
=
"submit"
]
.btn
{
*
padding-top
:
2
px
;
*
padding-bottom
:
2
px
;
*
padding-top
:
3
px
;
*
padding-bottom
:
3
px
;
}
button
.btn
::-moz-focus-inner
,
...
...
docs/base-css.html
View file @
f3479a39
...
...
@@ -1257,7 +1257,7 @@ For example, <code>section</code> should be wrapped as inline.
<span
class=
"input-xlarge uneditable-input"
>
Some value here
</span>
</form>
<pre
class=
"prettyprint linenums"
>
<
span class="input-xlarge uneditable-input"
>
Some value here
<
/span
>
<
span class="input-xlarge uneditable-input"
>
Some value here
<
/span
>
</pre>
<h3>
Form actions
</h3>
...
...
docs/templates/pages/base-css.mustache
View file @
f3479a39
...
...
@@ -1194,7 +1194,7 @@
<span
class=
"input-xlarge uneditable-input"
>
Some value here
</span>
</form>
<pre
class=
"prettyprint linenums"
>
<
span class="input-xlarge uneditable-input"
>
Some value here
<
/span
>
<
span class="input-xlarge uneditable-input"
>
Some value here
<
/span
>
</pre>
<h3>
{{
_i
}}
Form actions
{{/
i
}}
</h3>
...
...
less/buttons.less
View file @
f3479a39
...
...
@@ -170,8 +170,9 @@ input[type="submit"].btn {
}
// IE7 has some default padding on button controls
*padding-top: 2px;
*padding-bottom: 2px;
*padding-top: 3px;
*padding-bottom: 3px;
&.btn-large {
*padding-top: 7px;
*padding-bottom: 7px;
...
...
less/mixins.less
View file @
f3479a39
...
...
@@ -605,7 +605,7 @@
.offset (@columns) {
margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) + (@fluidGridGutterWidth*2);
*margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) - (.5 / @gridRowWidth * 100 * 1%) + (@fluidGridGutterWidth*2) - (.5 / @gridRowWidth * 100 * 1%);
*margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) - (.5 / @gridRowWidth * 100 * 1%) + (@fluidGridGutterWidth*2) - (.5 / @gridRowWidth * 100 * 1%);
}
.offsetFirstChild (@columns) {
...
...
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