Skip to content

Commit

Permalink
#2848 - Fixed issue with images existing outside of clientib's resour…
Browse files Browse the repository at this point in the history
…ces folder (#2853)
  • Loading branch information
davidjgonzalez authored Jun 22, 2022
1 parent 91c2f26 commit eb381bc
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com)

### Fixed

- #2848 - Fixed issue with ClientLib images not being stored under a resources folder
- #2830 - Fixed issue with Dynamic Deck Dynamo breaking when the Dynamic Deck Dynamo has no items in its generic list page
- #2837 - Fixed blank MCP reports when running on AEM as a Cloud Service with Forms SDK
- #2826 - 5.3.1-SNAPSHOT build failing validation locally
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ body {

.cq-textlines-placeholder {
.cq-placeholder-base;
background: url("../images/placeholders/cq-textlines-placeholder.png" ) no-repeat scroll 50% 50%;
background: url("../resources/images/placeholders/cq-textlines-placeholder.png" ) no-repeat scroll 50% 50%;
min-height: 250px;
max-height: 250px;
height: 500px;
Expand All @@ -83,20 +83,20 @@ body {

.cq-ad-placeholder {
.cq-placeholder-base;
background: url("../images/placeholders/cq-ad-placeholder.png" ) no-repeat scroll 50% 50%;
background: url("../resources/images/placeholders/cq-ad-placeholder.png" ) no-repeat scroll 50% 50%;
}

.cq-audio-placeholder {
.cq-placeholder-base;
background: url("../images/placeholders/cq-audio-placeholder.png" ) no-repeat scroll 50% 50%;
background: url("../resources/images/placeholders/cq-audio-placeholder.png" ) no-repeat scroll 50% 50%;
}

.cq-dl-placeholder {
.cq-placeholder-base;
background: url("../images/placeholders/cq-dl-placeholder.png" ) no-repeat scroll 50% 50%;
background: url("../resources/images/placeholders/cq-dl-placeholder.png" ) no-repeat scroll 50% 50%;
}

.cq-ul-placeholder {
.cq-placeholder-base;
background: url("../images/placeholders/cq-ul-placeholder.png" ) no-repeat scroll 50% 50%;
background: url("../resources/images/placeholders/cq-ul-placeholder.png" ) no-repeat scroll 50% 50%;
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
* #L%
*/
#CQ .cq-cft-tab-icon.audio {
background-image:url(audio.png);
background-image:url(./resources/audio.png);
}

0 comments on commit eb381bc

Please sign in to comment.