home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / Chip_2004-04_cd1.bin / tema / mozilla / skin / ieskin-0.0.3-IE5.5-skinVersion1.5.xpi / ieskin.jar / messenger / folderMenus.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2004-01-05  |  4.1 KB  |  126 lines

  1. /*
  2.  * The contents of this file are subject to the Netscape Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/NPL/
  6.  *
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  *
  12.  * The Original Code is Mozilla Communicator client code, released
  13.  * March 31, 1998.
  14.  *
  15.  * The Initial Developer of the Original Code is Netscape
  16.  * Communications Corporation. Portions created by Netscape are
  17.  * Copyright (C) 1998-1999 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *
  22.  */
  23.  
  24. /* ===== folderMenus.css ================================================
  25.   == Icons for menus which represent mail folder.
  26.   ======================================================================= */
  27.  
  28. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  29.  
  30. /* ::::: folder icons for menus ::::: */
  31.  
  32. .folderMenuItem {
  33.   list-style-image: url("chrome://messenger/skin/icons/folder-closed.gif");
  34. }
  35.  
  36. .folderMenuItem[open="true"] {
  37. list-style-image: url("chrome://messenger/skin/icons/folder-open.gif");
  38. }
  39.  
  40. /* ..... special folders ..... */
  41.  
  42. .folderMenuItem[SpecialFolder="Inbox"] {
  43.   list-style-image: url("chrome://messenger/skin/icons/folder-inbox.gif");
  44. }
  45.  
  46. .folderMenuItem[SpecialFolder="Inbox"][open="true"] {
  47.   list-style-image: url("chrome://messenger/skin/icons/folder-inbox.gif");
  48. }
  49.  
  50. .folderMenuItem[SpecialFolder="Sent"] {
  51.   list-style-image: url("chrome://messenger/skin/icons/folder-sent.gif");
  52. }
  53.  
  54. .folderMenuItem[SpecialFolder="Sent"][open="true"] {
  55.   list-style-image: url("chrome://messenger/skin/icons/folder-sent-open.gif");
  56. }
  57.  
  58. .folderMenuItem[SpecialFolder="Drafts"] {
  59.   list-style-image: url("chrome://messenger/skin/icons/folder-draft.gif");
  60. }
  61.  
  62. .folderMenuItem[SpecialFolder="Drafts"][open="true"] {
  63.   list-style-image: url("chrome://messenger/skin/icons/folder-draft-open.gif");
  64. }
  65.  
  66. .folderMenuItem[SpecialFolder="Templates"] {
  67.   list-style-image: url("chrome://messenger/skin/icons/folder-template.gif");
  68. }
  69.  
  70. .folderMenuItem[SpecialFolder="Templates"][open="true"] {
  71.   list-style-image: url("chrome://messenger/skin/icons/folder-template-open.gif");
  72. }
  73.  
  74. .folderMenuItem[SpecialFolder="Junk"] {
  75.   list-style-image: url("chrome://messenger/skin/icons/folder-junk.gif");
  76. }
  77.  
  78. .folderMenuItem[SpecialFolder="Junk"][open="true"] {
  79.   list-style-image: url("chrome://messenger/skin/icons/folder-junk-open.gif");
  80. }
  81.  
  82. .folderMenuItem[SpecialFolder="Trash"] {
  83.   list-style-image: url("chrome://messenger/skin/icons/folder-trash.gif");
  84. }
  85.  
  86. .folderMenuItem[SpecialFolder="Trash"][open="true"] {
  87.   list-style-image: url("chrome://messenger/skin/icons/folder-trash.gif");
  88. }
  89.  
  90. .folderMenuItem[IsServer="true"] {
  91.   list-style-image: url("chrome://messenger/skin/icons/server-mail.gif");
  92. }
  93.  
  94. .folderMenuItem[IsServer="true"][open="true"] {
  95.   list-style-image: url("chrome://messenger/skin/icons/server-mail.gif");
  96. }
  97.  
  98. /* IMAP folders */
  99. .folderMenuItem[IsServer="true"][ServerType="imap"][IsSecure="true"] {
  100.   list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif");
  101. }
  102.  
  103. /* POP3 folders */
  104. .folderMenuItem[IsServer="true"][ServerType="pop3"][IsSecure="true"] {
  105.   list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif");
  106. }
  107.  
  108. /* Local Servers */
  109. .folderMenuItem[IsServer="true"][ServerType="none"] {
  110.   list-style-image: url("chrome://messenger/skin/icons/server-local.gif");
  111. }
  112.  
  113. /* News folders */
  114. .folderMenuItem[ServerType="nntp"] {
  115.   list-style-image: url("chrome://messenger/skin/icons/folder-newsgroup.gif");
  116. }
  117.  
  118. .folderMenuItem[IsServer="true"][ServerType="nntp"][IsSecure="true"] {
  119.   list-style-image: url("chrome://messenger/skin/icons/server-news-lock.gif");
  120. }
  121.  
  122. .folderMenuItem[IsServer="true"][ServerType="nntp"] {
  123.   list-style-image: url("chrome://messenger/skin/icons/server-news.gif");
  124. }
  125.  
  126.