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
f706acb1
Commit
f706acb1
authored
12 years ago
by
Mark Otto
Browse files
Options
Download
Email Patches
Plain Diff
Fixes
#6339
: Use important flag on .hide and .show utility classes
parent
c00f29e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/assets/css/bootstrap.css
+2
-2
docs/assets/css/bootstrap.css
less/utilities.less
+2
-2
less/utilities.less
with
4 additions
and
4 deletions
+4
-4
docs/assets/css/bootstrap.css
+
2
-
2
View file @
f706acb1
...
...
@@ -6053,11 +6053,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.
less/utilities.less
+
2
-
2
View file @
f706acb1
...
...
@@ -13,10 +13,10 @@
// Toggling content
.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