1
1
Fork 0

quattro: actions in wall_item

less html in conversation.php
removed unused tpls
fixed old themes
This commit is contained in:
Fabio Comuni 2011-09-27 16:54:33 +02:00
commit e986fc3e30
24 changed files with 344 additions and 100 deletions

BIN
images/icons/10/link.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 410 B

BIN
images/icons/16/link.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 579 B

BIN
images/icons/22/link.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 767 B

BIN
images/icons/48/link.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

31
images/icons/Makefile Normal file
View file

@ -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 $@

BIN
images/icons/link.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

View file

@ -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."