home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / browser.xpi / bin / chrome / modern.jar / skin / modern / messenger / folderMenus.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2001-08-31  |  3.7 KB  |  113 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-open.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="Trash"] {
  75.   list-style-image: url("chrome://messenger/skin/icons/folder-trash.gif");
  76. }
  77.  
  78. .folderMenuItem[SpecialFolder="Trash"][open="true"] {
  79.   list-style-image: url("chrome://messenger/skin/icons/folder-trash-open.gif");
  80. }
  81.  
  82. /* ..... servers ..... */
  83.  
  84. .folderMenuItem[IsServer="true"] {
  85.   list-style-image: url("chrome://messenger/skin/icons/server-mail.gif");
  86. }
  87.  
  88. .folderMenuItem[IsServer="true"][ServerType="imap"][IsSecure="true"] {
  89.   list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif");
  90. }
  91.  
  92. .folderMenuItem[IsServer="true"][ServerType="pop3"][IsSecure="true"] {
  93.   list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif");
  94. }
  95.  
  96. .folderMenuItem[IsServer="true"][ServerType="none"] {
  97.   list-style-image: url("chrome://messenger/skin/icons/server-local.gif");
  98. }
  99.  
  100. /* ..... newsgroups ..... */
  101.  
  102. .folderMenuItem[IsServer="true"][ServerType="nntp"][IsSecure="true"] {
  103.   list-style-image: url("chrome://messenger/skin/icons/server-news-lock.gif");
  104. }
  105.  
  106. .folderMenuItem[IsServer="true"][ServerType="nntp"] {
  107.   list-style-image: url("chrome://messenger/skin/icons/server-news.gif");
  108. }
  109.  
  110. .folderMenuItem[ServerType="nntp"] {
  111.   list-style-image: url("chrome://messenger/skin/icons/folder-newsgroup.gif");
  112. }
  113.