Paradice 3.0b

This commit is contained in:
Andy Scherzinger
2010-06-15 12:57:48 -04:00
committed by Marc Delisle
parent 1711f1b029
commit cc8f34c056
28 changed files with 173 additions and 145 deletions

View File

@@ -3,7 +3,7 @@
/** /**
* navigation css file from theme Paradice * navigation css file from theme Paradice
* *
* @version $Id$ * @version $Id: theme_left.css.php 31 2010-04-06 18:39:37Z andyscherzinger $
* @package phpMyAdmin-theme * @package phpMyAdmin-theme
* @subpackage Paradice * @subpackage Paradice
*/ */
@@ -12,11 +12,14 @@
if (!defined('PMA_MINIMUM_COMMON')) { if (!defined('PMA_MINIMUM_COMMON')) {
exit(); exit();
} }
$ipath = $_SESSION['PMA_Theme']->getImgPath();
?> ?>
/******************************************************************************/ /******************************************************************************/
/* general tags */ /* general tags */
html { html {
font-size: <?php echo (null !== $GLOBALS['PMA_Config']->get('fontsize') ? $GLOBALS['PMA_Config']->get('fontsize') : $_COOKIE['pma_fontsize']); ?>; font-size: <?php echo (null !== $_SESSION['PMA_Config']->get('fontsize') ? $_SESSION['PMA_Config']->get('fontsize') : $_COOKIE['pma_fontsize']); ?>;
} }
input, select, textarea { input, select, textarea {
@@ -28,11 +31,11 @@ body {
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>; font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
<?php } ?> <?php } ?>
font-size: 0.8em; font-size: 0.8em;
background: <?php echo (isset($_SESSION['tmp_user_values']['custom_color']) ? $_SESSION['tmp_user_values']['custom_color'] : $GLOBALS['cfg']['NaviBackground']); ?>; background: <?php echo (isset($_SESSION['userconf']['custom_color']) ? $_SESSION['userconf']['custom_color'] : $GLOBALS['cfg']['NaviBackground']); ?>;
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>; color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
margin: 0; margin: 0;
padding: 0.2em 0.2em 0.2em 0.2em; padding: 0.2em 0.2em 0.2em 0.2em;
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>leftBgnd.png); background-image: url(<?php echo $ipath; ?>leftBgnd.png);
background-position:left top; background-position:left top;
background-repeat: repeat-y; background-repeat: repeat-y;
} }
@@ -67,7 +70,7 @@ select#lightm_db {
width: 100%; width: 100%;
font-weight: bold; font-weight: bold;
text-align: left; text-align: left;
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png); background-image: url(<?php echo $ipath; ?>s_db.png);
background-position:left top; background-position:left top;
background-repeat: no-repeat; background-repeat: no-repeat;
padding-left: 16px; padding-left: 16px;
@@ -129,11 +132,11 @@ ul#databaseList {
padding-left: 1.5em; padding-left: 1.5em;
list-style-type: none; list-style-type: none;
list-style-position:outside; list-style-position:outside;
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/paradice/img/dbitem_ltr.png); list-style-image: url(<?php echo $ipath; ?>dbitem_ltr.png);
} }
ul#databaseList ul { ul#databaseList ul {
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/paradice/img/dbitem_ltr2.png); list-style-image: url(<?php echo $ipath; ?>dbitem_ltr2.png);
padding-left: 18px; padding-left: 18px;
} }
@@ -178,7 +181,7 @@ div#leftframelinks a:hover {
/* serverlist */ /* serverlist */
#body_leftFrame #list_server { #body_leftFrame #list_server {
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_host.png); list-style-image: url(<?php echo $ipath; ?>s_host.png);
list-style-position: inside; list-style-position: inside;
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
@@ -198,7 +201,7 @@ div#left_tableList {
div#left_tableList ul { div#left_tableList ul {
list-style-type: none; list-style-type: none;
list-style-position: outside; list-style-position: outside;
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/paradice/img/bd_sbrowse.png); list-style-image: url(<?php echo $ipath; ?>bd_sbrowse.png);
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
@@ -227,7 +230,7 @@ div#left_tableList li {
/* marked items */ /* marked items */
div#left_tableList > ul li.marked > a, div#left_tableList > ul li.marked > a,
div#left_tableList > ul li.marked { div#left_tableList > ul li.marked {
background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>; background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>; color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
} }
<?php } ?> <?php } ?>
@@ -246,9 +249,9 @@ div#left_tableList img {
} }
div#left_tableList ul ul { div#left_tableList ul ul {
margin-left: 0; margin-<?php echo $left; ?>: 0;
padding-left: 0.1em; padding-<?php echo $left; ?>: 0.1em;
border-left: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>; border-<?php echo $left; ?>: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
padding-bottom: 0.1em; padding-bottom: 0.1em;
border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>; border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
} }

