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 / output-default.css < prev    next >
Cascading Style Sheet File  |  2003-06-07  |  2KB  |  87 lines

  1. /* -*- Mode: Text; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  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 Chatzilla.
  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 output window
  23.  *
  24.  */
  25.  
  26. /* 
  27.  *  a version of the output window that uses only your default foreground and
  28.  *  backgrond colors.  Message types are distinguished by font changes.
  29.  *  see output-base.css for details. 
  30.  */
  31.  
  32. @import url(chrome://chatzilla/content/output-base.css);
  33.  
  34. .chatzilla-highlight[name="Italic"] {
  35.     font-style: italic;
  36. }
  37.  
  38. .chatzilla-highlight[name="SmallCap"] {
  39.     font-variant: small-caps;
  40. }
  41.  
  42. .msg-data[msg-type="ACTION"] {
  43.     font-style: italic;
  44. }
  45.  
  46. .msg-type[msg-type="JOIN"],
  47. .msg-type[msg-type="PART"],
  48. .msg-type[msg-type="QUIT"] {
  49.     font-weight: bold;
  50. }
  51.  
  52. .msg-data[msg-type="QUIT"] {
  53.     font-variant: small-caps;
  54.     font-weight: bold;
  55. }
  56.  
  57. .msg-data[msg-type="JOIN"],
  58. .msg-data[msg-type="PART"] {
  59.     font-variant: small-caps;
  60. }
  61.  
  62. .msg-data[msg-type="HELLO"],
  63. .msg-type[msg-type="NICK"],
  64. .msg-data[msg-type="NOTICE"] {
  65.     font-weight: bold;
  66. }
  67.  
  68. .msg-data[msg-type="NICK"] {
  69.     font: 10pt courier;
  70. }
  71.  
  72. /* :before and :after pseudoclasses form the decorations around nicknames.     */
  73. .msg-user:before,
  74. .msg-user:after {
  75.     font: 10pt courier;
  76.     font-weight: bolder;
  77. }
  78.  
  79. .msg-user[dest-type="IRCUser"],
  80. .msg-user[dest-type="IRCUser"][msg-dest$="ME!"] {
  81.     font-style: italic;
  82. }
  83.  
  84. .msg-user[msg-user$="ME!"] {
  85.     font-weight: bold;
  86. }
  87.