generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Release] Stage to Main #3093
Merged
Merged
[Release] Stage to Main #3093
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
1f5db0e
[MWPW-160862] [Milo OST] Add 'Save now' to dropdown of CTA text optio…
rohitsahu 199288d
MWPW-157147: Dynamic Nav Status Button (#2920)
JasonHowellSlavin b403714
[MWPW-159140] Overlapping and alignment issues in product merch cards…
rohitsahu febe065
Add opt-out class to quiz blocks (#3043)
colloyd 56ed952
MWPW-159555 Add support for lana-sample query param (#3045)
chrischrischris acb3046
MWPW-159651 && MWPW-160196 - [Hero marquee] bug fixes (#3046)
ryanmparrish 8d6c98b
MWPW-156242 | [Performance] Georouting modal creating cls (#3050)
aishwaryamathuria ba079c8
Graybox display specificity fix (#3051)
colloyd ff054af
MWPW-160233: Adding tabindex to social share icons (#3078)
JasonHowellSlavin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
} | ||
|
||
.graybox { | ||
display: none; | ||
display: none !important; | ||
} | ||
|
||
.gb-graybox-body { | ||
|
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
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
10 changes: 6 additions & 4 deletions
10
libs/features/dynamic-navigation.js → .../dynamic-navigation/dynamic-navigation.js
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
.dynamic-nav-status { | ||
border: 2px solid white; | ||
border-radius: 32px; | ||
color: #eee; | ||
font-size: 16px; | ||
padding: 12px 24px; | ||
cursor: pointer; | ||
display: flex; | ||
align-items: center; | ||
margin: 12px; | ||
position: relative; | ||
} | ||
|
||
.dynamic-nav-status .title { | ||
display: flex; | ||
} | ||
|
||
.dynamic-nav-status.active { | ||
background-color: #280; | ||
} | ||
|
||
.dynamic-nav-status.enabled { | ||
background-color: #ec4; | ||
} | ||
|
||
.dynamic-nav-status.inactive { | ||
background-color: #e20; | ||
} | ||
|
||
.dns-badge { | ||
border: 2px solid white; | ||
border-radius: 32px; | ||
background-color: transparent; | ||
box-sizing: border-box; | ||
color: #eee; | ||
padding: 8px; | ||
height: 12px; | ||
width: 12px; | ||
margin: 4px 8px 4px 0; | ||
cursor: pointer; | ||
display: flex; | ||
align-items: center; | ||
position: relative; | ||
} | ||
|
||
.dns-badge::after { | ||
content: ''; | ||
display: block; | ||
box-sizing: border-box; | ||
position: absolute; | ||
width: 6px; | ||
height: 6px; | ||
border-top: 2px solid; | ||
border-right: 2px solid; | ||
transform: rotate(45deg); | ||
left: 5px; | ||
bottom: 5px; | ||
transition-duration: 0.2s; | ||
} | ||
|
||
.dns-badge.dns-open::after { | ||
transform: rotate(135deg); | ||
transition-duration: 0.2s; | ||
} | ||
|
||
.dynamic-nav-status .hidden { | ||
display: none; | ||
} | ||
|
||
.dynamic-nav-status.enabled .title, | ||
.dynamic-nav-status.enabled .dns-badge { | ||
color: var(--feds-color-hamburger); | ||
border-color: var(--feds-color-hamburger); | ||
} | ||
|
||
.dynamic-nav-status .dns-close-container { | ||
display: flex; | ||
justify-content: flex-end; | ||
width: 100%; | ||
height: 10px; | ||
padding: 2px; | ||
} | ||
|
||
.dynamic-nav-status .dns-close { | ||
cursor: pointer; | ||
display: block; | ||
position: absolute; | ||
border: 2px solid white; | ||
border-radius: 32px; | ||
background-color: transparent; | ||
color: #eee; | ||
height: 20px; | ||
width: 20px; | ||
top: 6px; | ||
right: 6px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.dynamic-nav-status .dns-close::after { | ||
content: 'x'; | ||
display: block; | ||
box-sizing: border-box; | ||
position: absolute; | ||
width: 6px; | ||
height: 6px; | ||
left: 4px; | ||
top: -8px; | ||
font-size: 18px; | ||
font-weight: 600; | ||
} | ||
|
||
.dynamic-nav-status .details { | ||
position: absolute; | ||
top: 60px; | ||
right: 0; | ||
background-color: #444; | ||
min-width: 300px; | ||
border-radius: 16px; | ||
box-shadow: 0 0 10px #000; | ||
font-size: 12px; | ||
padding: 20px; | ||
z-index: 1; | ||
} | ||
|
||
.dynamic-nav-status .details::before { | ||
content: ''; | ||
width: 0; | ||
height: 0; | ||
position: absolute; | ||
border-left: 15px solid transparent; | ||
border-right: 15px solid transparent; | ||
border-top: 15px solid #444; | ||
top: -15px; | ||
right: 75px; | ||
rotate: 180deg; | ||
} | ||
|
||
.dynamic-nav-status p { | ||
margin: 2px; | ||
} | ||
|
||
.dynamic-nav-status .details p { | ||
font-weight: 600; | ||
} | ||
|
||
.dynamic-nav-status .details span { | ||
font-weight: 300; | ||
} | ||
|
||
.dynamic-nav-status .details .additional-info { | ||
border-bottom: 1px solid white; | ||
} | ||
|
||
.dynamic-nav-status .disable-values { | ||
min-width: 100%; | ||
} | ||
|
||
.dynamic-nav-status .disable-values table { | ||
border-collapse: collapse; | ||
width: 100%; | ||
} | ||
|
||
.dynamic-nav-status .disable-values caption { | ||
min-width: 100%; | ||
text-align: left; | ||
font-weight: 600; | ||
} | ||
|
||
.dynamic-nav-status .disable-values th, | ||
.dynamic-nav-status .disable-values td { | ||
border: 1px solid rgb(160 160 160); | ||
padding: 8px 10px; | ||
} | ||
|
||
@media screen and (max-width: 600px) { | ||
.dynamic-nav-status { | ||
display: none; | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
File ignored because of a matching ignore pattern. Use "--no-ignore" to override.