File tree Expand file tree Collapse file tree 4 files changed +61
-5
lines changed Expand file tree Collapse file tree 4 files changed +61
-5
lines changed Original file line number Diff line number Diff line change
1
+ .breadcrumb {
2
+ display : flex ;
3
+ flex-wrap : wrap ;
4
+ // padding: $breadcrumb-padding-y;
5
+ padding-left : 0rem ;
6
+ padding-top : 0.75rem ;
7
+ // padding-right: 1 rem;
8
+ // padding-bottom: 0.75 rem;
9
+
10
+ margin-bottom : $breadcrumb-margin-bottom ;
11
+ list-style : none ;
12
+ background-color : initial ;
13
+ // @include border-radius($breadcrumb-border-radius);
14
+ margin-left : 0px ;
15
+ border-bottom-left-radius : 0rem ;
16
+ border-top-left-radius : 0rem ;
17
+ }
18
+
19
+ .breadcrumb-item {
20
+ display : -ms-flexbox ;
21
+ display : flex ;
22
+ }
23
+
24
+ .breadcrumb-item + .breadcrumb-item {
25
+ padding-left : 0.5rem ;
26
+ }
27
+
28
+ .breadcrumb-item + .breadcrumb-item ::before {
29
+ display : inline-block ;
30
+ padding-right : 0.5rem ;
31
+ color : $breadcrumb-divider-color ;
32
+ content : " /" ;
33
+ }
34
+
35
+ .breadcrumb-item + .breadcrumb-item :hover ::before {
36
+ text-decoration : underline ;
37
+ }
38
+
39
+ .breadcrumb-item + .breadcrumb-item :hover ::before {
40
+ text-decoration : none ;
41
+ }
42
+
43
+ .breadcrumb-item.active {
44
+ color : $breadcrumb-active-color ;;
45
+ }
46
+
Original file line number Diff line number Diff line change 30
30
li {
31
31
counter-increment : ordered- list- counter;
32
32
position : relative ;
33
- padding-left : var (--of--spacer--lg );
33
+ // padding-left: var(--of--spacer--lg);
34
34
}
35
- li ::before {
36
- content : counter (ordered-list-counter ) " . " ;
35
+ li ::before {
36
+ // content: counter(ordered-list-counter) ". ";
37
37
position : absolute ;
38
38
left : 0 ;
39
39
top : 0 ;
673
673
674
674
.of-capability-level__table__footnotes {
675
675
counter-reset : footnotes;
676
- }
676
+ }
677
677
678
678
.of-table-footnotes {
679
679
margin-bottom : var (--of--spacer--lg );
Original file line number Diff line number Diff line change 17
17
// @import "../../themes/docsy/assets/scss/sidebar-tree";
18
18
@import " ../../themes/docsy/assets/scss/sidebar-toc" ;
19
19
@import " ../../themes/docsy/assets/scss/buttons" ;
20
- @import " ../../themes/docsy/assets/scss/breadcrumb" ;
20
+ // @import "../../themes/docsy/assets/scss/breadcrumb";
21
21
@import " ../../themes/docsy/assets/scss/alerts" ;
22
22
@import " ../../themes/docsy/assets/scss/content" ;
23
23
@import " ../../themes/docsy/assets/scss/search" ;
@@ -63,6 +63,7 @@ footer {
63
63
@import " reset" ;
64
64
@import " type" ;
65
65
@import " sidebar-tree" ;
66
+ @import " breadcrumb" ;
66
67
67
68
// components
68
69
@import " header" ;
Original file line number Diff line number Diff line change 76
76
$ov--breakpoint--xl : 1200px ;
77
77
$ov--breakpoint--2xl : 1450px ;
78
78
79
+ // Breadcrumbs
80
+ $breadcrumb-font-size : null !default ;
81
+ $breadcrumb-padding-y : .75rem !default ;
82
+ $breadcrumb-margin-bottom : 1rem !default ;
83
+ $breadcrumb-bg : $gray-100 !default ;
84
+ $breadcrumb-divider-color : $gray-600 !default ;
85
+ $breadcrumb-active-color : $gray-600 !default ;
86
+ $breadcrumb-divider : quote (" /" ) !default ;
87
+ $breadcrumb-border-radius : $border-radius !default ;
You can’t perform that action at this time.
0 commit comments