Commit 750badab authored by Mark Otto's avatar Mark Otto
Browse files

copy edits and tweaks to utility classes to ensure they always are specific enough

parent 463de252
7 merge requests!4427Use variable for desktop media query,!4258Aria,!4248Amended mentions of 'javascript' to the correct 'JavaScript',!4235Patch 1,!4232Fixing the modal z-index issue + make modal stacking possible,!42132.1.0 wip,!4165Patch 2
Showing with 11 additions and 6 deletions
+11 -6
......@@ -5408,11 +5408,11 @@ a.badge:hover {
}
.hide {
display: none;
display: none !important;
}
.show {
display: block;
display: block !important;
}
.invisible {
......
......@@ -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 {
......
......@@ -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>
......
......@@ -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>
......
......@@ -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
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment