aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-10-10 01:39:14 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-10-10 01:39:14 -0700
commite23ec64c90382ec156ab061d478fa592789ab1ab (patch)
tree7a0a0bdee70d785962ccd9f0108fc371cf883e1e
parentdcaadada35c86ebc395ebee9fa726e315e89198f (diff)
downloadvolse-hubzilla-e23ec64c90382ec156ab061d478fa592789ab1ab.tar.gz
volse-hubzilla-e23ec64c90382ec156ab061d478fa592789ab1ab.tar.bz2
volse-hubzilla-e23ec64c90382ec156ab061d478fa592789ab1ab.zip
put the correct cursor on the jot links, still having some
issues with the photo upload link, since it's overlayed with an ilayer
-rw-r--r--include/ajaxupload.js4
-rw-r--r--view/jot.tpl4
-rw-r--r--view/theme/default/style.css11
3 files changed, 16 insertions, 3 deletions
diff --git a/include/ajaxupload.js b/include/ajaxupload.js
index ef872b52f..992190bc1 100644
--- a/include/ajaxupload.js
+++ b/include/ajaxupload.js
@@ -160,9 +160,11 @@
left : box.left + 'px',
top : box.top + 'px',
width : from.offsetWidth + 'px',
- height : from.offsetHeight + 'px'
+ height : from.offsetHeight + 'px',
+ cursor : 'pointer'
});
to.title = from.title;
+
}
/**
diff --git a/view/jot.tpl b/view/jot.tpl
index baa743e61..0dfad3f5e 100644
--- a/view/jot.tpl
+++ b/view/jot.tpl
@@ -17,7 +17,7 @@
<div id="profile-jot-submit-wrapper" >
<input type="submit" id="profile-jot-submit" name="submit" value="Share" />
<div id="profile-upload-wrapper" style="display: $visitor;" >
- <div id="wall-image-upload-div" ><img id="wall-image-upload" src="images/camera-icon.gif" alt="Upload Photo" title="Upload Photo" /></div>
+ <div id="wall-image-upload-div" ><img id="wall-image-upload" src="images/camera-icon.gif" alt="Upload Photo" title="Upload Photo" /></div>
</div>
<div id="profile-link-wrapper" style="display: $visitor;" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" >
<img id="profile-link" src="images/link-icon.gif" alt="Insert web link" title="Insert web link" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink();" />
@@ -31,7 +31,7 @@
<div id="profile-rotator-wrapper" style="display: $visitor;" >
<img id="profile-rotator" src="images/rotator.gif" alt="Please wait" title="Please wait" style="display: none;" />
</div>
- <div id="profile-jot-perms" class="profile-jot-perms" style="display: $visitor;" ><img src="images/$lockstate_icon.gif" alt="Permission Settings" title="Permission Settings" onClick="openClose('profile-jot-acl-wrapper');" />$bang</div>
+ <div id="profile-jot-perms" class="profile-jot-perms" style="display: $visitor;" ><img id="jot-perms-icon" src="images/$lockstate_icon.gif" alt="Permission Settings" title="Permission Settings" onClick="openClose('profile-jot-acl-wrapper');" />$bang</div>
<div id="profile-jot-perms-end"></div>
<div id="profile-jot-acl-wrapper" style="display: none;" >$acl</div>
</div>
diff --git a/view/theme/default/style.css b/view/theme/default/style.css
index 57d6ec5e9..a28231426 100644
--- a/view/theme/default/style.css
+++ b/view/theme/default/style.css
@@ -78,6 +78,17 @@ blockquote:before {
border: 1px solid #F5F6FB;
}
+#jot-perms-icon,
+#profile-location,
+#profile-video,
+#profile-link,
+#wall-image-upload,
+#profile-upload-wrapper,
+#wall-image-upload-div,
+.focus {
+ cursor: pointer;
+}
+
.fakelink, .fakelink:visited {
color: #15607B;
text-decoration: none;