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
b86e1fb6
Commit
b86e1fb6
authored
Aug 17, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
additional navbar contrast: add inset shadow since we nuked the border
parent
b8715ddf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
docs/assets/css/bootstrap.css
docs/assets/css/bootstrap.css
+6
-6
less/navbar.less
less/navbar.less
+2
-2
No files found.
docs/assets/css/bootstrap.css
View file @
b86e1fb6
...
@@ -4171,9 +4171,9 @@ input[type="submit"].btn.btn-mini {
...
@@ -4171,9 +4171,9 @@ input[type="submit"].btn.btn-mini {
}
}
.navbar-fixed-top
.navbar-inner
{
.navbar-fixed-top
.navbar-inner
{
-webkit-box-shadow
:
0
1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
-webkit-box-shadow
:
inset
0
-1px
0
rgba
(
0
,
0
,
0
,
0.1
),
0
1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
-moz-box-shadow
:
0
1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
-moz-box-shadow
:
inset
0
-1px
0
rgba
(
0
,
0
,
0
,
0.1
),
0
1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
0
1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
inset
0
-1px
0
rgba
(
0
,
0
,
0
,
0.1
),
0
1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
}
.navbar-fixed-bottom
{
.navbar-fixed-bottom
{
...
@@ -4181,9 +4181,9 @@ input[type="submit"].btn.btn-mini {
...
@@ -4181,9 +4181,9 @@ input[type="submit"].btn.btn-mini {
}
}
.navbar-fixed-bottom
.navbar-inner
{
.navbar-fixed-bottom
.navbar-inner
{
-webkit-box-shadow
:
0
-1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
-webkit-box-shadow
:
inset
0
1px
0
rgba
(
0
,
0
,
0
,
0.1
),
0
-1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
-moz-box-shadow
:
0
-1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
-moz-box-shadow
:
inset
0
1px
0
rgba
(
0
,
0
,
0
,
0.1
),
0
-1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
0
-1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
box-shadow
:
inset
0
1px
0
rgba
(
0
,
0
,
0
,
0.1
),
0
-1px
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
}
.navbar
.nav
{
.navbar
.nav
{
...
...
less/navbar.less
View file @
b86e1fb6
...
@@ -172,7 +172,7 @@
...
@@ -172,7 +172,7 @@
.navbar-fixed-top {
.navbar-fixed-top {
top: 0;
top: 0;
.navbar-inner {
.navbar-inner {
.box-shadow(
0 1px 10px rgba(0,0,0,.1)
);
.box-shadow(
~"inset 0 -1px 0 rgba(0,0,0,.1), 0 1px 10px rgba(0,0,0,.1)"
);
}
}
}
}
...
@@ -180,7 +180,7 @@
...
@@ -180,7 +180,7 @@
.navbar-fixed-bottom {
.navbar-fixed-bottom {
bottom: 0;
bottom: 0;
.navbar-inner {
.navbar-inner {
.box-shadow(
0 -1px 10px rgba(0,0,0,.1)
);
.box-shadow(
~"inset 0 1px 0 rgba(0,0,0,.1), 0 -1px 10px rgba(0,0,0,.1)"
);
}
}
}
}
...
...
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