View File

@@ -3,7 +3,7 @@
/** /**
* print css file from theme Original * print css file from theme Original
* *
* @version $Id$ * @version $Id: theme_print.css.php 12 2008-05-28 20:51:41Z andyscherzinger $
* @package phpMyAdmin-theme * @package phpMyAdmin-theme
* @subpackage Paradice * @subpackage Paradice
*/ */

View File

@@ -3,7 +3,7 @@
/** /**
* main css file from theme Paradice * main css file from theme Paradice
* *
* @version $Id$ * @version $Id: theme_right.css.php 31 2010-04-06 18:39:37Z andyscherzinger $
* @package phpMyAdmin-theme * @package phpMyAdmin-theme
* @subpackage Paradice * @subpackage Paradice
*/ */
@@ -16,7 +16,7 @@ if (!defined('PMA_MINIMUM_COMMON')) {
/******************************************************************************/ /******************************************************************************/
/* general tags */ /* general tags */
html { html {
font-size: <?php echo (null !== $GLOBALS['PMA_Config']->get('fontsize') ? $GLOBALS['PMA_Config']->get('fontsize') : $_COOKIE['pma_fontsize']);?>; font-size: <?php echo (null !== $_SESSION['PMA_Config']->get('fontsize') ? $_SESSION['PMA_Config']->get('fontsize') : $_COOKIE['pma_fontsize']);?>;
} }
input, select, textarea { input, select, textarea {
@@ -1267,7 +1267,8 @@ li#li_select_lang {
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png); list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
} }
li#li_select_mysql_collation { li#li_select_mysql_collation,
li#li_select_mysql_charset {
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png); list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
color: #1F457E; color: #1F457E;
} }
@@ -1530,3 +1531,27 @@ code.sql {
display: block; display: block;
border: 1px solid #FBFBFF; border: 1px solid #FBFBFF;
} }
/**
* Progress bar styles
*/
div.upload_progress_bar_outer
{
border: 1px solid black;
width: 202px;
}
div.upload_progress_bar_inner
{
background-color: <?php echo (isset($_SESSION['userconf']['custom_color']) ? $_SESSION['userconf']['custom_color'] : $GLOBALS['cfg']['NaviBackground']); ?>;
width: 0px;
height: 12px;
margin: 1px;
}
table#serverconnection_src_remote,
table#serverconnection_trg_remote,
table#serverconnection_src_local,
table#serverconnection_trg_local {
float:left;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 B

BIN
paradice/img/dot_black.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

BIN
paradice/img/dot_blue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

BIN
paradice/img/dot_green.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

BIN
paradice/img/dot_red.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

BIN
paradice/img/dot_violet.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

BIN
paradice/img/dot_yellow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

BIN
paradice/img/eye.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 750 B

BIN
paradice/img/eye_grey.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 550 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

BIN
paradice/img/new_data.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
paradice/img/new_struct.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
paradice/img/s_fontsize.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1022 B

BIN
paradice/img/s_sync.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 B

View File

@@ -3,7 +3,7 @@
/** /**
* Theme information * Theme information
* *
* @version $Id$ * @version $Id: info.inc.php 12 2008-05-28 20:51:41Z andyscherzinger $
* @package phpMyAdmin-theme * @package phpMyAdmin-theme
* @subpackage Paradice * @subpackage Paradice
*/ */

View File

@@ -4,7 +4,7 @@
* configures general layout * configures general layout
* for detailed layout configuration please refer to the css files * for detailed layout configuration please refer to the css files
* *
* @version $Id$ * @version $Id: layout.inc.php 12 2008-05-28 20:51:41Z andyscherzinger $
* @package phpMyAdmin-theme * @package phpMyAdmin-theme
* @subpackage Paradice * @subpackage Paradice
*/ */