| [ Index ] |
|
Code source de vtiger CRM 5.0.2 |
1 /* 2 * FCKeditor - The text editor for internet 3 * Copyright (C) 2003-2005 Frederico Caldeira Knabben 4 * 5 * Licensed under the terms of the GNU Lesser General Public License: 6 * http://www.opensource.org/licenses/lgpl-license.php 7 * 8 * For further information visit: 9 * http://www.fckeditor.net/ 10 * 11 * "Support Open Source software. What about a donation today?" 12 * 13 * File Name: fck_contextmenu.css 14 * Styles used by the context menu. 15 * 16 * File Authors: 17 * Frederico Caldeira Knabben (fredck@fckeditor.net) 18 */ 19 20 .BaseFont, .ForceBaseFont *, .CM_ContextMenu, .CM_ContextMenu * 21 { 22 font-size: 11px; 23 font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif; 24 } 25 26 .CM_ContextMenu 27 { 28 border: 1px solid #8f8f73; 29 padding: 2px; 30 background-color: #f7f7f7; 31 } 32 33 .CM_Option, .CM_Over, .CM_Disabled 34 { 35 padding: 0px 3px; 36 height: 18px; 37 cursor: default; 38 } 39 40 .CM_Option, .CM_Over 41 { 42 cursor: hand; 43 } 44 45 .CM_Option .CM_Icon, .CM_Disabled .CM_Icon, .CM_Separator .CM_Icon 46 { 47 background-color: #dedede; 48 } 49 50 .CM_Option .CM_Icon IMG 51 { 52 opacity: 0.70; /* Safari, Opera and Mozilla */ 53 filter: alpha(opacity=70); /* IE */ 54 /* -moz-opacity: 0.70; Mozilla (Old) */ 55 } 56 57 .CM_Disabled 58 { 59 background-color: #ffffff; 60 } 61 62 .CM_Disabled .CM_Icon IMG, .CM_Disabled .CM_Label 63 { 64 opacity: 0.30; /* Safari, Opera and Mozilla */ 65 filter: gray() alpha(opacity=30); /* IE */ 66 /* -moz-opacity: 0.30; Mozilla (Old) */ 67 } 68 69 .CM_Option .CM_Label, .CM_Over .CM_Label 70 { 71 padding: 1px 10px 1px 3px; 72 } 73 74 .CM_Over 75 { 76 color: #ffffff; 77 background-color: #8a857d; 78 } 79 80 .CM_Over .CM_Icon 81 { 82 background-color: #6c6761; 83 } 84 85 .CM_Separator .CM_Label 86 { 87 height: 3px; 88 } 89 90 .CM_Separator_Line 91 { 92 border-top: #b9b99d 1px solid; 93 margin-left: 2px; 94 margin-right: 3px; 95 } 96 97 /* 98 ### Panel Styles 99 */ 100 101 .FCK_Panel 102 { 103 border: #8f8f73 1px solid; 104 padding: 2px; 105 background-color: #ffffff; 106 } 107 108 .FCK_Panel, .FCK_Panel TD 109 { 110 font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif; 111 font-size: 11px; 112 } 113 114 /* 115 ### Color Selector Panel 116 */ 117 118 .ColorBoxBorder 119 { 120 border: #808080 1px solid; 121 position: static; 122 } 123 124 .ColorBox 125 { 126 font-size: 1px; 127 width: 10px; 128 position: static; 129 height: 10px; 130 } 131 132 .ColorDeselected, .ColorSelected 133 { 134 cursor: default; 135 } 136 137 .ColorDeselected 138 { 139 border: #ffffff 1px solid; 140 padding: 2px; 141 float: left; 142 } 143 144 .ColorSelected 145 { 146 border: #316ac5 1px solid; 147 padding: 2px; 148 float: left; 149 background-color: #c1d2ee; 150 } 151 152 /* 153 ### Special Combos 154 */ 155 156 .SC_Panel 157 { 158 overflow-y: auto; 159 white-space: nowrap; 160 cursor: default; 161 } 162 163 .SC_Item, .SC_ItemSelected 164 { 165 margin-top: 2px; 166 margin-bottom: 2px; 167 background-position: left center; 168 padding-left: 11px; 169 padding-right: 3px; 170 padding-top: 2px; 171 padding-bottom: 2px; 172 text-overflow: ellipsis; 173 overflow: hidden; 174 width: 100%; 175 background-repeat: no-repeat; 176 border: #dddddd 1px solid; 177 } 178 179 .SC_Item *, .SC_ItemSelected * 180 { 181 margin-top: 0px; 182 margin-bottom: 0px; 183 } 184 185 .SC_ItemSelected 186 { 187 border: #9a9afb 1px solid; 188 background-image: url(images/toolbar.arrowright.gif); 189 } 190 191 .SC_ItemOver 192 { 193 border: #316ac5 1px solid; 194 } 195 196 .SC_Field 197 { 198 border: #b7b7a6 1px solid; 199 cursor: default; 200 margin-top: 4px ; 201 } 202 203 .SC_FieldCaption 204 { 205 padding-top: 4px ; 206 overflow: visible; 207 padding-right: 5px; 208 padding-left: 5px; 209 opacity: 0.75; /* Safari, Opera and Mozilla */ 210 filter: alpha(opacity=70); /* IE */ 211 /* -moz-opacity: 0.75; Mozilla (Old) */ 212 height: 23px; 213 background-color: #f7f7f7; 214 } 215 216 .SC_FieldLabel 217 { 218 white-space: nowrap; 219 padding: 2px; 220 width: 100%; 221 cursor: default; 222 background-color: #ffffff; 223 text-overflow: ellipsis; 224 overflow: hidden; 225 } 226 227 .SC_FieldButton 228 { 229 background-position: center center; 230 background-image: url(images/toolbar.buttonarrow.gif); 231 border-left: #b7b7a6 1px solid; 232 width: 14px; 233 background-repeat: no-repeat; 234 } 235 236 .SC_FieldDisabled .SC_FieldButton, .SC_FieldDisabled .SC_FieldCaption 237 { 238 opacity: 0.30; /* Safari, Opera and Mozilla */ 239 filter: gray() alpha(opacity=30); /* IE */ 240 /* -moz-opacity: 0.30; Mozilla (Old) */ 241 } 242 243 .SC_FieldOver 244 { 245 border: #316ac5 1px solid; 246 } 247 248 .SC_FieldOver .SC_FieldButton 249 { 250 border-left: #316ac5 1px solid; 251 }
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
| Généré le : Sun Feb 25 10:22:19 2007 | par Balluche grâce à PHPXref 0.7 |