Wiki source code of CSS API
Last modified by Vincent Massol on 2024/11/19 16:15
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | * http://platform.xwiki.org/xwiki/bin/view/DevGuide/FrontendResources | ||
| 2 | * http://platform.xwiki.org/xwiki/bin/view/AdminGuide/CSS+files | ||
| 3 | |||
| 4 | == The default XWiki Skins == | ||
| 5 | |||
| 6 | A XWiki Enterprise instance contains by default a [[list of Skins>>http://code.xwiki.org/xwiki/bin/view/Skins/]] like: | ||
| 7 | |||
| 8 | * the (% class="sectionblockcodecolored" %)[[albatross>>http://code.xwiki.org/xwiki/bin/view/Skins/AlbatrossSkin]](%%) Skin {[[svn>>http://svn.xwiki.org/svnroot/xwiki/platform/skins/trunk/albatross/src/main/resources/albatross/]]} | ||
| 9 | * the (% class="sectionblockcodecolored" %)[[toucan>>http://code.xwiki.org/xwiki/bin/view/Skins/ToucanSkin]](%%) Skin {[[svn>>http://svn.xwiki.org/svnroot/xwiki/platform/skins/trunk/toucan/src/main/resources/toucan/]]} | ||
| 10 | * the (% class="sectionblockcodecolored" %)[[colibri>>http://code.xwiki.org/xwiki/bin/view/Skins/ColibriSkin]](%%) Skin {[[svn>>http://svn.xwiki.org/svnroot/xwiki/platform/skins/trunk/colibri/src/main/resources/colibri/]]} and | ||
| 11 | * other skins ( the full list of XWiki Skins that are included in your XWiki Enterprise instance can be found on the server filesystem, inside the (% class="sectionblockcodecolored directory" %)webapps/xwiki/skins(%%) folder ) | ||
| 12 | {{id name="3b"/}} | ||
| 13 | |||
| 14 | == A. CSS files == | ||
| 15 | |||
| 16 | ==== A.1 Independent CSS Components ==== | ||
| 17 | |||
| 18 | |||
| 19 | |||
| 20 | * http://svn.xwiki.org/svnroot/xwiki/platform/web/trunk/standard/src/main/webapp/resources/uicomponents/ | ||
| 21 | * http://svn.xwiki.org/svnroot/xwiki/platform/web/trunk/standard/src/main/webapp/resources/js/xwiki/ | ||
| 22 | * SSX: | ||
| 23 | ** XWiki: | ||
| 24 | *** XWiki/TagCloud | ||
| 25 | *** XWiki/JumpToPage | ||
| 26 | *** XWiki/AdminSheet | ||
| 27 | ** Main: | ||
| 28 | *** Main/RecentChanges | ||
| 29 | *** Main/Spaces | ||
| 30 | ** Blog: | ||
| 31 | *** Blog/BlogStyle | ||
| 32 | *** Blog/ManageCategories | ||
| 33 | |||
| 34 | ==== A.2 Skin Dependent CSS ==== | ||
| 35 | |||
| 36 | * **style.css** | ||
| 37 | ** Is the top level style file. It's purpose is to include all the other files. It shouldn't have any other css in there. | ||
| 38 | * **print.css** | ||
| 39 | ** Formatting for the @media print | ||
| 40 | * **microformats.css** | ||
| 41 | ** Stylesheet to format the different microformats-enabled pages (user profile, blog, calendar...) | ||
| 42 | * files for IE support (ie.css, **ie-6.css**, **ie-all.css**, etc) | ||
| 43 | * specific css files for every skin (toucan.css, **colibri.css**, etc) | ||
| 44 | |||
| 45 | == B. Skin CSS Selectors == | ||
| 46 | |||
| 47 | [[CSS API Selectors>>CSSAPISelectors]] | ||
| 48 | |||
| 49 | Reset CSS -> need to set back the reseted values | ||
| 50 | |||
| 51 | ==== B.1 Skins Layout ==== | ||
| 52 | |||
| 53 | * http://platform.xwiki.org/xwiki/bin/view/AdminGuide/CSSLayout |