History of CssChangelog

Differences from version 10 to 19



@@ -2,47 +2,79 @@

 
 Finally we have the templates more or less in a usable state and we are now starting to document template changes that affect css classes globally.
 
-!Clyde CSS changes
-!!!2005-02-05 - xing
+{maketoc}
+! ReleaseTwo CSS changes
+all changes made in dillinger will be documented with a substitution expression to make upgrading from one version to another as simple as possible. the reason why we have to make changes at all, is because bitweaver is evolving rather quickly and we need to adjust to the demands set by the users. styling should be simple, but should also be flexible. personally, i think we are on the right track to achieving this goal.
+
+all the substitution strings are meant for [http://vim.sourceforge.net|vim]
+
+so, if you are planning on upgrading a theme from ReleaseOne to dillinger, please read the following section carefully.
+
+^before you make any changes, please make sure you make a backup copy of your theme.^
+
+!! 2005-05-07 - xing
+* conversion of .navbar to different types of bars
+** tabs --> class="pageactions tabs"
+** tools --> class="pageactions tools"
+** sorting --> class="pageactions sort"
+** for more information view TemplateChangelog
+{code()}
+:%s/\.navbar/.pageactions/g
+:%s/\.above//g
+:%s/\.below//g
+{code}
+to further differentiate between the different types of pageactions, you can use the .tools .tabs and .sort selectors.
+
+---
+
+! ReleaseOne CSS changes
+!! 2005-12-01 - xing
+remove last occurances of .tiki in class and id names in all template files and replace it with .bit
+
+!! 2005-04-22 - xing
+* moving from .contain and .admin to .display, .edit, .listing and .admin
+** for more information view FutureTemplate
+
+!! 2005-02-05 - xing
 * some tables are replaced with easily viewable item listings that contain a lot of data. tables are cumbersome and not practical when viewing a lot of data at once.
 {CODE()}
-<ul class="data">
- <li class="item odd">item 1</li>
- <li class="item even">item 2</li>
- <li class="item odd">item 3</li>
-</ul>
+<ul class="data">
+ <li class="item odd">item 1</li>
+ <li class="item even">item 2</li>
+ <li class="item odd">item 3</li>
+</ul>
 {CODE}
 
-!!!2005-02-03 - xing
-* forgot to mention that we want to change the navbar from just being links, into a &lt;ul&gt; list of items. this is backwards compatible with the previous system. so it's:
+!! 2005-02-03 - xing
+* forgot to mention that we want to change the navbar from just being links, into a <ul> list of items. this is backwards compatible with the previous system. so it's:
 {CODE()}
-&lt;div class=&quot;navbar&quot;&gt;
- &lt;ul&gt;
- &lt;li&gt;&lt;a href=&quot;url1&quot;&gt;link1&lt;/a&gt;&lt;/li&gt;
- &lt;li&gt;&lt;a href=&quot;url2&quot;&gt;link2&lt;/a&gt;&lt;/li&gt;
- &lt;li&gt;&lt;a href=&quot;url3&quot;&gt;link3&lt;/a&gt;&lt;/li&gt;
- &lt;/ul&gt;
-&lt;/div&gt;
+<div class="navbar">
+ <ul>
+ <li><a href="url1">link1</a></li>
+ <li><a href="url2">link2</a></li>
+ <li><a href="url3">link3</a></li>
+ </ul>
+</div>
 {CODE}
 
-!!!2005-02-02 - xing
-* decided to replace and expand the containing dev classes. currently we only use .admin &lt;pkg&gt; and .contain &lt;pkg&gt;. this will be changed to
-** .admin &lt;pkg&gt;
-** .edit &lt;pkg&gt;
-** .listing &lt;pkg&gt;
-** .display &lt;pkg&gt;
+!! 2005-02-02 - xing
+* decided to replace and expand the containing dev classes. currently we only use .admin <pkg> and .contain <pkg>. this will be changed to
+** .admin <pkg>
+** .edit <pkg>
+** .listing <pkg>
+** .display <pkg>
 
-!!!2005-01-26 - xing
+!! 2005-01-26 - xing
 * added the class .menu to the top menu bar. this is now conform with other menus in tp
 
-!!!2005-01-24 - xing
-* removed inclusion of base.css from the &lt;head&gt; section. you can still use base.css by adding
+!! 2005-01-24 - xing
+* removed inclusion of base.css from the <head> section. you can still use base.css by adding
 + @import url('../../base.css');
 + to the top line of your css file (has to be line 1)
 
-!!!2004-12-28 - xing
-* removed any occurances of target=&quot;...&quot; since that attribute isn't allowed in XHTML 1.0 Strict anymore
-* introduced new class=&quot;external&quot; for links leaving site. this class can be used to highlight links that leave the site to 'warn' the user (currently style is set in base.css)
+!! 2004-12-28 - xing
+* removed any occurances of target="..." since that attribute isn't allowed in XHTML 1.0 Strict anymore
+* introduced new class="external" for links leaving site. this class can be used to highlight links that leave the site to 'warn' the user (currently style is set in base.css)
 * internal links don't warrant a special class as all links are considered internal.
 * removed more pesky tikiwiki classes
 ** tikilink

@@ -50,17 +82,12 @@

 ** rssitem
 ** ...
 
-!!!2004-12-13 - xing
+!! 2004-12-13 - xing
 * changed div .appmenu and .admenu to .menu
 + (it is still possible to access these module individually by using the unique module css class)
 * above change makes it possible to use .head and .item for the menus instead of .menuhead and .menuoption
 * to update your custom css file do the following:
-+ .menuhead --&gt; .menu .head
-+ .menuoption --&gt; .menu .item
-* menu structure has also changed somewhat to accomodate for the new css driven dropdown menus. all menus are now unordered lists. this should not concern you though, as the basic styling of the list is taken care of base.css. see ReleaseClydeChangelog
++ .menuhead --> .menu .head
++ .menuoption --> .menu .item
+* menu structure has also changed somewhat to accomodate for the new css driven dropdown menus. all menus are now unordered lists. this should not concern you though, as the basic styling of the list is taken care of base.css. see ReleaseOneChangelog
 
-!!!notes for the future - xing
-* these changes here are notes for me to remind myself of certain things that should be done
-* apply the style 'menu hor' to the top navigation bar instead of just 'hor'
-* get rid of base.css
-* these changes are being implemented in the experimental theme '__phage__'
Page History
Date/CommentUserIPVersion
02 Dec 2005 (11:39 UTC)
xing194.152.164.4519
Current • Source
xing194.152.164.4518
View • Compare • Difference • Source
xing194.152.164.4517
View • Compare • Difference • Source
xing194.152.164.4516
View • Compare • Difference • Source
xing194.152.164.4515
View • Compare • Difference • Source
xing194.152.164.4514
View • Compare • Difference • Source
xing194.152.164.4513
View • Compare • Difference • Source
xing194.152.164.4511
View • Compare • Difference • Source
xing194.152.164.4510
View • Compare • Difference • Source
xing194.152.164.459
View • Compare • Difference • Source
xing194.152.164.458
View • Compare • Difference • Source
xing62.99.151.1707
View • Compare • Difference • Source
xing194.152.164.456
View • Compare • Difference • Source
xing194.152.164.455
View • Compare • Difference • Source
xing194.152.164.454
View • Compare • Difference • Source
xing194.152.164.453
View • Compare • Difference • Source
xing194.152.164.452
View • Compare • Difference • Source