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
c8f4325c
Commit
c8f4325c
authored
13 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
remove text indent on carets (not needed) and add inline replacement mixin
parent
67714d83
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
docs/assets/bootstrap.zip
+0
-0
docs/assets/bootstrap.zip
docs/assets/css/bootstrap-responsive.css
+5
-0
docs/assets/css/bootstrap-responsive.css
docs/assets/css/bootstrap.css
+9
-0
docs/assets/css/bootstrap.css
less/buttons.less
+1
-0
less/buttons.less
less/mixins.less
+8
-1
less/mixins.less
with
23 additions
and
1 deletion
+23
-1
docs/assets/bootstrap.zip
+
0
-
0
View file @
c8f4325c
No preview for this file type
This diff is collapsed.
Click to expand it.
docs/assets/css/bootstrap-responsive.css
+
5
-
0
View file @
c8f4325c
...
...
@@ -18,6 +18,11 @@
.clearfix
:after
{
clear
:
both
;
}
.hide-text
{
overflow
:
hidden
;
text-indent
:
100%
;
white-space
:
nowrap
;
}
.hidden
{
display
:
none
;
visibility
:
hidden
;
...
...
This diff is collapsed.
Click to expand it.
docs/assets/css/bootstrap.css
+
9
-
0
View file @
c8f4325c
...
...
@@ -112,6 +112,11 @@ textarea {
.clearfix
:after
{
clear
:
both
;
}
.hide-text
{
overflow
:
hidden
;
text-indent
:
100%
;
white-space
:
nowrap
;
}
body
{
margin
:
0
;
font-family
:
"Helvetica Neue"
,
Helvetica
,
Arial
,
sans-serif
;
...
...
@@ -1930,6 +1935,10 @@ table .span24 {
}
.btn
{
display
:
inline-block
;
*
display
:
inline
;
/* IE7 inline-block hack */
*
zoom
:
1
;
padding
:
4px
10px
4px
;
margin-bottom
:
0
;
font-size
:
13px
;
...
...
This diff is collapsed.
Click to expand it.
less/buttons.less
+
1
-
0
View file @
c8f4325c
...
...
@@ -8,6 +8,7 @@
// Core
.btn {
display: inline-block;
.ie7-inline-block();
padding: 4px 10px 4px;
margin-bottom: 0; // For input.btn
font-size: @baseFontSize;
...
...
This diff is collapsed.
Click to expand it.
less/mixins.less
+
8
-
1
View file @
c8f4325c
...
...
@@ -98,7 +98,14 @@
white-space: nowrap;
}
// New image replacement
// -------------------------
// Source: http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/
.hide-text {
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
}
// FONTS
// --------------------------------------------------
...
...
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