Changeset 3057
- Timestamp:
- Jan 11, 2007, 3:00:55 PM (17 years ago)
- Location:
- trunk/www
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/admin/clients/help/edit_help.jsp
r3046 r3057 200 200 tooltip="Insert an unordered list" 201 201 /> 202 <m:menuitem 203 title="List item" 204 onclick="encloseSelection('<li>', '</li>')" 205 tooltip="Insert a listitem." 206 /> 202 207 </m:menu> 203 208 <% … … 215 220 title="Row" 216 221 onclick="encloseSelection('<tr>', '</tr>')" 217 tooltip="Insert a row in a table"222 tooltip="Insert a tablerow." 218 223 /> 219 224 <m:menuitem 220 225 title="Cell" 221 226 onclick="encloseSelection('<td>', '</td>')" 222 tooltip="Insert a cell in a table row"227 tooltip="Insert a datacell." 223 228 /> 224 229 </m:menu> … … 239 244 title="Required" 240 245 onclick="encloseSelection('<req>', '</req>')" 241 tooltip="Mark text as required user input" 246 tooltip="Mark text as required user input." 247 /> 248 <m:menuitem 249 title="Button text" 250 onclick="encloseSelection('<btn>', '</btn>')" 251 tooltip="Mark text to symbol a button." 252 /> 253 <m:menuitem 254 title="Menu text" 255 onclick="encloseSelection('<mnu>', '</mnu>')" 256 tooltip="Mark text to symbol a menu." 242 257 /> 243 258 </m:menu> -
trunk/www/common/zoom.jsp
r3046 r3057 134 134 tooltip="Insert an unordered list" 135 135 /> 136 <m:menuitem 137 title="List item" 138 onclick="encloseSelection('<li>', '</li>')" 139 tooltip="Insert a listitem." 140 /> 136 141 </m:menu> 137 142 <% … … 149 154 title="Row" 150 155 onclick="encloseSelection('<tr>', '</tr>')" 151 tooltip="Insert a row in a table"156 tooltip="Insert a tablerow." 152 157 /> 153 158 <m:menuitem 154 159 title="Cell" 155 160 onclick="encloseSelection('<td>', '</td>')" 156 tooltip="Insert a cell in a table row"161 tooltip="Insert a datacell." 157 162 /> 158 163 </m:menu> … … 173 178 title="Required" 174 179 onclick="encloseSelection('<req>', '</req>')" 175 tooltip="Mark text as required user input" 180 tooltip="Mark text as required user input." 181 /> 182 <m:menuitem 183 title="Button text" 184 onclick="encloseSelection('<btn>', '</btn>')" 185 tooltip="Mark text to symbol a button." 186 /> 187 <m:menuitem 188 title="Menu text" 189 onclick="encloseSelection('<mnu>', '</mnu>')" 190 tooltip="Mark text to symbol a menu." 176 191 /> 177 192 </m:menu> 178 193 <m:menu 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 194 id="link" 195 style="display: none;" 196 > 197 <m:menuitem 198 title="Insert helptext" 199 onclick="encloseSelection('{@include ', '}')" 200 tooltip="Insert another helptext in this text." 201 /> 202 <m:menuitem 203 title="External link" 204 onclick="encloseSelection('{@link ', '}')" 205 tooltip="Insert an external link." 206 /> 207 <% 208 String insertBookmarkLink = "encloseSelection('<a href="#">', '</a>')"; 209 %> 210 <m:menuitem 211 title="Internal link" 212 onclick="<%=insertBookmarkLink%>" 213 tooltip="Insert a link to a part in this text." 214 /> 215 <% 216 String insertBookmark = "encloseSelection('<a name="">', '</a>')"; 217 %> 218 <m:menuitem 219 title="Bookmark" 220 onclick="<%=insertBookmark%>" 221 tooltip="Insert a bookmark" 222 /> 223 </m:menu> 209 224 <form name="zoom" onsubmit="return false;"> 210 225 <table align="center"> -
trunk/www/include/styles/help.css
r3046 r3057 70 70 /*Menu*/ 71 71 mnu { 72 background: grey;72 background: #EEEEEE; 73 73 font-style: italic; 74 74 } … … 81 81 border-bottom: thin solid #000000; 82 82 width:100%; 83 padding-bottom:0px 83 padding-bottom:0px; 84 84 } 85 86 li{ 87 padding-bottom:10px; 88 } 89 90 /*Columnheader*/ 91 th{ 92 background: #E0E0E0; 93 }
Note: See TracChangeset
for help on using the changeset viewer.