generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Netcentric/demo
Demo
- Loading branch information
Showing
42 changed files
with
1,233 additions
and
544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
indent_size = 2 | ||
|
||
[*.css] | ||
indent_size = 4 | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.breadcrumb { | ||
color: rgb(0 161 159); | ||
font-size: 16px; | ||
} | ||
|
||
.breadcrumb a:any-link { | ||
color: rgb(0 161 159); | ||
font-family: rwe-light, Arial, Helvetica, sans-serif; | ||
} | ||
|
||
.breadcrumb a:hover, | ||
.breadcrumb a:active { | ||
text-decoration: none; | ||
} | ||
|
||
.breadcrumb ul { | ||
list-style: none; | ||
padding: 0; | ||
display: flex; | ||
flex-direction: row; | ||
gap: 4px; | ||
margin: 0; | ||
} | ||
|
||
.breadcrumb ul li:last-of-type { | ||
font-weight: 600; | ||
} | ||
|
||
.breadcrumb li span { | ||
font-size: 14px; | ||
margin-left: 4px; | ||
font-weight: 700; | ||
} | ||
|
||
.breadcrumb.dark { | ||
background: #1d4477; | ||
color: var(--white); | ||
padding: 16px; | ||
} | ||
|
||
.breadcrumb.dark a:any-link { | ||
color: var(--white); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default function decorate(block) { | ||
block.querySelectorAll('ul li:not(:last-of-type)').forEach((el) => { | ||
const iconEl = document.createElement('span'); | ||
iconEl.classList.add('icon-rwe-anchor-right'); | ||
|
||
el.append(iconEl); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.