Skip to content
This repository has been archived by the owner on Jul 5, 2018. It is now read-only.

clean up ajax loader icon on monument detail page (bug 39692) #206

Merged
merged 1 commit into from
Aug 29, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions assets/www/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ body {
}

.mapLoader.loading,
#monument-detail.loading,
#monument-detail.loading .photo,
#results li.loading,
#results .footer.loading,
.loading #results,
Expand Down Expand Up @@ -59,7 +59,7 @@ body {
background-position: right center;
}

#monument-detail.loading {
#monument-detail.loading .photo {
background-position: left center;
}

Expand All @@ -71,6 +71,7 @@ body {
display: none;
}

#monument-detail .photo,
.loading#results-page .content {
background: none;
}
Expand Down
4 changes: 3 additions & 1 deletion assets/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ <h3><%= monument.name %></h3>
<h3 class='monument-name'>
<%= monument.name %>
</h3>
<img class='monument-thumbnail' src="images/placeholder-full-photo.png" />
<div class="photo">
<img class="monument-thumbnail" src="images/placeholder-full-photo.png">
</div>
<div class='monument-country'>
<strong> <msg key='monument-country' / > </strong>
<%= campaign %>
Expand Down