1 rizwank 1.1 %META:TOPICINFO{author="ArthurClemens" date="1092607954" format="1.0" version="1.2"}%
2 %TOC%
3 %STARTINCLUDE%
4 ---# Appendix B: TWiki CSS
5
6 _Listing of CSS class names emitted from TWiki core code and standard plugins, for the 01-Aug-2004 TWiki production release._
7
8 ---++ Who should read this document?
9
10 More or less all html elements generated by TWiki core code now have Cascading Style Sheet (CSS) tags. __Skin builders__ and others who want to change the appearance of the default TWiki installation or any of the skins can use this document to see what styles can be created for these html elements.
11
12 ---++ Naming conventions
13
14 1 All TWiki class names have the prefix =twiki=. So: twikiEditPage, twikiTopicAction, etcetera. Remember that CSS class names are case sensitive - TWiki CSS uses lowercase =tw=.
15 1 TWiki uses class names only (.twikiViewPage) and no id names (#twikiViewPage), to allow multiple class names. Class names are written using the dot prefix.
16 1 If you define your own CSS classes, it is preferable that you do not use the =twiki= prefix to prevent undesired overriding effects.
17
18 ---++ CSS classes
19
20 ---+++ Classes from core code
21
22 rizwank 1.1 |.twikiNew |Changes.pm |
23 |.twikiChangeFormButtonHolder |Edit.pm |
24 |.twikiChangeFormButton |Form.pm |
25 |.twikiForm |Form.pm |
26 |.twikiEditFormTextField |Form.pm |
27 |.twikiEditFormLabelField |Form.pm |
28 |.twikiEditFormTextAreaField |Form.pm |
29 |.twikiEditFormCheckboxButton |Form.pm |
30 |.twikiEditFormCheckboxButton |Form.pm |
31 |.twikiEditFormCheckboxField |Form.pm |
32 |.twikiEditFormRadioField |Form.pm |
33 |.twikiEditFormError |Form.pm |
34 |.twikiRadioButton |Form.pm |
35 |.twikiCheckbox |Form.pm |
36 |.twikiEditFormError |Form.pm |
37 |.twikiDiffTable |RDiff.pm |
38 |.twikiDiffDeletedHeader |RDiff.pm |
39 |.twikiDiffDeletedMarker |RDiff.pm |
40 |.twikiDiffDeletedText |RDiff.pm |
41 |.twikiDiffAddedHeader |RDiff.pm |
42 |.twikiDiffAddedMarker |RDiff.pm |
43 rizwank 1.1 |.twikiDiffAddedText |RDiff.pm |
44 |.twikiDiffChangedHeader |RDiff.pm |
45 |.twikiDiffChangedText |RDiff.pm |
46 |.twikiDiffUnchangedText |RDiff.pm |
47 |.twikiDiffLineNumberHeader |RDiff.pm |
48 |.twikiForm |Render.pm |
49 |.twikiAnchorLink |Render.pm |
50 |.twikiLink |Render.pm |
51 |.twikiNewLink |Render.pm |
52 |.twikiNew |Search.pm |
53 |.twikiAlert |Search.pm |
54 |.twikiAlert |Statistics.pm |
55 |.twikiAlert |TWiki.pm |
56 |.twikiToc |TWiki.pm |
57 |.twikiTocTitle |TWiki.pm |
58
59 ---+++ Classes from Plugins
60
61 *[[TablePlugin]]*
62 |.twikiSortedAscendingCol |!TablePlugin.pm |
63 |.twikiSortedDescendingCol |!TablePlugin.pm |
64 rizwank 1.1 |.twikiFirstCol |!TablePlugin.pm |
65
66 ---++ Going further
67
68 !PatternSkin makes fully use of CSS in its templates. Read the PatternSkin topic and PatternSkinCss to learn more about adjusting !PatternSkin, or creating your own CSS-based skin.
69
70 See also: DragonSkin.
71
72 Practical introduction to CSS: http://www.w3.org/Style/LieBos2e/enter/
73
74 -- TWiki:Main.ArthurClemens - 08 Aug 2004
75 %STOPINCLUDE%
76
|