Changeset 3034 for trunk/system/views
- Timestamp:
- 07/10/2008 01:02:53 PM (5 months ago)
- Location:
- trunk/system/views
- Files:
-
- 3 modified
-
kohana_profiler.php (modified) (2 diffs)
-
kohana_profiler_table.css (modified) (5 diffs)
-
kohana_profiler_table.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/views/kohana_profiler.php
r3033 r3034 15 15 font: inherit; 16 16 } 17 #kohana-profiler p17 #kohana-profiler .kp-meta 18 18 { 19 19 margin: 0 0 10px; … … 33 33 } 34 34 ?> 35 <p >Profiler executed in <?php echo number_format($execution_time, 3) ?>s</p>35 <p class="kp-meta">Profiler executed in <?php echo number_format($execution_time, 3) ?>s</p> 36 36 </div> -
trunk/system/views/kohana_profiler_table.css
r3033 r3034 1 #kohana-profiler table1 #kohana-profiler .kp-table 2 2 { 3 3 font-size: 1.0em; … … 10 10 margin-bottom: 10px; 11 11 } 12 #kohana-profiler table td12 #kohana-profiler .kp-table td 13 13 { 14 14 background-color: #FFFFFF; … … 17 17 vertical-align: top; 18 18 } 19 #kohana-profiler table .kp-title td19 #kohana-profiler .kp-table .kp-title td 20 20 { 21 21 font-weight: bold; 22 22 background-color: inherit; 23 23 } 24 #kohana-profiler table .kp-altrow td24 #kohana-profiler .kp-table .kp-altrow td 25 25 { 26 26 background-color: #F7FBFF; 27 27 } 28 #kohana-profiler table .kp-totalrow td28 #kohana-profiler .kp-table .kp-totalrow td 29 29 { 30 30 background-color: #FAFAFA; … … 32 32 font-weight: bold; 33 33 } 34 #kohana-profiler table .kp-column34 #kohana-profiler .kp-table .kp-column 35 35 { 36 36 width: 100px; … … 38 38 text-align: center; 39 39 } 40 #kohana-profiler table .kp-data, #kohana-profilertable .kp-name40 #kohana-profiler .kp-table .kp-data, #kohana-profiler .kp-table .kp-name 41 41 { 42 42 background-color: #FAFAFB; 43 43 vertical-align: top; 44 44 } 45 #kohana-profiler table .kp-name45 #kohana-profiler .kp-table .kp-name 46 46 { 47 47 width: 200px; 48 48 border-right: 1px solid #E5EFF8; 49 49 } 50 #kohana-profiler table .kp-altrow .kp-data, #kohana-profilertable .kp-altrow .kp-name50 #kohana-profiler .kp-table .kp-altrow .kp-data, #kohana-profiler .kp-table .kp-altrow .kp-name 51 51 { 52 52 background-color: #F6F8FB; -
trunk/system/views/kohana_profiler_table.php
r3033 r3034 1 <table >1 <table class="kp-table"> 2 2 <?php 3 3 foreach ($rows as $row):
