Skip to content

Commit

Permalink
FORGE-1125: Added quotes to url resources
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Sep 16, 2013
1 parent 619f0d1 commit 8591340
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scaffold-faces/src/main/resources/scaffold/faces/forge-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ footer p {

#content .search {
display: block;
background-image: url(#{request.contextPath}/resources/search.png);
background-image: url('#{request.contextPath}/resources/search.png');
background-position: 30px 3px;
background-repeat: no-repeat;
padding-bottom: 20px;
Expand Down Expand Up @@ -278,14 +278,14 @@ footer p {
display: block;
width: 22px;
height: 22px;
background-image: url(#{request.contextPath}/resources/false.png);
background-image: url('#{request.contextPath}/resources/false.png');
}

#content .boolean-true {
display: block;
width: 22px;
height: 22px;
background-image: url(#{request.contextPath}/resources/true.png);
background-image: url('#{request.contextPath}/resources/true.png');
}

#content .data-table .boolean-true {
Expand Down Expand Up @@ -356,7 +356,7 @@ footer p {
display: block;
width: 22px;
height: 22px;
background-image: url(#{request.contextPath}/resources/remove.png);
background-image: url('#{request.contextPath}/resources/remove.png');
}

#content .data-table-footer {
Expand All @@ -381,7 +381,7 @@ footer p {
display: block;
width: 22px;
height: 22px;
background-image: url(#{request.contextPath}/resources/add.png);
background-image: url('#{request.contextPath}/resources/add.png');
}

#content .buttons {
Expand Down

0 comments on commit 8591340

Please sign in to comment.