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

@@ -1,16 +1,16 @@
<?php <?php
/* vim: set expandtab sw=4 ts=4 sts=4: */ /* vim: set expandtab sw=4 ts=4 sts=4: */
/** /**
* 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
*/ */
/** /**
* Theme information * Theme information
*/ */
$theme_name = 'Paradice'; $theme_name = 'Paradice';
$theme_full_version = '2.9'; $theme_full_version = '2.9';
?> ?>

View File

@@ -1,116 +1,116 @@
<?php <?php
/* vim: set expandtab sw=4 ts=4 sts=4: */ /* vim: set expandtab sw=4 ts=4 sts=4: */
/** /**
* 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
*/ */
/** /**
* navi frame * navi frame
*/ */
// navi frame width // navi frame width
$GLOBALS['cfg']['NaviWidth'] = 164; $GLOBALS['cfg']['NaviWidth'] = 164;
// foreground (text) color for the navi frame // foreground (text) color for the navi frame
$GLOBALS['cfg']['NaviColor'] = '#FFFFFF'; $GLOBALS['cfg']['NaviColor'] = '#FFFFFF';
// background for the navi frame // background for the navi frame
$GLOBALS['cfg']['NaviBackground'] = '#3674CF'; $GLOBALS['cfg']['NaviBackground'] = '#3674CF';
// foreground (text) color of the pointer in navi frame // foreground (text) color of the pointer in navi frame
$GLOBALS['cfg']['NaviPointerColor'] = '#000000'; $GLOBALS['cfg']['NaviPointerColor'] = '#000000';
// background of the pointer in navi frame // background of the pointer in navi frame
$GLOBALS['cfg']['NaviPointerBackground'] = '#5796EF'; $GLOBALS['cfg']['NaviPointerBackground'] = '#5796EF';
// text color of the selected database name (when showing the table list) // text color of the selected database name (when showing the table list)
$GLOBALS['cfg']['NaviDatabaseNameColor'] = '#FFFFFF'; $GLOBALS['cfg']['NaviDatabaseNameColor'] = '#FFFFFF';
/** /**
* main frame * main frame
*/ */
// foreground (text) color for the main frame // foreground (text) color for the main frame
$GLOBALS['cfg']['MainColor'] = '#142F56'; $GLOBALS['cfg']['MainColor'] = '#142F56';
// background for the main frame // background for the main frame
$GLOBALS['cfg']['MainBackground'] = '#FFFFFF'; $GLOBALS['cfg']['MainBackground'] = '#FFFFFF';
//$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y'; //$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
// foreground (text) color of the pointer in browse mode // foreground (text) color of the pointer in browse mode
$GLOBALS['cfg']['BrowsePointerColor'] = '#FFFFFF'; $GLOBALS['cfg']['BrowsePointerColor'] = '#FFFFFF';
// background of the pointer in browse mode // background of the pointer in browse mode
$GLOBALS['cfg']['BrowsePointerBackground'] = '#5287D6'; $GLOBALS['cfg']['BrowsePointerBackground'] = '#5287D6';
// foreground (text) color of the marker (visually marks row by clicking on it) in browse mode // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
$GLOBALS['cfg']['BrowseMarkerColor'] = '#000000'; $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
// background of the marker (visually marks row by clicking on it) in browse mode // background of the marker (visually marks row by clicking on it) in browse mode
$GLOBALS['cfg']['BrowseMarkerBackground'] = '#FBAE36'; $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FBAE36';
/** /**
* fonts * fonts
*/ */
/** /**
* the font family as a valid css font family value, * the font family as a valid css font family value,
* if not set the browser default will be used * if not set the browser default will be used
* (depending on browser, DTD and system settings) * (depending on browser, DTD and system settings)
*/ */
$GLOBALS['cfg']['FontFamily'] = 'Verdana, Arial, Helvetica, sans-serif'; $GLOBALS['cfg']['FontFamily'] = 'Verdana, Arial, Helvetica, sans-serif';
/** /**
* fixed width font family, used in textarea * fixed width font family, used in textarea
*/ */
$GLOBALS['cfg']['FontFamilyFixed'] = '"Courier New", Courier, monospace'; $GLOBALS['cfg']['FontFamilyFixed'] = '"Courier New", Courier, monospace';
/** /**
* tables * tables
*/ */
// border // border
$GLOBALS['cfg']['Border'] = 0; $GLOBALS['cfg']['Border'] = 0;
// table header and footer color // table header and footer color
$GLOBALS['cfg']['ThBackground'] = '#79A2DF'; $GLOBALS['cfg']['ThBackground'] = '#79A2DF';
// table header and footer background // table header and footer background
$GLOBALS['cfg']['ThColor'] = '#000000'; $GLOBALS['cfg']['ThColor'] = '#000000';
// table data row background // table data row background
$GLOBALS['cfg']['BgOne'] = '#EEEEEE'; $GLOBALS['cfg']['BgOne'] = '#EEEEEE';
// table data row background, alternate // table data row background, alternate
$GLOBALS['cfg']['BgTwo'] = '#E5E5E5'; $GLOBALS['cfg']['BgTwo'] = '#E5E5E5';
/** /**
* query window * query window
*/ */
// Width of Query window // Width of Query window
$GLOBALS['cfg']['QueryWindowWidth'] = 600; $GLOBALS['cfg']['QueryWindowWidth'] = 600;
// Height of Query window // Height of Query window
$GLOBALS['cfg']['QueryWindowHeight'] = 400; $GLOBALS['cfg']['QueryWindowHeight'] = 400;
/** /**
* SQL Parser Settings * SQL Parser Settings
* Syntax colouring data * Syntax colouring data
*/ */
$GLOBALS['cfg']['SQP']['fmtColor'] = array( $GLOBALS['cfg']['SQP']['fmtColor'] = array(
'comment' => '#808000', 'comment' => '#808000',
'comment_mysql' => '', 'comment_mysql' => '',
'comment_ansi' => '', 'comment_ansi' => '',
'comment_c' => '', 'comment_c' => '',
'digit' => '', 'digit' => '',
'digit_hex' => 'teal', 'digit_hex' => 'teal',
'digit_integer' => 'teal', 'digit_integer' => 'teal',
'digit_float' => 'aqua', 'digit_float' => 'aqua',
'punct' => 'fuchsia', 'punct' => 'fuchsia',
'alpha' => '', 'alpha' => '',
'alpha_columnType' => '#FF9900', 'alpha_columnType' => '#FF9900',
'alpha_columnAttrib' => '#0000FF', 'alpha_columnAttrib' => '#0000FF',
'alpha_reservedWord' => '#990099', 'alpha_reservedWord' => '#990099',
'alpha_functionName' => '#FF0000', 'alpha_functionName' => '#FF0000',
'alpha_identifier' => 'black', 'alpha_identifier' => 'black',
'alpha_charset' => '#6495ed', 'alpha_charset' => '#6495ed',
'alpha_variable' => '#800000', 'alpha_variable' => '#800000',
'quote' => '#008000', 'quote' => '#008000',
'quote_double' => '', 'quote_double' => '',
'quote_single' => '', 'quote_single' => '',
'quote_backtick' => '' 'quote_backtick' => ''
); );
?> ?>