mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-18 15:54:26 +01:00
Merge branch 'brand-link' of https://github.com/ctalkington/bootstrap into ctalkington-brand-link
Conflicts: docs/assets/bootstrap.zip
This commit is contained in:
commit
b59cb505f8
Binary file not shown.
8
docs/assets/css/bootstrap-responsive.css
vendored
8
docs/assets/css/bootstrap-responsive.css
vendored
@ -19,9 +19,11 @@
|
|||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
.hide-text {
|
.hide-text {
|
||||||
overflow: hidden;
|
border: 0;
|
||||||
text-indent: 100%;
|
font: 0/0 a;
|
||||||
white-space: nowrap;
|
text-shadow: none;
|
||||||
|
color: transparent;
|
||||||
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
.input-block-level {
|
.input-block-level {
|
||||||
display: block;
|
display: block;
|
||||||
|
10
docs/assets/css/bootstrap.css
vendored
10
docs/assets/css/bootstrap.css
vendored
@ -113,9 +113,11 @@ textarea {
|
|||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
.hide-text {
|
.hide-text {
|
||||||
overflow: hidden;
|
border: 0;
|
||||||
text-indent: 100%;
|
font: 0/0 a;
|
||||||
white-space: nowrap;
|
text-shadow: none;
|
||||||
|
color: transparent;
|
||||||
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
.input-block-level {
|
.input-block-level {
|
||||||
display: block;
|
display: block;
|
||||||
@ -2866,7 +2868,7 @@ input[type="submit"].btn.btn-mini {
|
|||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
color: #ffffff;
|
color: #999999;
|
||||||
}
|
}
|
||||||
.navbar .navbar-text {
|
.navbar .navbar-text {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
@ -335,6 +335,8 @@
|
|||||||
<input type="text" class="span3" placeholder="darken(@navbarSearchBackground, 30%)">
|
<input type="text" class="span3" placeholder="darken(@navbarSearchBackground, 30%)">
|
||||||
<label>@navbarSearchPlaceholderColor</label>
|
<label>@navbarSearchPlaceholderColor</label>
|
||||||
<input type="text" class="span3" placeholder="#ccc">
|
<input type="text" class="span3" placeholder="#ccc">
|
||||||
|
<label>@navbarBrandColor</label>
|
||||||
|
<input type="text" class="span3" placeholder="@navbarLinkColor">
|
||||||
|
|
||||||
<h3>Dropdowns</h3>
|
<h3>Dropdowns</h3>
|
||||||
<label>@dropdownBackground</label>
|
<label>@dropdownBackground</label>
|
||||||
|
2
docs/templates/pages/download.mustache
vendored
2
docs/templates/pages/download.mustache
vendored
@ -259,6 +259,8 @@
|
|||||||
<input type="text" class="span3" placeholder="darken(@navbarSearchBackground, 30%)">
|
<input type="text" class="span3" placeholder="darken(@navbarSearchBackground, 30%)">
|
||||||
<label>@navbarSearchPlaceholderColor</label>
|
<label>@navbarSearchPlaceholderColor</label>
|
||||||
<input type="text" class="span3" placeholder="#ccc">
|
<input type="text" class="span3" placeholder="#ccc">
|
||||||
|
<label>@navbarBrandColor</label>
|
||||||
|
<input type="text" class="span3" placeholder="@navbarLinkColor">
|
||||||
|
|
||||||
<h3>{{_i}}Dropdowns{{/i}}</h3>
|
<h3>{{_i}}Dropdowns{{/i}}</h3>
|
||||||
<label>@dropdownBackground</label>
|
<label>@dropdownBackground</label>
|
||||||
|
@ -98,13 +98,15 @@
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
// New image replacement
|
// CSS image replacement
|
||||||
// -------------------------
|
// -------------------------
|
||||||
// Source: http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/
|
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
|
||||||
.hide-text {
|
.hide-text {
|
||||||
overflow: hidden;
|
border: 0;
|
||||||
text-indent: 100%;
|
font: 0/0 a;
|
||||||
white-space: nowrap;
|
text-shadow: none;
|
||||||
|
color: transparent;
|
||||||
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@
|
|||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
color: @white;
|
color: @navbarBrandColor;
|
||||||
}
|
}
|
||||||
// Plain text in topbar
|
// Plain text in topbar
|
||||||
.navbar-text {
|
.navbar-text {
|
||||||
|
@ -154,6 +154,7 @@
|
|||||||
@navbarSearchBackgroundFocus: @white;
|
@navbarSearchBackgroundFocus: @white;
|
||||||
@navbarSearchBorder: darken(@navbarSearchBackground, 30%);
|
@navbarSearchBorder: darken(@navbarSearchBackground, 30%);
|
||||||
@navbarSearchPlaceholderColor: #ccc;
|
@navbarSearchPlaceholderColor: #ccc;
|
||||||
|
@navbarBrandColor: @navbarLinkColor;
|
||||||
|
|
||||||
|
|
||||||
// Hero unit
|
// Hero unit
|
||||||
|
Loading…
x
Reference in New Issue
Block a user