Changeset 1271
- Timestamp:
- 01/01/2009 02:37:34 PM (20 months ago)
- Location:
- branches/1.1.6.6
- Files:
-
- 2 modified
-
css/wikka.css (modified) (2 diffs)
-
templates/header.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1.6.6/css/wikka.css
r1261 r1271 33 33 34 34 .page { 35 position: relative; /* needed for the correct positioning of system messages */ 35 36 color: #000; 36 37 font-size: 13px; … … 467 468 } 468 469 469 em.error { 470 .error { 471 position: absolute; 472 top: 1.5em; 473 right: 1.5em; 474 max-width: 40%; 475 border: 2px solid #A33; 476 padding: .2em .4em; 470 477 color: #A33; 478 background-color: #FEE; 471 479 font-style: normal; 472 480 font-weight: bold; 473 font-size: 95%; 474 } 475 476 em.success { 481 font-size: 90%; 482 } 483 484 .success { 485 position: absolute; 486 top: 1.5em; 487 right: 1.5em; 488 max-width: 40%; 489 border: 2px solid #3A3; 490 padding: .2em .4em; 477 491 color: #3A3; 492 background-color: #EFE; 478 493 font-style: normal; 479 494 font-weight: bold; 480 font-size: 9 5%;495 font-size: 90%; 481 496 } 482 497 -
branches/1.1.6.6/templates/header.php
r1237 r1271 43 43 ?> 44 44 </head> 45 <body <?php echo $message ? "onLoad=\"alert('".$message."');\" " : "" ?> > 45 <body> 46 <?php 47 //display system messages 48 if (isset($message) && strlen($message)>0) 49 { 50 echo '<div class="success">'.$message.'</div>'; 51 } 52 ?> 46 53 <div class="header"> 47 54 <h2><a id="homepage_link" href="<?php echo $this->href('', $this->config['root_page'], ''); ?>"><?php echo $this->config['wakka_name'];?></a> : <a href="<?php echo $this->href('backlinks', '', ''); ?>" title="Display a list of pages linking to <?php echo $this->tag ?>"><?php echo $this->GetPageTag(); ?></a></h2>