mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-17 09:52:29 +01:00
copy edits and tweaks to utility classes to ensure they always are specific enough
This commit is contained in:
parent
463de252a9
commit
750badabf7
4
docs/assets/css/bootstrap.css
vendored
4
docs/assets/css/bootstrap.css
vendored
@ -5408,11 +5408,11 @@ a.badge:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.hide {
|
.hide {
|
||||||
display: none;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.show {
|
.show {
|
||||||
display: block;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.invisible {
|
.invisible {
|
||||||
|
@ -57,6 +57,10 @@ body > .navbar-fixed-top .brand:hover {
|
|||||||
section {
|
section {
|
||||||
padding-top: 60px;
|
padding-top: 60px;
|
||||||
}
|
}
|
||||||
|
section > .page-header,
|
||||||
|
section > .lead {
|
||||||
|
color: #5a5a5a;
|
||||||
|
}
|
||||||
|
|
||||||
/* Separators (hr) */
|
/* Separators (hr) */
|
||||||
.bs-docs-separator {
|
.bs-docs-separator {
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
<li class="">
|
<li class="">
|
||||||
<a href="./javascript.html">Javascript</a>
|
<a href="./javascript.html">Javascript</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="">
|
<li class="active">
|
||||||
<a href="./extend.html">Extend</a>
|
<a href="./extend.html">Extend</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
2
docs/templates/layout.mustache
vendored
2
docs/templates/layout.mustache
vendored
@ -72,7 +72,7 @@
|
|||||||
<li class="{{javascript}}">
|
<li class="{{javascript}}">
|
||||||
<a href="./javascript.html">{{_i}}Javascript{{/i}}</a>
|
<a href="./javascript.html">{{_i}}Javascript{{/i}}</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="{{less}}">
|
<li class="{{extend}}">
|
||||||
<a href="./extend.html">{{_i}}Extend{{/i}}</a>
|
<a href="./extend.html">{{_i}}Extend{{/i}}</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -12,11 +12,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Toggling content
|
// Toggling content
|
||||||
|
// Uses `!important` for proper specifity over things like form controls
|
||||||
.hide {
|
.hide {
|
||||||
display: none;
|
display: none !important;
|
||||||
}
|
}
|
||||||
.show {
|
.show {
|
||||||
display: block;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Visibility
|
// Visibility
|
||||||
|
Loading…
x
Reference in New Issue
Block a user