aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--www/css/fms.css39
-rw-r--r--www/i/camera.pngbin0 -> 180 bytes
-rw-r--r--www/i/camera@x2.pngbin0 -> 269 bytes
-rw-r--r--www/i/photos.pngbin0 -> 179 bytes
-rw-r--r--www/i/photos@x2.pngbin0 -> 277 bytes
-rw-r--r--www/i/user.pngbin0 -> 147 bytes
-rw-r--r--www/i/user@x2.pngbin0 -> 216 bytes
-rw-r--r--www/templates/en/around.html2
-rw-r--r--www/templates/en/photo.html4
9 files changed, 42 insertions, 3 deletions
diff --git a/www/css/fms.css b/www/css/fms.css
index 2522779..19e9131 100644
--- a/www/css/fms.css
+++ b/www/css/fms.css
@@ -571,3 +571,42 @@
background-color: grey;
height: 13px;
}
+
+ .ui-icon {
+ -webkit-border-radius: 0px;
+ border-radius: 0px;
+ background-color: rgba(0,0,0,0);
+ }
+ .ui-icon-shadow {
+ -webkit-box-shadow: none;
+ box-shadow: none;
+ }
+ .ui-icon-fms-photo-existing,
+ .ui-icon-fms-photo-new {
+ position: static;
+ float: left;
+ background-size: 18px 18px;
+ }
+ .ui-icon-fms-account {
+ background-image: url(../i/user.png);
+ background-size: 18px 18px;
+ }
+ .ui-icon-fms-photo-new {
+ background-image: url(../i/camera.png);
+ }
+ .ui-icon-fms-photo-existing {
+ background-image: url(../i/photos.png);
+ }
+
+ @media only screen and (min-resolution: 320dpi),
+ only screen and (-webkit-min-device-pixel-ratio: 2) {
+ .ui-icon-fms-account {
+ background-image: url(../i/user@x2.png);
+ }
+ .ui-icon-fms-photo-new {
+ background-image: url(../i/camera@x2.png);
+ }
+ .ui-icon-fms-photo-existing {
+ background-image: url(../i/photos@x2.png);
+ }
+ }
diff --git a/www/i/camera.png b/www/i/camera.png
new file mode 100644
index 0000000..c3f8d2b
--- /dev/null
+++ b/www/i/camera.png
Binary files differ
diff --git a/www/i/camera@x2.png b/www/i/camera@x2.png
new file mode 100644
index 0000000..d5c2467
--- /dev/null
+++ b/www/i/camera@x2.png
Binary files differ
diff --git a/www/i/photos.png b/www/i/photos.png
new file mode 100644
index 0000000..25f967d
--- /dev/null
+++ b/www/i/photos.png
Binary files differ
diff --git a/www/i/photos@x2.png b/www/i/photos@x2.png
new file mode 100644
index 0000000..32a8a31
--- /dev/null
+++ b/www/i/photos@x2.png
Binary files differ
diff --git a/www/i/user.png b/www/i/user.png
new file mode 100644
index 0000000..980ccdd
--- /dev/null
+++ b/www/i/user.png
Binary files differ
diff --git a/www/i/user@x2.png b/www/i/user@x2.png
new file mode 100644
index 0000000..0b46740
--- /dev/null
+++ b/www/i/user@x2.png
Binary files differ
diff --git a/www/templates/en/around.html b/www/templates/en/around.html
index 5a2a608..e72e857 100644
--- a/www/templates/en/around.html
+++ b/www/templates/en/around.html
@@ -4,7 +4,7 @@
</a>
<a id="cancel" class="nodisplay" data-role="button" data-icon="arrow-l">Cancel</a>
<h1>Find problem</h1>
- <a id="login-options" class="nodisplay ui-btn-right">Account</a>
+ <a id="login-options" data-icon="fms-account" class="nodisplay ui-btn-right">Account</a>
<a id="confirm" class="nodisplay" data-role="button" data-iconpos="right" data-icon="arrow-r">Next</a>
</div>
diff --git a/www/templates/en/photo.html b/www/templates/en/photo.html
index b195833..6e69c4c 100644
--- a/www/templates/en/photo.html
+++ b/www/templates/en/photo.html
@@ -16,8 +16,8 @@
<% } %>
</div>
<div class="bottom-btn">
- <input type="button" id="id_existing" data-theme="c" value="Add an existing photo" >
- <input id="id_photo_button" type="button" data-theme="a" value="Take a new photo">
+ <input data-icon="fms-photo-existing" type="button" id="id_existing" data-theme="c" value="Add an existing photo" >
+ <input data-icon="fms-photo-new" id="id_photo_button" type="button" data-theme="a" value="Take a new photo">
<input id="id_del_photo_button" type="button" data-theme="a" value="Remove Photo">
</div>
</div>