Changeset 947

Show
Ignore:
Timestamp:
12/16/2007 01:09:23 AM (7 months ago)
Author:
rats
Message:

see CHANGELOG

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r946 r947  
    992007-23-15 Benedikt Heintel 
    1010        - TOOLS: 
     11                * Fixed #714: undefined index in pma-style sheet (thanks to joximu) 
    1112                * Update Squirrelmail to version 1.4.13 (#932) 
    1213 
  • trunk/gui/tools/pma/themes/omega/css/theme_right.css.php

    r827 r947  
    6868    font-style:         normal; 
    6969    cursor:             help; 
    70 } 
    71  
    72 #maincontainer { 
    73     background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png); 
    74     background-position: <?php echo $right; ?> bottom; 
    75     background-repeat: no-repeat; 
    76     border-bottom: 1px solid silver; 
    7770} 
    7871 
     
    592585} 
    593586 
     587/** 
     588 * login form 
     589 */ 
     590body.loginform h1, 
     591body.loginform a.logo { 
     592        display: block; 
     593        text-align: center; 
     594} 
     595 
     596body.loginform { 
     597        text-align: center; 
     598} 
     599 
     600body.loginform div.container { 
     601        text-align: <?php echo $left; ?>; 
     602        width: 30em; 
     603        margin: 0 auto; 
     604} 
     605 
     606form.login label { 
     607        float: <?php echo $left; ?>; 
     608        width: 10em; 
     609        font-weight: bolder; 
     610} 
    594611 
    595612/******************************************************************************/ 
     
    685702ul#topmenu li { 
    686703    border-bottom: 0; 
     704    margin-top: 4px; 
    687705} 
    688706 
     
    10991117/* end querybox */ 
    11001118 
     1119/* main page */ 
     1120 
     1121#maincontainer { 
     1122        background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png); 
     1123        background-position: <?php echo $right; ?> bottom; 
     1124        background-repeat: no-repeat; 
     1125        border-bottom: 1px solid silver; 
     1126} 
     1127 
     1128#mysqlmaininformation, 
     1129#pmamaininformation { 
     1130        float: <?php echo $left; ?>; 
     1131        width: 49%; 
     1132} 
     1133 
     1134#maincontainer ul { 
     1135        list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>item_<?php echo $GLOBALS['text_dir']; ?>.png); 
     1136        vertical-align: middle; 
     1137} 
     1138 
     1139#maincontainer li { 
     1140         margin-bottom: 0.3em; 
     1141} 
     1142 
     1143/* END main page */ 
     1144 
     1145#selflink { 
     1146        clear: both; 
     1147        display: block; 
     1148        margin-top: 1em; 
     1149        margin-bottom: 1em; 
     1150        width: 100%; 
     1151        border-top: 0.1em solid silver; 
     1152        text-align: <?php echo $right; ?>; 
     1153}