aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/slackr
diff options
context:
space:
mode:
authorMichael <icarus@dabo.de>2012-05-19 16:55:33 +0200
committerMichael <icarus@dabo.de>2012-05-19 16:55:33 +0200
commit6342b3e0bdd5774857a8fca809994f05e0208d25 (patch)
tree54114a005e74c8a6d8bad8a490e1d1e41bc4178f /view/theme/slackr
parent2b8c4df544f59d611ad1e8fc0dbc5fcd38bee8f7 (diff)
parent9a940786c18c1c2bd772aec93f1828f67dc45667 (diff)
downloadvolse-hubzilla-6342b3e0bdd5774857a8fca809994f05e0208d25.tar.gz
volse-hubzilla-6342b3e0bdd5774857a8fca809994f05e0208d25.tar.bz2
volse-hubzilla-6342b3e0bdd5774857a8fca809994f05e0208d25.zip
Merge branch 'master' of github.com:annando/friendica
Diffstat (limited to 'view/theme/slackr')
-rw-r--r--view/theme/slackr/editicons.pngbin0 -> 6300 bytes
-rw-r--r--view/theme/slackr/style.css17
-rw-r--r--view/theme/slackr/theme.php37
3 files changed, 53 insertions, 1 deletions
diff --git a/view/theme/slackr/editicons.png b/view/theme/slackr/editicons.png
new file mode 100644
index 000000000..171a40876
--- /dev/null
+++ b/view/theme/slackr/editicons.png
Binary files differ
diff --git a/view/theme/slackr/style.css b/view/theme/slackr/style.css
index ed3b413fb..abb431ab9 100644
--- a/view/theme/slackr/style.css
+++ b/view/theme/slackr/style.css
@@ -43,4 +43,19 @@ nav #site-location {
.wall-item-photo, .photo, .contact-block-img, .my-comment-photo {
border-radius: 3px;
-moz-border-radius: 3px;
-} \ No newline at end of file
+ box-shadow: 3px 3px 10px 0 #000000;
+}
+
+#sidebar-page-list img {
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+ box-shadow: 3px 3px 10px -2px #000000;
+}
+
+.contact-entry-photo img, .profile-match-photo img, #photo-photo img, .directory-photo-img {
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+ box-shadow: 3px 3px 10px 0 #000000;
+}
+
+
diff --git a/view/theme/slackr/theme.php b/view/theme/slackr/theme.php
index 78f5d40f0..99e061a2f 100644
--- a/view/theme/slackr/theme.php
+++ b/view/theme/slackr/theme.php
@@ -6,6 +6,43 @@ $a->theme_info = array(
function slackr_init(&$a) {
$a->page['htmlhead'] .= <<< EOT
<script>
+function insertFormatting(comment,BBcode,id) {
+
+ var tmpStr = $("#comment-edit-text-" + id).val();
+ if(tmpStr == comment) {
+ tmpStr = "";
+ $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
+ $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
+ openMenu("comment-edit-submit-wrapper-" + id);
+ $("#comment-edit-text-" + id).val(tmpStr);
+
+ }
+
+ textarea = document.getElementById("comment-edit-text-" +id);
+ if (document.selection) {
+ textarea.focus();
+ selected = document.selection.createRange();
+ if (BBcode == "url"){
+ selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
+ } else
+ selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
+ } else if (textarea.selectionStart || textarea.selectionStart == "0") {
+ var start = textarea.selectionStart;
+ var end = textarea.selectionEnd;
+ if (BBcode == "url"){
+ textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
+ } else
+ textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
+ }
+ return true;
+}
+
+function cmtBbOpen(id) {
+ $(".comment-edit-bb-" + id).show();
+}
+function cmtBbClose(id) {
+ $(".comment-edit-bb-" + id).hide();
+}
$(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });