forked from gurayyarar/AdminBSBMaterialDesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_breadcrumbs.scss
61 lines (51 loc) · 1.11 KB
/
_breadcrumbs.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.breadcrumb {
@include border-radius(0);
background-color: transparent;
font-size: 13px;
margin-bottom: 10px;
li {
a {
color: #444;
text-decoration: none;
.material-icons {
font-size: 18px;
position: relative;
top: 4px;
}
}
.material-icons {
font-size: 18px;
position: relative;
top: 4px;
}
}
> li + li:before {
content: '>\00a0';
}
}
@each $key, $val in $colors {
.breadcrumb-col-#{$key} {
li {
a {
color: $val !important;
font-weight: bold;
}
}
}
.breadcrumb-bg-#{$key} {
background-color: $val !important;
li {
a {
color: #fff;
font-weight: bold;
.material-icons {
padding-bottom: 8px;
}
}
color: #fff !important;
}
li + li:before {
color: #fff;
}
}
}