Skip to content
GitLab
Explore
Projects
Groups
Snippets
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
750badab
Commit
750badab
authored
12 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
copy edits and tweaks to utility classes to ensure they always are specific enough
parent
463de252
7 merge requests
!4427
Use variable for desktop media query
,
!4258
Aria
,
!4248
Amended mentions of 'javascript' to the correct 'JavaScript'
,
!4235
Patch 1
,
!4232
Fixing the modal z-index issue + make modal stacking possible
,
!4213
2.1.0 wip
,
!4165
Patch 2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
docs/assets/css/bootstrap.css
+2
-2
docs/assets/css/bootstrap.css
docs/assets/css/docs.css
+4
-0
docs/assets/css/docs.css
docs/extend.html
+1
-1
docs/extend.html
docs/templates/layout.mustache
+1
-1
docs/templates/layout.mustache
less/utilities.less
+3
-2
less/utilities.less
with
11 additions
and
6 deletions
+11
-6
docs/assets/css/bootstrap.css
+
2
-
2
View file @
750badab
...
...
@@ -5408,11 +5408,11 @@ a.badge:hover {
}
.hide
{
display
:
none
;
display
:
none
!important
;
}
.show
{
display
:
block
;
display
:
block
!important
;
}
.invisible
{
...
...
This diff is collapsed.
Click to expand it.
docs/assets/css/docs.css
+
4
-
0
View file @
750badab
...
...
@@ -57,6 +57,10 @@ body > .navbar-fixed-top .brand:hover {
section
{
padding-top
:
60px
;
}
section
>
.page-header
,
section
>
.lead
{
color
:
#5a5a5a
;
}
/* Separators (hr) */
.bs-docs-separator
{
...
...
This diff is collapsed.
Click to expand it.
docs/extend.html
+
1
-
1
View file @
750badab
...
...
@@ -60,7 +60,7 @@
<li
class=
""
>
<a
href=
"./javascript.html"
>
Javascript
</a>
</li>
<li
class=
""
>
<li
class=
"
active
"
>
<a
href=
"./extend.html"
>
Extend
</a>
</li>
</ul>
...
...
This diff is collapsed.
Click to expand it.
docs/templates/layout.mustache
+
1
-
1
View file @
750badab
...
...
@@ -72,7 +72,7 @@
<li
class=
"
{{
javascript
}}
"
>
<a
href=
"./javascript.html"
>
{{
_i
}}
Javascript
{{/
i
}}
</a>
</li>
<li
class=
"
{{
less
}}
"
>
<li
class=
"
{{
extend
}}
"
>
<a
href=
"./extend.html"
>
{{
_i
}}
Extend
{{/
i
}}
</a>
</li>
</ul>
...
...
This diff is collapsed.
Click to expand it.
less/utilities.less
+
3
-
2
View file @
750badab
...
...
@@ -12,11 +12,12 @@
}
// Toggling content
// Uses `!important` for proper specifity over things like form controls
.hide {
display: none;
display: none
!important
;
}
.show {
display: block;
display: block
!important
;
}
// Visibility
...
...
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
Menu
Explore
Projects
Groups
Snippets