home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Complet / thunderbird / chrome / qute.jar / skin / classic / editor / editor.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2003-09-16  |  2.3 KB  |  92 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-2001 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *   Joe Hewitt (hewitt@netscape.com)
  22.  */
  23.  
  24. /* ==== editor.css ==========================================================
  25.    == Styles shared throughout the Editor application.
  26.    ========================================================================== */
  27.  
  28. @import url("chrome://communicator/skin/");
  29. @import url("chrome://communicator/skin/sidebar/sidebar.css");
  30.  
  31. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  32.  
  33. #content-frame { 
  34.   min-width: 10px; 
  35.   min-height: 10px;
  36.   height: 400px;
  37.  
  38. .source-editor,
  39. .source-editor:focus {
  40.   margin: 0px 5px 5px 0px;
  41.   border: 0px;
  42.   /* Scroll bars are in content, 
  43.      so we can't use right and bottom padding! */
  44.   padding: 5px 0px 0px 5px;
  45. }
  46.  
  47. /* Multiline textarea for HTML source editing */
  48. #content-source,
  49. #doctype-text {
  50.   font-family: -moz-fixed;
  51.   font-size: -moz-initial;
  52. }
  53.  
  54. #appcontent {
  55.   border-left: 1px solid ThreeDShadow;
  56.   border-top: 1px solid ThreeDDarkShadow;
  57.   border-right: 1px solid ThreeDHighlight;
  58. }
  59.  
  60. #ContentWindowDeck {
  61.   border-left: 1px solid ThreeDDarkShadow;
  62.   border-right: 1px solid ThreeDLightShadow;
  63. }
  64.  
  65. /* ::::: struct toolbar ::::: */
  66.  
  67. #structToolbar {
  68.   min-width: 1px;
  69.   overflow: -moz-hidden-unscrollable;
  70. }
  71.  
  72. #structSpacer {
  73.   margin: 2px 0px;
  74. }
  75.  
  76. .struct-button {
  77.   padding: 2px;
  78. }
  79.  
  80. .struct-button[checked="true"] {
  81.   font-weight: bold;
  82. }
  83.  
  84. .struct-textbox {
  85.   -moz-appearance: none !important;
  86.   padding: 0px !important;
  87.   margin: 0px !important;
  88.   border: none !important;
  89. }
  90.  
  91.