generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 178
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 #3512
Merged
Merged
[Release] Stage to Main #3512
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
bb7ef3d
[MWPW-164132] Implementing Branch Quick Links with ECID Integration (…
drashti1712 965a8c6
MWPW-161625: fix mas:pending event on requestUpdate (#3388)
3ch023 d75cf85
[ENB-7642] Remove Console logs (#3477)
swamu c1dd016
[MWPW-165782] - Hamburger icon issue fix (#3501)
Deva309 66f90cb
Don't merge PRs with running tests (#3481)
mokimo c88d80c
MWPW-164735 - States/Properties: The element has missing or incorrect…
sonawanesnehal3 e4558c9
MWPW-146930 - Rollout tool plugin (#3463)
sabyamon a4101ed
[MWPW-165790] accordion aria-expanded fix (#3502)
DKos95 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
/* Rollout Modal styling */ | ||
.modal { | ||
padding: 20px; | ||
max-width: 500px; | ||
margin: 40px auto; | ||
text-align: center; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
.modal.warning { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 15px; | ||
background-color: #fff3e0; | ||
border: 1px solid #ffb74d; | ||
border-radius: 8px; | ||
padding: 15px 20px; | ||
text-align: left; | ||
} | ||
|
||
.warning-icon { | ||
width: 24px; | ||
height: 24px; | ||
background-color: #f57c00; | ||
border-radius: 50%; | ||
position: relative; | ||
} | ||
|
||
.warning-icon:before { | ||
content: "!"; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
color: white; | ||
font-weight: bold; | ||
font-size: 16px; | ||
} | ||
|
||
.warning-text { | ||
color: #e65100; | ||
font-size: 20px; | ||
font-weight: 800; | ||
} | ||
|
||
.warning-text-sub { | ||
font-size: 14px; | ||
font-weight: 500; | ||
} | ||
|
||
.env-label { | ||
font-weight: 600; | ||
margin-bottom: 10px; | ||
color: #333; | ||
font-size: 16px; | ||
} | ||
|
||
.radio-group { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 10px; | ||
margin: 10px 0; | ||
} | ||
|
||
.radio-group label { | ||
display: flex; | ||
align-items: center; | ||
font-size: 14px; | ||
font-weight: 500; | ||
padding: 8px 10px; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
background-color: #fff; | ||
cursor: pointer; | ||
transition: all 0.2s ease; | ||
box-shadow: 0 2px 4px rgb(0 0 0 / 5%); | ||
} | ||
|
||
.radio-group label:hover { | ||
border-color: #0078d4; | ||
background-color: #f0f8ff; | ||
box-shadow: 0 3px 6px rgb(0 0 0 / 10%); | ||
} | ||
|
||
.radio-group input[type="radio"] { | ||
margin-right: 8px; | ||
accent-color: #0078d4; | ||
width: 16px; | ||
height: 16px; | ||
} | ||
|
||
.button-group { | ||
display: flex; | ||
justify-content: center; | ||
margin-top: 15px; | ||
} | ||
|
||
.rollout-btn { | ||
display: inline-flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 8px 16px; | ||
font-size: 14px; | ||
font-weight: bold; | ||
color: #fff; | ||
background: linear-gradient(135deg, #0078d4, #005a9e); | ||
border: none; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; | ||
box-shadow: 0 3px 6px rgb(0 0 0 / 10%); | ||
} | ||
|
||
.rollout-btn:hover { | ||
background: linear-gradient(135deg, #005a9e, #003e6b); | ||
transform: translateY(-2px); | ||
box-shadow: 0 4px 8px rgb(0 0 0 / 15%); | ||
} | ||
|
||
.rollout-btn:active { | ||
background: linear-gradient(135deg, #004080, #002a57); | ||
transform: translateY(1px); | ||
box-shadow: 0 2px 4px rgb(0 0 0 / 10%); | ||
} | ||
|
||
.rollout-btn:disabled { | ||
background-color: #ccc; | ||
color: #666; | ||
cursor: not-allowed; | ||
box-shadow: none; | ||
} | ||
|
||
.rollout-btn-text { | ||
font-size: 14px; | ||
font-weight: normal; | ||
color: inherit; | ||
} |
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 by default. Use a negated ignore pattern (like "--ignore-pattern '!<relative/path/to/filename>'") to override.