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

Fudge around the border sizes on the progress bar to make the border siz... #210

Merged
merged 1 commit into from
Aug 29, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions assets/www/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,16 @@ button.myLocation.loading {
height: 28px; /* height - border top and bottom */
}

/* Hack to make border look nicer on Android hdpi devices */
@media screen and (-webkit-device-pixel-ratio: 1.5) {
#upload-progress-bar {
border: solid 2px black;
}
#upload-progress-bar div {
height: 26px; /* height - border top and bottom */
}
}

/* Recent upload page */
#upload-latest-page img {
max-width: 100%;
Expand Down