Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
4b7f63a3
Commit
4b7f63a3
authored
Jul 20, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update vars for badges, breadcrumbs; update customize page
parent
72d913ba
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
55 additions
and
7 deletions
+55
-7
_config.yml
_config.yml
+1
-1
customize.html
customize.html
+46
-1
dist/css/bootstrap.css
dist/css/bootstrap.css
+1
-1
dist/css/bootstrap.min.css
dist/css/bootstrap.min.css
+1
-1
less/badges.less
less/badges.less
+2
-2
less/variables.less
less/variables.less
+4
-1
No files found.
_config.yml
View file @
4b7f63a3
...
...
@@ -7,5 +7,5 @@ permalink: pretty
# Server
destination
:
./_gh_pages
exclude
:
[
"
.editorconfig"
,
"
.gitignore"
,
"
.ruby-version"
,
"
bower.json"
,
"
composer.json"
,
"
CONTRIBUTING.md"
,
"
LICENSE"
,
"
Makefile"
,
"
package.json"
,
"
node_modules"
,
"
README.md"
]
exclude
:
[
"
.editorconfig"
,
"
.gitignore"
,
"
.ruby-version"
,
"
bower.json"
,
"
composer.json"
,
"
CONTRIBUTING.md"
,
"
LICENSE"
,
"
Makefile"
,
"
package.json"
,
"
node_modules"
,
"
README.md"
,
"
less"
,
"
js"
]
port
:
9001
customize.html
View file @
4b7f63a3
...
...
@@ -744,7 +744,6 @@ lead: Customize Bootstrap's components, LESS variables, and jQuery plugins to ge
<label>
@table-bg
</label>
<input
type=
"text"
placeholder=
"transparent"
>
<p
class=
"help-block"
>
Default background color used for all tables.
</p>
<label>
@table-bg-accent
</label>
<input
type=
"text"
placeholder=
"#f9f9f9"
>
<p
class=
"help-block"
>
Background color used for
<code>
.table-striped
</code>
.
</p>
...
...
@@ -910,6 +909,52 @@ lead: Customize Bootstrap's components, LESS variables, and jQuery plugins to ge
<label>
@well-bg
</label>
<input
type=
"text"
placeholder=
"#f5f5f5"
>
<h3>
Accordion
</h3>
<label>
@accordion-border-bg
</label>
<input
type=
"text"
placeholder=
"#e5e5e5"
>
<h3>
Badges
</h3>
<div
class=
"row"
>
<div
class=
"col-lg-6"
>
<label>
@badge-color
</label>
<input
type=
"text"
placeholder=
"#fff"
>
<p>
Badge text color
</p>
<label>
@badge-bg
</label>
<input
type=
"text"
placeholder=
"@gray-lighter"
>
<p>
Badge background color
</p>
<label>
@badge-link-hover-color
</label>
<input
type=
"text"
placeholder=
"#fff"
>
<p>
Linked badge text color on hover
</p>
</div>
<div
class=
"col-lg-6"
>
<label>
@badge-active-color
</label>
<input
type=
"text"
placeholder=
"@link-color"
>
<p>
Badge text color in active nav link
</p>
<label>
@badge-active-bg
</label>
<input
type=
"text"
placeholder=
"#fff"
>
<p>
Badge text color in active nav link
</p>
</div>
</div>
<h3>
Breadcrumbs
</h3>
<div
class=
"row"
>
<div
class=
"col-lg-4"
>
<label>
@breadcrumb-color
</label>
<input
type=
"text"
placeholder=
"#ccc"
>
<p>
Breadcrumb text color
</p>
</div>
<div
class=
"col-lg-4"
>
<label>
@breadcrumb-bg
</label>
<input
type=
"text"
placeholder=
"#f5f5f5"
>
<p>
Breadcrumb background color
</p>
</div>
<div
class=
"col-lg-4"
>
<label>
@breadcrumb-active-color
</label>
<input
type=
"text"
placeholder=
"@gray-light"
>
<p>
Text color of current page in the breadcrumb
</p>
</div>
</div>
<h2
id=
"variables-jumbotron"
>
Jumbotron
</h2>
<div
class=
"row"
>
<div
class=
"col-lg-4"
>
...
...
dist/css/bootstrap.css
View file @
4b7f63a3
...
...
@@ -4087,7 +4087,7 @@ a.thumbnail:focus {
text-align
:
center
;
white-space
:
nowrap
;
vertical-align
:
middle
;
background-color
:
#
999999
;
background-color
:
#
f5f5f5
;
border-radius
:
10px
;
}
...
...
dist/css/bootstrap.min.css
View file @
4b7f63a3
This source diff could not be displayed because it is too large. You can
view the blob
instead.
less/badges.less
View file @
4b7f63a3
...
...
@@ -15,7 +15,7 @@
vertical-align: middle;
white-space: nowrap;
text-align: center;
background-color: @
gray-light
;
background-color: @
badge-bg
;
border-radius: 10px;
// Empty labels/badges collapse
...
...
@@ -43,7 +43,7 @@ a.badge {
// Account for counters in navs
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: @
link
-color;
color: @
badge-active
-color;
background-color: @badge-active-bg;
}
.nav-pills > li > a > .badge {
...
...
less/variables.less
View file @
4b7f63a3
...
...
@@ -377,9 +377,12 @@
// Badges
// -------------------------
@badge-color: #fff;
@badge-active-bg: #fff;
@badge-link-hover-color: #fff;
@badge-bg: #f5f5f5;
@badge-active-color: @link-color;
@badge-active-bg: #fff;
// Breadcrumbs
// -------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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