aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2015-09-28 04:05:34 +0200
committerMax Christian Pohle2015-09-28 04:05:34 +0200
commite5ffc1cb63d4786f9bd176cea038499ded83a7f3 (patch)
tree44577c59d008e6afc3d091ed63d597e24ea95537
parente1234c3c498e645138f677781072b660fd86324f (diff)
downloadicons-e5ffc1cb63d4786f9bd176cea038499ded83a7f3.tar.bz2
icons-e5ffc1cb63d4786f9bd176cea038499ded83a7f3.zip
added specialized folder icon for thunderbird
icon appeared too large, reducing its size with userChrome.css was possible, but 16x16 only, which is a little too small for that folder icon.
-rw-r--r--cfg/thunderbird/README4
-rw-r--r--cfg/thunderbird/chrome/folder-thunderbird.pngbin0 -> 1597 bytes
-rw-r--r--cfg/thunderbird/chrome/userChrome.css13
-rw-r--r--index.theme12
4 files changed, 23 insertions, 6 deletions
diff --git a/cfg/thunderbird/README b/cfg/thunderbird/README
new file mode 100644
index 0000000..a1255fc
--- /dev/null
+++ b/cfg/thunderbird/README
@@ -0,0 +1,4 @@
1[INSTALL]
2copy the folder 'chrome' to ~/.thunderbird/*.profile/
3(so that there exists ~/.thunderbird/xyz.profile/chrome/)
4
diff --git a/cfg/thunderbird/chrome/folder-thunderbird.png b/cfg/thunderbird/chrome/folder-thunderbird.png
new file mode 100644
index 0000000..06c85b7
--- /dev/null
+++ b/cfg/thunderbird/chrome/folder-thunderbird.png
Binary files differ
diff --git a/cfg/thunderbird/chrome/userChrome.css b/cfg/thunderbird/chrome/userChrome.css
new file mode 100644
index 0000000..091be08
--- /dev/null
+++ b/cfg/thunderbird/chrome/userChrome.css
@@ -0,0 +1,13 @@
1/* 2015, Max Christian Pohle */
2
3#folderTree > treechildren
4{
5 font-size:10pt;
6}
7
8#folderTree treechildren::-moz-tree-image()
9{
10 list-style-image: url("folder-thunderbird.png") !important;
11 width: 16px;
12 height: 16px;
13}
diff --git a/index.theme b/index.theme
index dddd355..d4bb26a 100644
--- a/index.theme
+++ b/index.theme
@@ -11,15 +11,15 @@ LinkOverlay=link_overlay
11LockOverlay=lock_overlay 11LockOverlay=lock_overlay
12ZipOverlay=zip_overlay 12ZipOverlay=zip_overlay
13DesktopDefault=48 13DesktopDefault=48
14DesktopSizes=16,22,32,48,64,72,96,128 14DesktopSizes=16,24,32,48,64,72,96,128
15ToolbarDefault=22 15ToolbarDefault=24
16ToolbarSizes=16,22,32,48 16ToolbarSizes=16,24,32,48
17MainToolbarDefault=22 17MainToolbarDefault=24
18MainToolbarSizes=16,22,32,48 18MainToolbarSizes=16,24,32,48
19SmallDefault=16 19SmallDefault=16
20SmallSizes=16 20SmallSizes=16
21PanelDefault=32 21PanelDefault=32
22PanelSizes=16,22,32,48,64,72,96,128 22PanelSizes=16,24,32,48,64,72,96,128
23 23
24# Directory list 24# Directory list
25Directories=scalable/actions,scalable/animations,scalable/apps,scalable/categories,scalable/devices,scalable/emblems,scalable/emotes,scalable/mimetypes,scalable/places,scalable/status 25Directories=scalable/actions,scalable/animations,scalable/apps,scalable/categories,scalable/devices,scalable/emblems,scalable/emotes,scalable/mimetypes,scalable/places,scalable/status
..