aboutsummaryrefslogtreecommitdiffstats
path: root/images/icons
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-09-27 16:54:33 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-09-27 16:54:33 +0200
commite986fc3e301f2a0cfb3b975fe60974fc5dcfd76b (patch)
tree27fd8c5e4d63c8142710a172e7858d738190f6e4 /images/icons
parent30df9abeac7c80a27f4727e29a1cad6b928edf4e (diff)
downloadvolse-hubzilla-e986fc3e301f2a0cfb3b975fe60974fc5dcfd76b.tar.gz
volse-hubzilla-e986fc3e301f2a0cfb3b975fe60974fc5dcfd76b.tar.bz2
volse-hubzilla-e986fc3e301f2a0cfb3b975fe60974fc5dcfd76b.zip
quattro: actions in wall_item
less html in conversation.php removed unused tpls fixed old themes
Diffstat (limited to 'images/icons')
-rw-r--r--images/icons/10/link.pngbin0 -> 410 bytes
-rw-r--r--images/icons/16/link.pngbin0 -> 579 bytes
-rw-r--r--images/icons/22/link.pngbin0 -> 767 bytes
-rw-r--r--images/icons/48/link.pngbin0 -> 1685 bytes
-rw-r--r--images/icons/Makefile31
-rw-r--r--images/icons/link.pngbin0 -> 7459 bytes
-rw-r--r--images/icons/make.sh14
7 files changed, 31 insertions, 14 deletions
diff --git a/images/icons/10/link.png b/images/icons/10/link.png
new file mode 100644
index 000000000..0619f4511
--- /dev/null
+++ b/images/icons/10/link.png
Binary files differ
diff --git a/images/icons/16/link.png b/images/icons/16/link.png
new file mode 100644
index 000000000..afec9cc30
--- /dev/null
+++ b/images/icons/16/link.png
Binary files differ
diff --git a/images/icons/22/link.png b/images/icons/22/link.png
new file mode 100644
index 000000000..e819ad3ac
--- /dev/null
+++ b/images/icons/22/link.png
Binary files differ
diff --git a/images/icons/48/link.png b/images/icons/48/link.png
new file mode 100644
index 000000000..b32eec529
--- /dev/null
+++ b/images/icons/48/link.png
Binary files differ
diff --git a/images/icons/Makefile b/images/icons/Makefile
new file mode 100644
index 000000000..39428d154
--- /dev/null
+++ b/images/icons/Makefile
@@ -0,0 +1,31 @@
+
+IMAGES=add.png edit.png gear.png info.png menu.png \
+ notify_off.png star.png delete.png feed.png group.png \
+ lock.png notice.png notify_on.png user.png link.png
+
+DESTS=10/ 16/ 22/ 48/ \
+ $(addprefix 10/, $(IMAGES)) \
+ $(addprefix 16/, $(IMAGES)) \
+ $(addprefix 22/, $(IMAGES)) \
+ $(addprefix 48/, $(IMAGES))
+
+all: $(DESTS)
+
+%/:
+ mkdir $@
+
+10/%.png: %.png
+ convert $< -resize 10x10 $@
+
+16/%.png: %.png
+ convert $< -resize 16x16 $@
+
+22/%.png: %.png
+ convert $< -resize 22x22 $@
+
+48/%.png: %.png
+ convert $< -resize 48x48 $@
+
+
+
+
diff --git a/images/icons/link.png b/images/icons/link.png
new file mode 100644
index 000000000..743bdf0f9
--- /dev/null
+++ b/images/icons/link.png
Binary files differ
diff --git a/images/icons/make.sh b/images/icons/make.sh
deleted file mode 100644
index 348117411..000000000
--- a/images/icons/make.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-sizes="10 16 22 48"
-
-for s in $sizes
-do
- echo "=[ ${s}x${s} ]===="
- [ -d $s ] || mkdir $s
- for f in *.png
- do
- convert $f -resize ${s}x${s} $s/$f
- echo -n "#"
- done
- echo
-done
-echo "Ok."