Changeset 458 for trunk/modules/user_guide
- Timestamp:
- 09/01/2007 12:22:23 PM (15 months ago)
- Location:
- trunk/modules/user_guide/views/user_guide
- Files:
-
- 4 modified
-
css/layout.php (modified) (2 diffs)
-
js/effects.php (modified) (1 diff)
-
menu.php (modified) (2 diffs)
-
template.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/user_guide/views/user_guide/css/layout.php
r455 r458 10 10 */ 11 11 body { background: #f7fbf1; color: #111; font-size: 82%; line-height: 140%; font-family: "Lucida Grande", Arial, Verdana, sans-serif; } 12 /* Hacks for Firefox and Safari */ 13 body { text-shadow: 0 0 0 #000; -moz-opacity: 0.999999; } 12 14 a { color: #449; text-decoration: none; } 13 15 h1 { border-bottom: solid 1px #999; font-size: 2.5em; text-align: center; color: #b43f11; } … … 25 27 #menu { position: fixed; top: 0; right: 1.5em; width: 10em; padding: 0.2em 0; } 26 28 #menu ul { margin: 0 0.2em; list-style: none; color: #b43f11; } 27 #menu li.first { font-size: 1.4em;padding-top: 0.2em; }29 #menu li.first { padding-top: 0.2em; } 28 30 #menu li.active li.lite { color: #b43f11; } 29 #menu li ul { padding: 0.1em 0; margin-right: 0; font-size: 0.7em;color: #444; }30 #menu li ul a { color: #333; }31 #menu li ul { padding: 0.1em 0; margin-right: 0; color: #444; } 32 #menu li ul a { padding-left: 0.4em; color: #333; } 31 33 #menu li ul a:hover { font-weight: bold; color: #2f4f14; } 32 #menu li span { cursor: pointer; } 34 #menu li ul li:before { content: "«"; } 35 #menu li span { text-shadow: 1px 1px 1px #333; font-size: 1.3em; cursor: pointer; } 33 36 #body { padding: 0.3em 1em; background: #fff; } 34 37 #body ol, #body ul { margin: 1em; margin-left: 2.5em; } -
trunk/modules/user_guide/views/user_guide/js/effects.php
r455 r458 2 2 $(document).ready(function(){ 3 3 // Menu opacity hover effect, much fancy pants! 4 $('#menu').css('opacity', 0.7 5).hover(function(){5 $(this).fadeTo(100, 0.9);4 $('#menu').css('opacity', 0.7).hover(function(){ 5 $(this).fadeTo(100, 1); 6 6 }, function(){ 7 7 $(this).fadeTo(300, 0.7) -
trunk/modules/user_guide/views/user_guide/menu.php
r454 r458 60 60 61 61 ?> 62 <li class="first<?php echo $active ?>"><span><? =$category ?></span><ul>62 <li class="first<?php echo $active ?>"><span><?php echo $category ?></span><ul> 63 63 <?php 64 64 … … 68 68 69 69 ?> 70 <li class="<?php echo $active ?>"> «<?php echo html::anchor(strtolower('user_guide/'.$category.'/'.$section), $section) ?></li>70 <li class="<?php echo $active ?>"><?php echo html::anchor(strtolower('user_guide/'.$category.'/'.$section), $section) ?></li> 71 71 <?php 72 72 -
trunk/modules/user_guide/views/user_guide/template.php
r451 r458 6 6 <title>Kohana User Guide</title> 7 7 8 <link type="text/css" rel="stylesheet" href="<? =url::base(TRUE) ?>user_guide/css/layout.css" />8 <link type="text/css" rel="stylesheet" href="<?php echo url::base(TRUE) ?>user_guide/css/layout.css" /> 9 9 10 <script type="text/javascript" src="<? =url::base(TRUE) ?>user_guide/js/jquery.js"></script>11 <script type="text/javascript" src="<? =url::base(TRUE) ?>user_guide/js/plugins.js"></script>12 <script type="text/javascript" src="<? =url::base(TRUE) ?>user_guide/js/effects.js"></script>10 <script type="text/javascript" src="<?php echo url::base(TRUE) ?>user_guide/js/jquery.js"></script> 11 <script type="text/javascript" src="<?php echo url::base(TRUE) ?>user_guide/js/plugins.js"></script> 12 <script type="text/javascript" src="<?php echo url::base(TRUE) ?>user_guide/js/effects.js"></script> 13 13 14 14 </head> … … 17 17 18 18 <div id="menu"> 19 <? =$menu ?>19 <?php echo $menu ?> 20 20 </div> 21 21 22 22 <!-- @start Body --> 23 23 <div id="body"> 24 <? =$content ?>24 <?php echo $content ?> 25 25 </div> 26 26 <!-- @end Body --> … … 28 28 <!-- @start Footer --> 29 29 <div id="footer"> 30 <p id="copyright">copyright (c) 2007Kohana Team :: All rights reserved :: Rendered in {execution_time} seconds</p>30 <p id="copyright">copyright (c) <?php echo date('Y') ?> Kohana Team :: All rights reserved :: Rendered in {execution_time} seconds</p> 31 31 </div> 32 32 <!-- @end Footer -->
