Skip to content
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

Copy Sites Publish URL #3481

Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4ba8ef9
Copy Sites Publish URL
Nov 22, 2024
a1f57e5
Updating the changelog with the unreleased ticket number and fixing c…
Nov 26, 2024
f7f5233
Fixing more code climate errors.
Nov 27, 2024
62debdc
Styling improvements. Adding Separate label, input and copy button fo…
Nov 27, 2024
1729e70
Fixing Code Climate styling issues.
Nov 27, 2024
58c50c6
Update the copyright year and few code smells
Nov 27, 2024
037a70b
Adding CopySitesPublishUrlFeatureTest.java, dedicated modal message f…
Dec 2, 2024
2a21a7a
.gitgnore updated with Qlty plugin folder
Dec 3, 2024
3cad1f5
Fixing Qlty plugin issues - comments on the new unit test and decalar…
Dec 3, 2024
285625a
Remove the 'service.ranking' property for the CopySitesPublishUrlFeat…
Dec 6, 2024
f05279c
renaming the servlet extension from .txt to .json. Fixing the copy to…
Dec 9, 2024
41a35d1
prefixing the CSS with acs-aem-commons__ to avoid potential conflict
Dec 9, 2024
4ca9f96
Merge branch 'master' into feature/view-publish-url-sites
krassib Dec 9, 2024
485bc4c
added the wrapper for the clientlib
Dec 10, 2024
9a68624
Merge remote-tracking branch 'personal/feature/view-publish-url-sites…
Dec 10, 2024
6191d18
Make the servlet configurationPolicy = ConfigurationPolicy.REQUIRE s…
Dec 10, 2024
589dc67
Copy Publish URL changes
davidjgonzalez Dec 11, 2024
caa6e53
Minor cleanup
davidjgonzalez Dec 11, 2024
1951350
Clean up
davidjgonzalez Dec 11, 2024
0fe22f5
Minor cleanup
davidjgonzalez Dec 11, 2024
9c7ed52
Cleanup: Optimizing imports
Dec 11, 2024
2ccbd53
minor cleanup
Dec 12, 2024
8a8018a
Removed the render conditions 1 and 2 for rendering the clientlib whe…
Dec 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
prefixing the CSS with acs-aem-commons__ to avoid potential conflict
Krassimir Boyanov committed Dec 9, 2024
commit 41a35d18a865bea0746c69c647a1cc2eec34f530
Original file line number Diff line number Diff line change
@@ -34,24 +34,24 @@
min-width: 30rem;
}

.copy-publish-url-group {
.acs-aem-commons__copy-publish-url-group {
display: flex;
align-items: center;
margin-bottom: 5px;
}

.copy-publish-url-group .coral-Form-field,
.copy-publish-url-group .sites-publishurl-copy-cmd {
.acs-aem-commons__copy-publish-url-group .coral-Form-field,
.acs-aem-commons__copy-publish-url-group .sites-publishurl-copy-cmd {
margin-right: 10px;
}

.copy-publish-url-group {
.acs-aem-commons__copy-publish-url-group {
display: flex;
align-items: center;
margin-bottom: 5px;
}

.copy-publish-url-group .coral-Form-field,
.copy-publish-url-group .sites-publishurl-copy-cmd {
.acs-aem-commons__copy-publish-url-group .coral-Form-field,
.acs-aem-commons__copy-publish-url-group .sites-publishurl-copy-cmd {
margin-right: 10px;
}
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@
inputWidth = inputWidth > 0 ? inputWidth - 10 : 0;

Object.keys(jsonResponse).forEach(function(key) {
content += '<div class="coral-Form-fieldwrapper copy-publish-url-group">' +
content += '<div class="coral-Form-fieldwrapper acs-aem-commons__copy-publish-url-group">' +
'<label class="coral-Form-fieldlabel" style="width: ' + labelWidth + 'ch; display: inline-block">' + key + ' : </label>' +
'<input type="text" class="coral-Form-field" value="' + jsonResponse[key] + '" readonly style="width: ' + inputWidth + 'ch;" />' +
'<button type="button" class="sites-publishurl-copy-cmd coral3-Button coral3-Button--primary" data-copy-target="' + key + '"><coral-icon class="coral3-Icon coral3-Icon--attach coral3-Icon--sizeXS" icon="attach" size="XS" autoarialabel="off" alt=""></coral-icon><coral-button-label>Copy</coral-button-label></button>' +