- use right image path
- fixed icon alignment for rtl languages
This commit is contained in:
@@ -5,6 +5,11 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2005-10-31 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||||
|
* themes/*/css/theme_right.css.php:
|
||||||
|
- use right image path
|
||||||
|
- fixed icon alignment for rtl languages
|
||||||
|
|
||||||
2005-10-31 Marc Delisle <lem9@users.sourceforge.net>
|
2005-10-31 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* server_privileges.php: do not display No under the Password column
|
* server_privileges.php: do not display No under the Password column
|
||||||
if this is not a "real user" definition
|
if this is not a "real user" definition
|
||||||
|
@@ -296,11 +296,17 @@ div.warning {
|
|||||||
margin: 0.5em 0 0.5em 0;
|
margin: 0.5em 0 0.5em 0;
|
||||||
border: 0.1em solid #CC0000;
|
border: 0.1em solid #CC0000;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
|
|
||||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||||
background-image: url(../themes/original/img/s_warn.png);
|
background-image: url(../themes/darkblue_orange/img/s_warn.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 10px; 50%;
|
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
|
||||||
|
background-position: 10px 50%;
|
||||||
padding: 10px 10px 10px 36px;
|
padding: 10px 10px 10px 36px;
|
||||||
|
<?php } else {?>
|
||||||
|
background-position: 99% 50%;
|
||||||
|
padding: 10px 5% 10px 10px;
|
||||||
|
<?php }?>
|
||||||
<?php } else {?>
|
<?php } else {?>
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
<?php }?>
|
<?php }?>
|
||||||
@@ -323,14 +329,14 @@ div.error {
|
|||||||
border: 0.1em solid #ff0000;
|
border: 0.1em solid #ff0000;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||||
background-image: url(../themes/original/img/s_error.png);
|
background-image: url(../themes/darkblue_orange/img/s_error.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
|
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
|
||||||
background-position: 10px 50%;
|
background-position: 10px 50%;
|
||||||
padding: 10px 10px 10px 36px;
|
padding: 10px 10px 10px 36px;
|
||||||
<?php } else {?>
|
<?php } else {?>
|
||||||
background-position: 100% 50%;
|
background-position: 99% 50%;
|
||||||
padding: 10px 36px 10px 10px;
|
padding: 10px 5% 10px 10px;
|
||||||
<?php }?>
|
<?php }?>
|
||||||
<?php } else {?>
|
<?php } else {?>
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
@@ -354,13 +360,13 @@ fieldset.confirmation legend {
|
|||||||
border-right: 0.1em solid #FF0000;
|
border-right: 0.1em solid #FF0000;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||||
background-image: url(../themes/original/img/s_really.png);
|
background-image: url(../themes/darkblue_orange/img/s_really.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
|
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
|
||||||
background-position: 5px 50%;
|
background-position: 5px 50%;
|
||||||
padding: 0.2em 0.2em 0.2em 25px;
|
padding: 0.2em 0.2em 0.2em 25px;
|
||||||
<?php } else {?>
|
<?php } else {?>
|
||||||
background-position: 100% 50%;
|
background-position: 98% 50%;
|
||||||
padding: 0.2em 25px 0.2em 0.2em;
|
padding: 0.2em 25px 0.2em 0.2em;
|
||||||
<?php }?>
|
<?php }?>
|
||||||
<?php }?>
|
<?php }?>
|
||||||
|
@@ -215,8 +215,13 @@ div.warning {
|
|||||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||||
background-image: url(../themes/original/img/s_warn.png);
|
background-image: url(../themes/original/img/s_warn.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: 10px; 50%;
|
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
|
||||||
|
background-position: 10px 50%;
|
||||||
padding: 10px 10px 10px 36px;
|
padding: 10px 10px 10px 36px;
|
||||||
|
<?php } else {?>
|
||||||
|
background-position: 99% 50%;
|
||||||
|
padding: 10px 5% 10px 10px;
|
||||||
|
<?php }?>
|
||||||
<?php } else {?>
|
<?php } else {?>
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
<?php }?>
|
<?php }?>
|
||||||
@@ -243,8 +248,8 @@ div.error {
|
|||||||
background-position: 10px 50%;
|
background-position: 10px 50%;
|
||||||
padding: 10px 10px 10px 36px;
|
padding: 10px 10px 10px 36px;
|
||||||
<?php } else {?>
|
<?php } else {?>
|
||||||
background-position: 100% 50%;
|
background-position: 99% 50%;
|
||||||
padding: 10px 36px 10px 10px;
|
padding: 10px 5% 10px 10px;
|
||||||
<?php }?>
|
<?php }?>
|
||||||
<?php } else {?>
|
<?php } else {?>
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
@@ -275,7 +280,7 @@ fieldset.confirmation legend {
|
|||||||
background-position: 5px 50%;
|
background-position: 5px 50%;
|
||||||
padding: 0.2em 0.2em 0.2em 25px;
|
padding: 0.2em 0.2em 0.2em 25px;
|
||||||
<?php } else {?>
|
<?php } else {?>
|
||||||
background-position: 100% 50%;
|
background-position: 97% 50%;
|
||||||
padding: 0.2em 25px 0.2em 0.2em;
|
padding: 0.2em 25px 0.2em 0.2em;
|
||||||
<?php }?>
|
<?php }?>
|
||||||
<?php }?>
|
<?php }?>
|
||||||
|
Reference in New Issue
Block a user