You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2012/10/18 02:17:10 UTC

[9/9] git commit: Fix up some CSS to use Bootstrap

Fix up some CSS to use Bootstrap


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/29752d1f
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/29752d1f
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/29752d1f

Branch: refs/heads/5.4-js-rewrite
Commit: 29752d1f3c0b574d8502dd1efc0ce4b2dc5996c7
Parents: 0cbd81d
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Wed Oct 17 10:20:31 2012 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Wed Oct 17 10:20:31 2012 -0700

----------------------------------------------------------------------
 tapestry-core/src/test/app1/ToDoList.tml |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/29752d1f/tapestry-core/src/test/app1/ToDoList.tml
----------------------------------------------------------------------
diff --git a/tapestry-core/src/test/app1/ToDoList.tml b/tapestry-core/src/test/app1/ToDoList.tml
index 22a9c10..cd6ad64 100644
--- a/tapestry-core/src/test/app1/ToDoList.tml
+++ b/tapestry-core/src/test/app1/ToDoList.tml
@@ -6,21 +6,21 @@
         
         <t:errors/>
         
-        <table class="t-data-table">
+        <table class="table table-bordered">
             <tr>
                 <th> Title </th>
                 <th> Reorder </th>
             </tr>
             <tr t:type="Loop" source="items" value="item" encoder="toDoItemEncoder">
                 <td>
-                    <input t:type="TextField" t:id="title" value="item.title" size="30"
+                    <input t:type="TextField" t:id="title" value="item.title" size="30" class="input-large"
                         validate="required"/>
                 </td>
                 <td> NOT YET </td>            
             </tr>
             <tr>
                 <td colspan="2">
-                    <input type="submit" value="Update ToDos"/>
+                    <input type="submit" value="Update ToDos" class="btn"/>
                     <input t:type="Submit" t:id="addNew" value="Add new ToDo"/>
                 </td>
             </tr>
@@ -30,7 +30,7 @@
     
     
     <p>
-        <a t:type="ActionLink" t:id="reset">reset the database</a>
+        <a t:type="ActionLink" t:id="reset" class="btn btn-warning">reset the database</a>
     </p>
     
 </html>
\ No newline at end of file