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
16d12396
Commit
16d12396
authored
Feb 19, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify text color in navbar by placing the color on global .navbar component
parent
1948e985
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
11 deletions
+5
-11
docs/assets/bootstrap.zip
docs/assets/bootstrap.zip
+0
-0
docs/assets/css/bootstrap.css
docs/assets/css/bootstrap.css
+3
-5
docs/templates/pages/javascript.mustache
docs/templates/pages/javascript.mustache
+1
-1
less/navbar.less
less/navbar.less
+1
-5
No files found.
docs/assets/bootstrap.zip
View file @
16d12396
No preview for this file type
docs/assets/css/bootstrap.css
View file @
16d12396
...
@@ -2510,6 +2510,9 @@ button.btn.small, input[type="submit"].btn.small {
...
@@ -2510,6 +2510,9 @@ button.btn.small, input[type="submit"].btn.small {
.nav-collapse.collapse
{
.nav-collapse.collapse
{
height
:
auto
;
height
:
auto
;
}
}
.navbar
{
color
:
#999999
;
}
.navbar
.brand
:hover
{
.navbar
.brand
:hover
{
text-decoration
:
none
;
text-decoration
:
none
;
}
}
...
@@ -2526,11 +2529,6 @@ button.btn.small, input[type="submit"].btn.small {
...
@@ -2526,11 +2529,6 @@ button.btn.small, input[type="submit"].btn.small {
.navbar
.navbar-text
{
.navbar
.navbar-text
{
margin-bottom
:
0
;
margin-bottom
:
0
;
line-height
:
40px
;
line-height
:
40px
;
color
:
#999999
;
}
.navbar
.navbar-text
a
:hover
{
color
:
#ffffff
;
background-color
:
transparent
;
}
}
.navbar
.btn
,
.navbar
.btn-group
{
.navbar
.btn
,
.navbar
.btn-group
{
margin-top
:
5px
;
margin-top
:
5px
;
...
...
docs/templates/pages/javascript.mustache
View file @
16d12396
...
@@ -1244,7 +1244,7 @@ $('#myCollapsible').on('hidden', function () {
...
@@ -1244,7 +1244,7 @@ $('#myCollapsible').on('hidden', function () {
<h4>
.carousel(
{{
_i
}}
options
{{/
i
}}
)
</h4>
<h4>
.carousel(
{{
_i
}}
options
{{/
i
}}
)
</h4>
<p>
{{
_i
}}
Initializes the carousel with an optional options
<code>
object
</code>
and starts cycling through items.
{{/
i
}}
</p>
<p>
{{
_i
}}
Initializes the carousel with an optional options
<code>
object
</code>
and starts cycling through items.
{{/
i
}}
</p>
<pre
class=
"prettyprint linenums"
>
<pre
class=
"prettyprint linenums"
>
$('.
myC
arousel').carousel({
$('.
c
arousel').carousel({
interval: 2000
interval: 2000
})
})
</pre>
</pre>
...
...
less/navbar.less
View file @
16d12396
...
@@ -50,6 +50,7 @@
...
@@ -50,6 +50,7 @@
// Brand, links, text, and buttons
// Brand, links, text, and buttons
.navbar {
.navbar {
color: @navbarText;
// Hover and active states
// Hover and active states
.brand:hover {
.brand:hover {
text-decoration: none;
text-decoration: none;
...
@@ -69,11 +70,6 @@
...
@@ -69,11 +70,6 @@
.navbar-text {
.navbar-text {
margin-bottom: 0;
margin-bottom: 0;
line-height: 40px;
line-height: 40px;
color: @navbarText;
a:hover {
color: @white;
background-color: transparent;
}
}
}
// Buttons in navbar
// Buttons in navbar
.btn,
.btn,
...
...
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