home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 114 / CDRom114.iso / internet / temafire / Curacao.jar / browser / pref / pref.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2004-08-28  |  4.3 KB  |  155 lines

  1. /*
  2. # -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  3. # Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4. #
  5. # The contents of this file are subject to the Mozilla Public License Version
  6. # 1.1 (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. # http://www.mozilla.org/MPL/
  9. #
  10. # Software distributed under the License is distributed on an "AS IS" basis,
  11. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. # for the specific language governing rights and limitations under the
  13. # License.
  14. #
  15. # The Original Code is Mozilla.org Code.
  16. #
  17. # The Initial Developer of the Original Code is
  18. # Doron Rosenberg.
  19. # Portions created by the Initial Developer are Copyright (C) 2001
  20. # the Initial Developer. All Rights Reserved.
  21. #
  22. # Contributor(s):
  23. #   Ben Goodger <ben@netscape.com> (Original Author)
  24. #
  25. # Alternatively, the contents of this file may be used under the terms of
  26. # either the GNU General Public License Version 2 or later (the "GPL"), or
  27. # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28. # in which case the provisions of the GPL or the LGPL are applicable instead
  29. # of those above. If you wish to allow use of your version of this file only
  30. # under the terms of either the GPL or the LGPL, and not to allow others to
  31. # use your version of this file under the terms of the MPL, indicate your
  32. # decision by deleting the provisions above and replace them with the notice
  33. # and other provisions required by the GPL or the LGPL. If you do not delete
  34. # the provisions above, a recipient may use your version of this file under
  35. # the terms of any one of the MPL, the GPL or the LGPL.
  36. #
  37. # ***** END LICENSE BLOCK *****
  38. */
  39. #header {
  40.     background: #ADBFD4;
  41.     color: #976868;
  42.     margin: 0px 5px 6px 5px !important;
  43. }
  44.  
  45. .buttonBox {
  46.     margin: 0px 5px !important;
  47. }
  48.  
  49. .buttonBoxButton {
  50.     -moz-appearance: none !important;
  51.     border: 1px solid transparent;
  52.     background: none;
  53.     margin: 2px 0px 0px 0px;
  54. }
  55.  
  56. .buttonBoxButton > .button-box {
  57.     border: none !important;
  58.     background: none;
  59. }
  60.  
  61. .buttonBoxButton .button-text{
  62.     background: none;
  63.     padding-top: 2px;
  64.     padding-bottom: 2px;
  65. }
  66.  
  67. .buttonBoxButton > .button-box > .button-icon {
  68.     width: 32px;
  69.     height: 32px;
  70.     margin-top: 3px;
  71.     margin-bottom: 2px;
  72. }
  73.  
  74. .buttonBoxButton:hover, .buttonBoxButton:focus {
  75.     border: 1px solid #DBE4EF;
  76.     background-image: url("chrome://mozapps/skin/shared/itemSelected.png");
  77. }
  78.  
  79. .buttonBoxButton[checked="true"] {
  80.     border: 1px solid #9EAFC3;
  81.     background-image: url("chrome://mozapps/skin/shared/itemSelected.png");
  82. }
  83.  
  84. #catGeneralButton {
  85.     list-style-image: url("chrome://browser/skin/pref/general.png");
  86. }
  87.  
  88. #catPrivacyButton {
  89.     list-style-image: url("chrome://browser/skin/pref/privacy.png");
  90. }
  91.  
  92. #catFeaturesbutton {
  93.     list-style-image: url("chrome://browser/skin/pref/web_features.png");
  94. }
  95.  
  96. #catDownloadsButton {
  97.     list-style-image: url("chrome://mozapps/skin/xpinstall/xpinstallIcon.png");
  98. }
  99.  
  100. #catThemesButton {
  101.     list-style-image: url("chrome://browser/skin/pref/themes.png");
  102. }
  103.  
  104. #catExtButton {
  105.     list-style-image: url("chrome://browser/skin/pref/extensions.png");
  106. }
  107.  
  108. #catAdvancedButton {
  109.     list-style-image: url("chrome://browser/skin/pref/advanced.png");
  110. }
  111.  
  112. expander {
  113.     margin: 1px 4px 1px 4px;
  114.     border: 1px solid transparent;
  115. }
  116.  
  117. #privacyCategories > expander[open="true"] {
  118.     background-color: #D4E0EB;
  119.     border: 1px solid #9EAFC3;
  120.     -moz-border-top-colors: #A6B6CE;
  121.     -moz-border-right-colors: #6E85A8;
  122.     -moz-border-bottom-colors: #6E85A8;
  123.     -moz-border-left-colors: #A6B6CE;
  124.     -moz-border-radius: 2px;
  125. }
  126.  
  127. .themesLink {
  128.     margin-left: 5px;
  129.     text-decoration: underline;
  130.     color: #9D6C6C;
  131.     cursor: pointer;
  132. }
  133.  
  134.                                                                                
  135. .themesLink:active {
  136.     color: #B07979;
  137. }
  138.  
  139. /* Extension status - enabled or disabled */
  140. #extList listitem {
  141.     background-image: url("chrome://browser/skin/pref/extension-enabled.png");
  142.     background-repeat: no-repeat;
  143.     background-position: 1px 2px;
  144.     padding-left: 15px;
  145. }
  146.  
  147. #extList listitem[disabledState="true"] {
  148.     background-image: url("chrome://browser/skin/pref/extension-disabled.png");
  149.     color: #94A3B1;
  150.     background-repeat: no-repeat;
  151.     background-position: 1px 2px;
  152.     padding-left: 15px;
  153. }
  154.  
  155.