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
87ce3489
Commit
87ce3489
authored
Jul 29, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove gradient, border, and box-shadow from .breadcrumb to differentiate from nav and buttons
parent
761429d8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
21 deletions
+8
-21
docs/assets/css/bootstrap.css
docs/assets/css/bootstrap.css
+5
-16
less/breadcrumbs.less
less/breadcrumbs.less
+3
-5
No files found.
docs/assets/css/bootstrap.css
View file @
87ce3489
...
@@ -4449,24 +4449,13 @@ input[type="submit"].btn.btn-mini {
...
@@ -4449,24 +4449,13 @@ input[type="submit"].btn.btn-mini {
}
}
.breadcrumb
{
.breadcrumb
{
padding
:
7px
14
px
;
padding
:
8px
15
px
;
margin
:
0
0
20px
;
margin
:
0
0
20px
;
list-style
:
none
;
list-style
:
none
;
background-color
:
#fbfbfb
;
background-color
:
#f5f5f5
;
background-image
:
-moz-linear-gradient
(
top
,
#ffffff
,
#f5f5f5
);
-webkit-border-radius
:
4px
;
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
100%
,
from
(
#ffffff
),
to
(
#f5f5f5
));
-moz-border-radius
:
4px
;
background-image
:
-webkit-linear-gradient
(
top
,
#ffffff
,
#f5f5f5
);
border-radius
:
4px
;
background-image
:
-o-linear-gradient
(
top
,
#ffffff
,
#f5f5f5
);
background-image
:
linear-gradient
(
to
bottom
,
#ffffff
,
#f5f5f5
);
background-repeat
:
repeat-x
;
border
:
1px
solid
#ddd
;
-webkit-border-radius
:
3px
;
-moz-border-radius
:
3px
;
border-radius
:
3px
;
filter
:
progid
:
dximagetransform
.
microsoft
.
gradient
(
startColorstr
=
'#ffffffff'
,
endColorstr
=
'#fff5f5f5'
,
GradientType
=
0
);
-webkit-box-shadow
:
inset
0
1px
0
#ffffff
;
-moz-box-shadow
:
inset
0
1px
0
#ffffff
;
box-shadow
:
inset
0
1px
0
#ffffff
;
}
}
.breadcrumb
li
{
.breadcrumb
li
{
...
...
less/breadcrumbs.less
View file @
87ce3489
...
@@ -4,13 +4,11 @@
...
@@ -4,13 +4,11 @@
.breadcrumb {
.breadcrumb {
padding:
7px 14
px;
padding:
8px 15
px;
margin: 0 0 @baseLineHeight;
margin: 0 0 @baseLineHeight;
list-style: none;
list-style: none;
#gradient > .vertical(@white, #f5f5f5);
background-color: #f5f5f5;
border: 1px solid #ddd;
.border-radius(4px);
.border-radius(3px);
.box-shadow(inset 0 1px 0 @white);
li {
li {
display: inline-block;
display: inline-block;
.ie7-inline-block();
.ie7-inline-block();
...
...
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