diff options
author | Max Christian Pohle | 2015-09-28 04:05:34 +0200 |
---|---|---|
committer | Max Christian Pohle | 2015-09-28 04:05:34 +0200 |
commit | e5ffc1cb63d4786f9bd176cea038499ded83a7f3 (patch) | |
tree | 44577c59d008e6afc3d091ed63d597e24ea95537 /cfg/thunderbird/chrome | |
parent | e1234c3c498e645138f677781072b660fd86324f (diff) | |
download | icons-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.
Diffstat (limited to 'cfg/thunderbird/chrome')
-rw-r--r-- | cfg/thunderbird/chrome/folder-thunderbird.png | bin | 0 -> 1597 bytes | |||
-rw-r--r-- | cfg/thunderbird/chrome/userChrome.css | 13 |
2 files changed, 13 insertions, 0 deletions
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 | } | ||