Wiki source code of Study: Icons
Last modified by Vincent Massol on 2024/11/19 16:15
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | = Icons Development Study = | ||
| 2 | |||
| 3 | = CSS usage = | ||
| 4 | |||
| 5 | ==== Attachments - Add another file ==== | ||
| 6 | |||
| 7 | {{code language="html"}} | ||
| 8 | <input type="button" value="Add another file" class="attachmentActionButton add-file-input"/> | ||
| 9 | {{/code}} | ||
| 10 | |||
| 11 | attachments.css | ||
| 12 | |||
| 13 | {{code language="css"}} | ||
| 14 | .add-file-input { | ||
| 15 | background-image:url(/xwiki/resources/icons/silk/textfield_add.gif); | ||
| 16 | background-position:2px top; | ||
| 17 | margin-left:10px; | ||
| 18 | } | ||
| 19 | {{/code}} | ||
| 20 | |||
| 21 | ==== Edit Section ==== | ||
| 22 | |||
| 23 | {{code language="html"}} | ||
| 24 | <span class="edit_section"> | ||
| 25 | [ | ||
| 26 | <a href="/xwiki/bin/edit/Main/WebHome?xpage=wysiwyg§ion=1" title="Edit section: Welcome to your wiki" style="text-decoration: none;">edit</a> | ||
| 27 | ] | ||
| 28 | </span> | ||
| 29 | {{/code}} | ||
| 30 | |||
| 31 | toucan.css | ||
| 32 | |||
| 33 | {{code language="css"}} | ||
| 34 | .edit_section a { | ||
| 35 | background:transparent url(images/black-edit.png) no-repeat scroll left top; | ||
| 36 | ... | ||
| 37 | } | ||
| 38 | {{/code}} | ||
| 39 | |||
| 40 | ==== Dashboard ==== | ||
| 41 | |||
| 42 | {{code language="html"}} | ||
| 43 | <li class="xitem xunderline xhighlight page"> | ||
| 44 | <div class="xitemcontainer"> | ||
| 45 | <div class="modifiedPage"> | ||
| 46 | <a title="Version 1.1. Last modification 2009/08/03 12:29." href="/xwiki/bin/view/XWiki/SheetClass">Sheet Class</a> | ||
| 47 | </div> | ||
| 48 | </div> | ||
| 49 | </div> | ||
| 50 | {{/code}} | ||
| 51 | |||
| 52 | toucan.css | ||
| 53 | |||
| 54 | {{code language="css"}} | ||
| 55 | ul.xlist li.space { | ||
| 56 | background-image:url(../../resources/icons/silk/folder.gif); | ||
| 57 | } | ||
| 58 | |||
| 59 | ul.xlist li.page { | ||
| 60 | background-image:url(../../resources/icons/silk/page_white_text.gif); | ||
| 61 | } | ||
| 62 | {{/code}} | ||
| 63 | |||
| 64 | ==== LiveTable - Document Index ==== | ||
| 65 | |||
| 66 | {{code language="html"}} | ||
| 67 | <td class="actions"><a href="/xwiki/bin/view/XWiki/CopyDocument?sourcedoc=xwiki%3AXWiki.AdminExportSheet" class="action actioncopy">copy</a> | ||
| 68 | </td> | ||
| 69 | {{/code}} | ||
| 70 | |||
| 71 | livetable.css | ||
| 72 | |||
| 73 | {{code language="css"}} | ||
| 74 | tbody.xwiki-livetable-display-body td a.actioncopy { | ||
| 75 | background-image:url(/xwiki/resources/icons/silk/page_white_copy.gif); | ||
| 76 | } | ||
| 77 | {{/code}} | ||
| 78 | |||
| 79 | = IMG usage = | ||
| 80 | |||
| 81 | ==== Blog ==== | ||
| 82 | |||
| 83 | {{code language="html"}} | ||
| 84 | <div class="blog-entry-toolbox"> | ||
| 85 | <a class="blog-tool-hide" title="Hide this blog post from other users." href="http://localhost:8080/xwiki/bin/save/Blog/BlogIntroduction?Blog.BlogPostClass_0_hidden=1&comment=Hidden%20entry&ajax=1"> | ||
| 86 | <img class="icon-manage" alt="hide " src="/xwiki/bin/download/Blog/BlogStyle/hide.png"/> | ||
| 87 | </a> | ||
| 88 | ... | ||
| 89 | </div> | ||
| 90 | {{/code}} | ||
| 91 | |||
| 92 | ==== Categories ==== | ||
| 93 | |||
| 94 | {{code language="html"}} | ||
| 95 | <li> | ||
| 96 | <a title="" href="/xwiki/bin/view/Blog/CategoryRss?xpage=plain&category=Blog.News"> | ||
| 97 | <img alt="RSS" src="/xwiki/skins/albatross/icons/black%2Drss%2Dmini.png"/> | ||
| 98 | </a> | ||
| 99 | <span class="wikilink"><a href="/xwiki/bin/view/Blog/News">News (1)</a></span> | ||
| 100 | </li> | ||
| 101 | {{/code}} | ||
| 102 | |||
| 103 | ==== Delete Group ==== | ||
| 104 | [[image:DeleteGroup.png]] | ||
| 105 | |||
| 106 | {{code language="html"}} | ||
| 107 | <td class="manage"> | ||
| 108 | <img src="/xwiki/resources/js/xwiki/usersandgroups/img/clear.png" title="Delete" class="icon-manage"/> | ||
| 109 | </td> | ||
| 110 | {{/code}} |