3d6dd546 |
1 | /* ***** BEGIN LICENSE BLOCK ***** |
2 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
3 | * |
4 | * The contents of this file are subject to the Mozilla Public License Version |
5 | * 1.1 (the "License"); you may not use this file except in compliance with |
6 | * the License. You may obtain a copy of the License at |
7 | * http://www.mozilla.org/MPL/ |
8 | * |
9 | * Software distributed under the License is distributed on an "AS IS" basis, |
10 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
11 | * for the specific language governing rights and limitations under the |
12 | * License. |
13 | * |
14 | * The Original Code is smiley style rules. |
15 | * |
16 | * The Initial Developer of the Original Code is |
17 | * Mozilla. |
18 | * Portions created by the Initial Developer are Copyright (C) 2004 |
19 | * the Initial Developer. All Rights Reserved. |
20 | * |
21 | * Contributor(s): |
22 | * |
23 | * Alternatively, the contents of this file may be used under the terms of |
24 | * either of the GNU General Public License Version 2 or later (the "GPL"), |
25 | * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
26 | * in which case the provisions of the GPL or the LGPL are applicable instead |
27 | * of those above. If you wish to allow use of your version of this file only |
28 | * under the terms of either the GPL or the LGPL, and not to allow others to |
29 | * use your version of this file under the terms of the MPL, indicate your |
30 | * decision by deleting the provisions above and replace them with the notice |
31 | * and other provisions required by the GPL or the LGPL. If you do not delete |
32 | * the provisions above, a recipient may use your version of this file under |
33 | * the terms of any one of the MPL, the GPL or the LGPL. |
34 | * |
35 | * ***** END LICENSE BLOCK ***** */ |
36 | |
37 | /* ==== smileys.css ==================================================== |
38 | == Style rules to bind smiley image types generated by editor and the mozTxtToHTMLConv |
39 | == into skinnable images. |
40 | ========================================================================== */ |
41 | |
d84b9613 |
42 | @namespace url("http://www.w3.org/1999/xhtml"); |
43 | |
3d6dd546 |
44 | /* ::::: we also represent smilies inside of spans ::::: */ |
45 | |
46 | span.moz-smiley-s1, |
47 | span.moz-smiley-s2, |
48 | span.moz-smiley-s3, |
49 | span.moz-smiley-s4, |
50 | span.moz-smiley-s5, |
51 | span.moz-smiley-s6, |
d84b9613 |
52 | span.moz-smiley-s7, |
53 | span.moz-smiley-s8, |
54 | span.moz-smiley-s9, |
55 | span.moz-smiley-s10, |
56 | span.moz-smiley-s11, |
57 | span.moz-smiley-s12, |
58 | span.moz-smiley-s13, |
59 | span.moz-smiley-s14, |
60 | span.moz-smiley-s15, |
61 | span.moz-smiley-s16 |
3d6dd546 |
62 | { |
63 | font-size: 17px; |
d84b9613 |
64 | padding-left: 20px; |
65 | margin-left: 2px; |
3d6dd546 |
66 | margin-top: 2px; |
d84b9613 |
67 | background-repeat: no-repeat; |
3d6dd546 |
68 | -moz-user-select: all; |
69 | background-position: center center; |
70 | } |
71 | |
72 | span.moz-smiley-s1 > span, |
73 | span.moz-smiley-s2 > span, |
74 | span.moz-smiley-s3 > span, |
75 | span.moz-smiley-s4 > span, |
76 | span.moz-smiley-s5 > span, |
77 | span.moz-smiley-s6 > span, |
78 | span.moz-smiley-s7 > span, |
d84b9613 |
79 | span.moz-smiley-s8 > span, |
80 | span.moz-smiley-s9 > span, |
81 | span.moz-smiley-s10 > span, |
82 | span.moz-smiley-s11 > span, |
83 | span.moz-smiley-s12 > span, |
84 | span.moz-smiley-s13 > span, |
85 | span.moz-smiley-s14 > span, |
86 | span.moz-smiley-s15 > span, |
87 | span.moz-smiley-s16 > span |
3d6dd546 |
88 | { |
89 | display: none; |
90 | } |
91 | |
92 | /* smile */ |
93 | span.moz-smiley-s1{ |
94 | background-image: url("chrome://communicator/skin/icons/smileys/smile_n.gif"); |
95 | } |
96 | |
97 | /* frown */ |
98 | span.moz-smiley-s2 { |
99 | background-image: url("chrome://communicator/skin/icons/smileys/frown_n.gif"); |
100 | } |
101 | |
102 | /* wink */ |
103 | span.moz-smiley-s3 { |
104 | background-image: url("chrome://communicator/skin/icons/smileys/wink_n.gif"); |
105 | } |
106 | |
107 | /* tongue */ |
d84b9613 |
108 | span.moz-smiley-s4 { |
3d6dd546 |
109 | background-image: url("chrome://communicator/skin/icons/smileys/tongue_n.gif"); |
110 | } |
111 | |
112 | /* laughing */ |
113 | span.moz-smiley-s5 { |
114 | background-image: url("chrome://communicator/skin/icons/smileys/laughing_n.gif"); |
115 | } |
116 | |
117 | /* embarassed */ |
118 | span.moz-smiley-s6 { |
119 | background-image: url("chrome://communicator/skin/icons/smileys/embarrassed_n.gif"); |
120 | } |
121 | |
122 | /* undecided */ |
123 | span.moz-smiley-s7 { |
124 | background-image: url("chrome://communicator/skin/icons/smileys/undecided_n.gif"); |
125 | } |
126 | |
8c976b60 |
127 | /* surprise */ |
3d6dd546 |
128 | span.moz-smiley-s8 { |
129 | background-image: url("chrome://communicator/skin/icons/smileys/surprise_n.gif"); |
130 | } |
131 | |
132 | /* kiss */ |
133 | span.moz-smiley-s9 { |
134 | background-image: url("chrome://communicator/skin/icons/smileys/kiss_n.gif"); |
135 | } |
136 | |
137 | /* yell */ |
138 | span.moz-smiley-s10 { |
139 | background-image: url("chrome://communicator/skin/icons/smileys/yell_n.gif"); |
140 | } |
141 | |
142 | /* cool */ |
143 | span.moz-smiley-s11 { |
144 | background-image: url("chrome://communicator/skin/icons/smileys/cool_n.gif"); |
145 | } |
146 | |
147 | /* money */ |
148 | span.moz-smiley-s12 { |
149 | background-image: url("chrome://communicator/skin/icons/smileys/money_n.gif"); |
150 | } |
151 | |
152 | /* foot */ |
153 | span.moz-smiley-s13 { |
154 | background-image: url("chrome://communicator/skin/icons/smileys/foot_n.gif"); |
155 | } |
156 | |
157 | /* innocent */ |
158 | span.moz-smiley-s14 { |
159 | background-image: url("chrome://communicator/skin/icons/smileys/innocent_n.gif"); |
160 | } |
161 | |
162 | /* cry */ |
163 | span.moz-smiley-s15 { |
164 | background-image: url("chrome://communicator/skin/icons/smileys/cry_n.gif"); |
165 | } |
166 | |
167 | /* sealed */ |
168 | span.moz-smiley-s16 { |
169 | background-image: url("chrome://communicator/skin/icons/smileys/sealed_n.gif"); |
170 | } |