Changeset 1339
- Timestamp:
- Jun 4, 2006, 12:13:38 PM (18 years ago)
- Location:
- trunk/template/yoga
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/template/yoga/admin/stats.tpl
r918 r1339 6 6 7 7 <h3>{L_STAT_DETAIL_TITLE}</h3> 8 <table class="table2" width="60%">9 <tr class="throw">8 <table class="table2" id="dailyStats"> 9 <tr class="throw"> 10 10 <th>{L_VALUE}</th> 11 11 <th>{L_PAGES_SEEN}</th> 12 12 <th>{L_VISITORS}</th> 13 13 <th>{L_PICTURES}</th> 14 </tr>14 </tr> 15 15 <!-- BEGIN statrow --> 16 16 <tr class="{statrow.T_CLASS}"> 17 17 <td>{statrow.VALUE}</td> 18 <td >{statrow.PAGES}</td>19 <td >{statrow.VISITORS}</td>20 <td >{statrow.IMAGES}</td>18 <td class="number">{statrow.PAGES}</td> 19 <td class="number">{statrow.VISITORS}</td> 20 <td class="number">{statrow.IMAGES}</td> 21 21 </tr> 22 22 <!-- END statrow --> … … 24 24 25 25 <h3>{L_DATE_TITLE}</h3> 26 <table class="table2" width="98%">27 <tr class="throw">26 <table class="table2" id="detailedStats"> 27 <tr class="throw"> 28 28 <th>{L_STAT_HOUR}</th> 29 29 <th>{L_STAT_LOGIN}</th> … … 31 31 <th>{L_STAT_CATEGORY}</th> 32 32 <th>{L_STAT_FILE}</th> 33 <th>{L_STAT_PICTURE}</th> 34 </tr>33 <th>{L_STAT_PICTURE}</th> 34 </tr> 35 35 <!-- BEGIN detail --> 36 36 <tr class="{detail.T_CLASS}"> 37 <td nowrap>{detail.HOUR}</td>37 <td class="hour">{detail.HOUR}</td> 38 38 <td>{detail.LOGIN}</td> 39 39 <td>{detail.IP}</td> 40 <td>{detail.CATEGORY}</td>41 <td>{detail.FILE}</td>42 <td>{detail.PICTURE}</td>40 <td>{detail.CATEGORY}</td> 41 <td>{detail.FILE}</td> 42 <td>{detail.PICTURE}</td> 43 43 </tr> 44 44 <!-- END detail --> 45 45 </table> 46 47 46 48 47 <!-- BEGIN navigation --> -
trunk/template/yoga/default-layout.css
r1274 r1339 53 53 /** General defaults **/ 54 54 INPUT {margin: 0;} 55 ul, dl, li{ text-align: left;}55 UL, DL, LI { text-align: left;} 56 56 TABLE { /* horizontaly centered */ 57 57 margin-left: auto; … … 59 59 } 60 60 /* for debugging purpose */ 61 pre{ text-align:left; }61 PRE { text-align:left; } 62 62 63 63 /** forms **/ 64 64 65 form{ padding: 0em; }66 67 form p{65 FORM { padding: 0em; } 66 67 FORM P { 68 68 text-align: center; 69 69 margin-top: 2em; … … 74 74 } 75 75 76 textarea.description {76 TEXTAREA.description { 77 77 height: 100px; 78 78 width: 500px; 79 79 overflow: auto; 80 80 } 81 select.categoryList {81 SELECT.categoryList { 82 82 width: 100%; 83 83 } … … 85 85 /** go to an admin.css ? **/ 86 86 87 .table2 {87 TABLE.table2 { 88 88 border: 1px solid black; 89 89 margin: 1em auto; … … 91 91 } 92 92 93 .table2 TD,.table2 TH {93 TABLE.table2 TD, TABLE.table2 TH { 94 94 padding: 0 1em; 95 95 } 96 96 97 form#add_virtual p { text-align: left; } 97 TABLE.table2 TR { 98 text-align: left; 99 } 100 101 TABLE.table2 TR.throw { 102 text-align: center; 103 } 104 105 .hour { 106 white-space: pre; 107 } 108 109 .number { 110 text-align: right; 111 } 112 113 TABLE#dailyStats { 114 width: 60%; 115 } 116 117 TABLE#detailedStats { 118 width: 80%; 119 } 120 121 FORM#add_virtual P { text-align: left; } 98 122 FORM#categoryOrdering, FORM#addVirtual { 99 123 padding-left: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */ -
trunk/template/yoga/theme/clear/theme.css
-
Property
svn:keywords
set to
Author Date Id Revision
r1286 r1339 11 11 } 12 12 13 H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover {13 H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover, .row1 { 14 14 background-color: #d3d3d3; 15 15 } -
Property
svn:keywords
set to
-
trunk/template/yoga/theme/dark/theme.css
r1326 r1339 22 22 } 23 23 24 H3, #the_page, #imageHeaderBar, #imageToolBar A:hover {24 H3, #the_page, #imageHeaderBar, #imageToolBar A:hover, .row1 { 25 25 background-color: #3f3f3f; 26 26 }
Note: See TracChangeset
for help on using the changeset viewer.