| 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 | |
| 42 | @namespace url("http://www.w3.org/1999/xhtml"); |
| 43 | |
| 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, |
| 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 |
| 62 | { |
| 63 | display: inline-block; |
| 64 | vertical-align: middle; |
| 65 | -moz-user-select: all; |
| 66 | } |
| 67 | |
| 68 | span.moz-smiley-s1 > span, |
| 69 | span.moz-smiley-s2 > span, |
| 70 | span.moz-smiley-s3 > span, |
| 71 | span.moz-smiley-s4 > span, |
| 72 | span.moz-smiley-s5 > span, |
| 73 | span.moz-smiley-s6 > span, |
| 74 | span.moz-smiley-s7 > span, |
| 75 | span.moz-smiley-s8 > span, |
| 76 | span.moz-smiley-s9 > span, |
| 77 | span.moz-smiley-s10 > span, |
| 78 | span.moz-smiley-s11 > span, |
| 79 | span.moz-smiley-s12 > span, |
| 80 | span.moz-smiley-s13 > span, |
| 81 | span.moz-smiley-s14 > span, |
| 82 | span.moz-smiley-s15 > span, |
| 83 | span.moz-smiley-s16 > span |
| 84 | { |
| 85 | display: none; |
| 86 | } |
| 87 | |
| 88 | /* smile */ |
| 89 | span.moz-smiley-s1:before { |
| 90 | content: url("chrome://communicator/skin/icons/smileys/smiley-smile.png"); |
| 91 | } |
| 92 | |
| 93 | /* frown */ |
| 94 | span.moz-smiley-s2:before { |
| 95 | content: url("chrome://communicator/skin/icons/smileys/smiley-frown.png"); |
| 96 | } |
| 97 | |
| 98 | /* wink */ |
| 99 | span.moz-smiley-s3:before { |
| 100 | content: url("chrome://communicator/skin/icons/smileys/smiley-wink.png"); |
| 101 | } |
| 102 | |
| 103 | /* tongue */ |
| 104 | span.moz-smiley-s4:before { |
| 105 | content: url("chrome://communicator/skin/icons/smileys/smiley-tongue.png"); |
| 106 | } |
| 107 | |
| 108 | /* laughing */ |
| 109 | span.moz-smiley-s5:before { |
| 110 | content: url("chrome://communicator/skin/icons/smileys/smiley-laughing.png"); |
| 111 | } |
| 112 | |
| 113 | /* embarrassed */ |
| 114 | span.moz-smiley-s6:before { |
| 115 | content: url("chrome://communicator/skin/icons/smileys/smiley-embarrassed.png"); |
| 116 | } |
| 117 | |
| 118 | /* undecided */ |
| 119 | span.moz-smiley-s7:before { |
| 120 | content: url("chrome://communicator/skin/icons/smileys/smiley-undecided.png"); |
| 121 | } |
| 122 | |
| 123 | /* surprise */ |
| 124 | span.moz-smiley-s8:before { |
| 125 | content: url("chrome://communicator/skin/icons/smileys/smiley-surprise.png"); |
| 126 | } |
| 127 | |
| 128 | /* kiss */ |
| 129 | span.moz-smiley-s9:before { |
| 130 | content: url("chrome://communicator/skin/icons/smileys/smiley-kiss.png"); |
| 131 | } |
| 132 | |
| 133 | /* yell */ |
| 134 | span.moz-smiley-s10:before { |
| 135 | content: url("chrome://communicator/skin/icons/smileys/smiley-yell.png"); |
| 136 | } |
| 137 | |
| 138 | /* cool */ |
| 139 | span.moz-smiley-s11:before { |
| 140 | content: url("chrome://communicator/skin/icons/smileys/smiley-cool.png"); |
| 141 | } |
| 142 | |
| 143 | /* money */ |
| 144 | span.moz-smiley-s12:before { |
| 145 | content: url("chrome://communicator/skin/icons/smileys/smiley-money.png"); |
| 146 | } |
| 147 | |
| 148 | /* foot */ |
| 149 | span.moz-smiley-s13:before { |
| 150 | content: url("chrome://communicator/skin/icons/smileys/smiley-foot.png"); |
| 151 | } |
| 152 | |
| 153 | /* innocent */ |
| 154 | span.moz-smiley-s14:before { |
| 155 | content: url("chrome://communicator/skin/icons/smileys/smiley-innocent.png"); |
| 156 | } |
| 157 | |
| 158 | /* cry */ |
| 159 | span.moz-smiley-s15:before { |
| 160 | content: url("chrome://communicator/skin/icons/smileys/smiley-cry.png"); |
| 161 | } |
| 162 | |
| 163 | /* sealed */ |
| 164 | span.moz-smiley-s16:before { |
| 165 | content: url("chrome://communicator/skin/icons/smileys/smiley-sealed.png"); |
| 166 | } |