home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-macos9-1.3.1.sea.bin / Mozilla1.3.1 / Chrome / chatzilla.jar / skin / modern / chatzilla / chatzilla.css next >
Cascading Style Sheet File  |  2003-06-07  |  3KB  |  150 lines

  1. /*
  2.  * The contents of this file are subject to the Mozilla 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/MPL/
  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 JSIRC Library.
  13.  *
  14.  * The Initial Developer of the Original Code is New Dimensions Consulting,
  15.  * Inc. Portions created by New Dimensions Consulting, Inc. are
  16.  * Copyright (C) 1999 New Dimenstions Consulting, Inc. All
  17.  * Rights Reserved.
  18.  *
  19.  * Contributor(s):
  20.  *  Robert Ginda, rginda@ndcico.com, original author
  21.  * 
  22.  * Styles for UI, See output-default.css for output window styles
  23.  *
  24.  */
  25.  
  26. @import url(chrome://communicator/skin/);
  27.  
  28. window {
  29.  
  30.     width: 640px;
  31.     height: 480px;
  32.  
  33. }
  34.  
  35. #menu-view-none {
  36.     display: none;
  37. }
  38.  
  39. #tabpanels-contents-box {
  40.     margin: 3px;
  41. }
  42.  
  43. #header-url:hover {
  44.     text-decoration: underline;
  45. }
  46.  
  47. #outer-box {
  48.     margin: 5px;
  49. }
  50.  
  51. #input-widget,
  52. #input-widget-multiline {
  53.     border: thin silver inset;
  54. }
  55.  
  56. #button-multiline-expand {
  57.     list-style-image:url("chrome://chatzilla/skin/images/multiline-expand.png");
  58. }
  59.  
  60. #button-multiline-contract {
  61.     list-style-image:url("chrome://chatzilla/skin/images/multiline-contract.png");
  62. }
  63.  
  64. #button-input {
  65.     list-style-image:url("chrome://chatzilla/skin/images/input-send.png");
  66. }
  67.  
  68. .highlight-menu-item:hover {
  69.     color: white !important;
  70.     background: darkslategrey !important;
  71. }
  72.  
  73. .view-button {
  74.     color: black;
  75. }
  76.  
  77. .view-button[state="current"] {
  78.     font-weight: bold;
  79. }
  80.  
  81. .view-button[state="superfluous"] {
  82.     color: darkblue;
  83. }
  84.  
  85. .view-button[state="activity"] {
  86.     color: darkgreen;
  87. }
  88.  
  89. .view-button[state="attention"] {
  90.     color: red;
  91. }
  92.  
  93. /* spaces after the 4th and 8th tab, so you can line them up with your Fn
  94.  * keys */
  95. .view-button[viewKey="4"],
  96. .view-button[viewKey="8"] {
  97.     margin-left: 5px;
  98. }
  99.  
  100. .header-box, .usercount-data {
  101.     padding-top: 2px;
  102.     padding-bottom: 2px;
  103.     padding-right: 10px;
  104. }
  105.  
  106. #server-nick {
  107.     padding-top: 5px;
  108. }
  109.  
  110. .header-label {
  111.     font-weight: bold;
  112.     text-align: right;
  113.     margin-left: 10px;
  114. }
  115.  
  116. .header-data {
  117.     text-align: left;
  118.     margin-left: 5px;
  119. }
  120.  
  121. #channel-topic {
  122.     cursor: default;
  123. }
  124.  
  125. #channel-topic[editable="true"] {
  126.     cursor: text;
  127. }
  128.  
  129. .output-container {
  130.     border: thin silver inset;
  131. }
  132.  
  133. /* op image column */
  134. treechildren:-moz-tree-image(usercol-op, state-true) {
  135.     list-style-image: url(chrome://chatzilla/skin/images/is-op.gif)
  136. }
  137.  
  138. treechildren:-moz-tree-image(usercol-op, state-false) {
  139.     list-style-image: url(chrome://chatzilla/skin/images/isnt-op.gif)
  140. }
  141.  
  142. /* voice image column */
  143. treechildren:-moz-tree-image(usercol-voice, state-true) {
  144.     list-style-image: url(chrome://chatzilla/skin/images/is-voice.gif)
  145. }
  146.  
  147. treechildren:-moz-tree-image(usercol-voice, state-false) {
  148.     list-style-image: url(chrome://chatzilla/skin/images/isnt-voice.gif)
  149. }
  150.