This commit is contained in:
Sebastian Mendel
2007-12-20 11:50:27 +00:00
parent ce2df3261e
commit 0e065eddde
9 changed files with 286 additions and 182 deletions

View File

@@ -15,20 +15,18 @@
?> ?>
/******************************************************************************/ /******************************************************************************/
/* general tags */ /* general tags */
<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?> html {
* { font-size: <?php echo $_SESSION['PMA_Config']->get('fontsize'); ?>;
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
} }
<?php } if (! empty($GLOBALS['cfg']['FontSize'])) { ?>
body, table, tbody, tr, td { input, select, textarea {
font-size: <?php echo $GLOBALS['cfg']['FontSize']; ?>; font-size: 1em;
} }
select, input, textarea {
font-size: 0.7em;
}
<?php } ?>
body { body {
<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
<?php } ?>
background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>; background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>; color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
margin: 0; margin: 0;
@@ -39,13 +37,25 @@ a img {
border: 0; border: 0;
} }
a:link,
a:visited,
a:active {
text-decoration: none;
color: #0000FF;
}
ul {
margin:0;
}
form { form {
margin: 0; margin: 0;
padding: 0; padding: 0;
display: inline; display: inline;
} }
select { select#select_server,
select#lightm_db {
width: 100%; width: 100%;
} }
@@ -66,10 +76,18 @@ button {
margin-left: 0.3em; margin-left: 0.3em;
} }
.navi_dbName {
font-weight: bold;
color: <?php echo $GLOBALS['cfg']['NaviDatabaseNameColor']; ?>;
}
/******************************************************************************/ /******************************************************************************/
/* specific elements */ /* specific elements */
div#pmalogo {
background-color: #D0DCE0<?php //better echo $GLOBALS['cfg']['logoBGC']; ?>;
padding:.3em;
}
div#pmalogo, div#pmalogo,
div#leftframelinks, div#leftframelinks,
div#databaseList { div#databaseList {
@@ -79,6 +97,32 @@ div#databaseList {
padding-bottom: 0.5em; padding-bottom: 0.5em;
} }
ul#databaseList {
margin-bottom: 0.5em;
padding-bottom: 0.5em;
padding-<?php echo $left; ?>: 1.5em;
}
ul#databaseList a {
display: block;
}
div#navidbpageselector a,
ul#databaseList a {
background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
}
ul#databaseList a:hover {
background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
}
ul#databaseList li.selected a {
background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
}
div#leftframelinks .icon { div#leftframelinks .icon {
padding: 0; padding: 0;
margin: 0; margin: 0;
@@ -91,10 +135,25 @@ div#leftframelinks a img.icon {
} }
div#leftframelinks a:hover { div#leftframelinks a:hover {
background-color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>; background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
}
/* serverlist */
#body_leftFrame #list_server {
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_host.png);
list-style-position: inside;
list-style-type: none;
margin: 0;
padding: 0;
}
#body_leftFrame #list_server li {
margin: 0;
padding: 0;
font-size: 80%;
} }
/* leftdatabaselist */
div#left_tableList ul { div#left_tableList ul {
list-style-type: none; list-style-type: none;
list-style-position: outside; list-style-position: outside;
@@ -126,8 +185,18 @@ div#left_tableList li {
white-space: nowrap; white-space: nowrap;
} }
<?php if ($GLOBALS['cfg']['BrowseMarkerColor']) { ?>
/* marked items */
div#left_tableList > ul li.marked > a,
div#left_tableList > ul li.marked {
background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
}
<?php } ?>
<?php if ($GLOBALS['cfg']['LeftPointerEnable']) { ?> <?php if ($GLOBALS['cfg']['LeftPointerEnable']) { ?>
div#left_tableList li:hover { div#left_tableList > ul li:hover > a,
div#left_tableList > ul li:hover {
background-color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>; background-color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
color: #3E7BB6; color: #3E7BB6;
} }
@@ -139,9 +208,19 @@ 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']; ?>;
} }
/* for the servers list in navi panel */
#serverinfo .item {
white-space: nowrap;
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
}
#serverinfo a:hover {
background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
}

View File

@@ -1,51 +0,0 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* print css file from theme
*
* @version $Id$
* @package phpMyAdmin-theme
* @subpackage Aqua_Brushed
*/
?>
/* For printview */
body{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000;
background-color: #ffffff;
}
h1{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: bold;
color: #000000;
}
table{
border-width: 1px;
border-color: #000000;
border-style: solid;
border-collapse: collapse;
border-spacing: 0;
}
th{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #000000;
background-color: #e5e5e5;
border-width: 1px;
border-color: #000000;
border-style: solid;
padding: 2px;
}
td{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000;
background-color: #ffffff;
border-width: 1px;
border-color: #000000;
border-style: solid;
padding: 2px;
}

View File

@@ -15,30 +15,29 @@
?> ?>
/******************************************************************************/ /******************************************************************************/
/* general tags */ /* general tags */
<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?> html {
* { font-size: <?php echo $_SESSION['PMA_Config']->get('fontsize'); ?>;
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
} }
<?php } if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
textarea { input, select, textarea {
font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>; font-size: 1em;
} }
<?php } if (! empty($GLOBALS['cfg']['FontSize'])) { ?>
body, table, tbody, tr, td {
font-size: <?php echo $GLOBALS['cfg']['FontSize']; ?>;
}
select, input, textarea {
font-size: 0.7em;
}
<?php } ?>
body { body {
<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
<?php } ?>
padding: 0; padding: 0;
margin: 0.5em; margin: 0.5em;
color: <?php echo $GLOBALS['cfg']['MainColor']; ?>; color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>; background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
} }
<?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
textarea, tt, pre, code {
font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
}
<?php } ?>
h1 { h1 {
font-size: 140%; font-size: 140%;
font-weight: bold; font-weight: bold;
@@ -54,7 +53,8 @@ h3 {
} }
a:link, a:link,
a:visited { a:visited,
a:active {
text-decoration: none; text-decoration: none;
color: #0000FF; color: #0000FF;
} }
@@ -111,7 +111,7 @@ form {
textarea { textarea {
overflow: visible; overflow: visible;
height: 8em; height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
} }
fieldset { fieldset {
@@ -153,10 +153,17 @@ button {
/******************************************************************************/ /******************************************************************************/
/* classes */ /* classes */
div.tools {
border: 1px solid #000000;
padding: 0.2em;
}
div.tools,
fieldset.tblFooters { fieldset.tblFooters {
margin-top: 0; margin-top: 0;
margin-bottom: 0.5em; margin-bottom: 0.5em;
/* avoid a thick line since this should be used under another fieldset */
border-top: 0;
text-align: <?php echo $right; ?>; text-align: <?php echo $right; ?>;
float: none; float: none;
clear: both; clear: both;
@@ -179,43 +186,70 @@ button.mult_submit {
background-color: transparent; background-color: transparent;
} }
/* odd items 1,3,5,7,... */
table tr.odd th,
.odd {
background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
}
/* even items 2,4,6,8,... */
table tr.even th,
.even {
background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
}
/* odd table rows 1,3,5,7,... */ /* odd table rows 1,3,5,7,... */
table tr.odd th, table tr.odd th,
table tr.odd { table tr.odd,
background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
text-align: <?php echo $left; ?>;
}
/* even table rows 2,4,6,8,... */
table tr.even th, table tr.even th,
table tr.even { table tr.even {
background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
text-align: <?php echo $left; ?>; text-align: <?php echo $left; ?>;
} }
/* marked tbale rows */ <?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
/* marked table rows */
table tr.marked th, table tr.marked th,
table tr.marked { table tr.marked {
background-color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>; background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
}
<?php } ?>
<?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?>
/* hovered items */
.odd:hover,
.even:hover,
.hover {
background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
} }
/* hovered table rows */ /* hovered table rows */
table tr.odd:hover,
table tr.even:hover,
table tr.odd:hover th, table tr.odd:hover th,
table tr.even:hover th, table tr.even:hover th,
table tr.hover th, table tr.hover th {
table tr.hover { background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
background-color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>; color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
}
<?php } ?>
/**
* marks table rows/cells if the db field is in a where condition
*/
tr.condition th,
tr.condition td,
td.condition,
th.condition {
border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
} }
table .value { table .value {
text-align: <?php echo $right; ?>; text-align: <?php echo $right; ?>;
white-space: nowrap; white-space: normal;
} }
/* IE doesnt handles 'pre' right */ /* IE doesnt handles 'pre' right */
table [class=value] { table [class=value] {
white-space: pre; white-space: normal;
} }
@@ -338,33 +372,64 @@ td .icon {
} }
/* message boxes: warning, error, confirmation */ /* message boxes: warning, error, confirmation */
.success h1,
.notice h1,
.warning h1,
div.error h1 {
border-bottom: 2px solid;
font-weight: bold;
text-align: <?php echo $left; ?>;
margin: 0 0 0.2em 0;
}
div.success,
div.notice,
div.warning,
div.error {
margin: 0.3em 0 0 0;
border: 2px solid;
<?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
background-repeat: no-repeat;
<?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
background-position: 10px 50%;
padding: 0.1em 0.1em 0.1em 36px;
<?php } else { ?>
background-position: 99% 50%;
padding: 10px 5% 10px 10px;
<?php } ?>
<?php } else { ?>
padding: 0.3em;
<?php } ?>
}
.success {
color: #000000;
background-color: #f0fff0;
}
h1.success,
div.success {
border-color: #00FF00;
<?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_success.png);
<?php } ?>
}
.success h1 {
border-color: #00FF00;
}
.notice { .notice {
color: #000000; color: #000000;
background-color: #FFFFDD; background-color: #FFFFDD;
} }
h1.notice, h1.notice,
div.notice { div.notice {
margin: 0.5em 0 0.5em 0; border-color: #FFD700;
border: 0.1em solid #FFD700;
<?php if ($GLOBALS['cfg']['ErrorIconic']) { ?> <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png); background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
background-repeat: no-repeat;
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
background-position: 10px 50%;
padding: 10px 10px 10px 36px;
<?php } else {?>
background-position: 99% 50%;
padding: 10px 5% 10px 10px;
<?php }?>
<?php } else {?>
padding: 0.5em;
<?php } ?> <?php } ?>
} }
.notice h1 { .notice h1 {
border-bottom: 0.1em solid #FFD700; border-color: #FFD700;
font-weight: bold;
text-align: <?php echo $left; ?>;
margin: 0 0 0.2em 0;
} }
.warning { .warning {
@@ -374,27 +439,13 @@ div.notice {
p.warning, p.warning,
h1.warning, h1.warning,
div.warning { div.warning {
margin: 0.5em 0 0.5em 0; border-color: #CC0000;
border: 0.1em solid #CC0000;
<?php if ($GLOBALS['cfg']['ErrorIconic']) { ?> <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png); background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
background-repeat: no-repeat;
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
background-position: 10px 50%;
padding: 10px 10px 10px 36px;
<?php } else {?>
background-position: 99% 50%;
padding: 10px 5% 10px 10px;
<?php }?>
<?php } else {?>
padding: 0.5em;
<?php } ?> <?php } ?>
} }
.warning h1 { .warning h1 {
border-bottom: 0.1em solid #cc0000; border-color: #cc0000;
font-weight: bold;
text-align: <?php echo $left; ?>;
margin: 0 0 0.2em 0;
} }
.error { .error {
@@ -404,27 +455,13 @@ div.warning {
h1.error, h1.error,
div.error { div.error {
margin: 0.5em 0 0.5em 0; border-color: #ff0000;
border: 0.1em solid #ff0000;
<?php if ($GLOBALS['cfg']['ErrorIconic']) { ?> <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png); background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
background-repeat: no-repeat;
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
background-position: 10px 50%;
padding: 10px 10px 10px 36px;
<?php } else {?>
background-position: 99% 50%;
padding: 10px 5% 10px 10px;
<?php }?>
<?php } else {?>
padding: 0.5em;
<?php } ?> <?php } ?>
} }
div.error h1 { div.error h1 {
border-bottom: 0.1em solid #ff0000; border-color: #ff0000;
font-weight: bold;
text-align: <?php echo $left; ?>;
margin: 0 0 0.2em 0;
} }
.confirmation { .confirmation {
@@ -452,12 +489,19 @@ fieldset.confirmation legend {
/* end messageboxes */ /* end messageboxes */
.tblcomment {
font-size: 70%;
font-weight: normal;
color: #000099;
}
.tblHeaders { .tblHeaders {
font-weight: bold; font-weight: bold;
color: <?php echo $GLOBALS['cfg']['ThColor']; ?>; color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>; background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
} }
div.tools,
.tblFooters { .tblFooters {
font-weight: normal; font-weight: normal;
color: <?php echo $GLOBALS['cfg']['ThColor']; ?>; color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
@@ -467,6 +511,9 @@ fieldset.confirmation legend {
.tblHeaders a:link, .tblHeaders a:link,
.tblHeaders a:active, .tblHeaders a:active,
.tblHeaders a:visited, .tblHeaders a:visited,
div.tools a:link,
div.tools a:visited,
div.tools a:active,
.tblFooters a:link, .tblFooters a:link,
.tblFooters a:active, .tblFooters a:active,
.tblFooters a:visited { .tblFooters a:visited {
@@ -474,6 +521,7 @@ fieldset.confirmation legend {
} }
.tblHeaders a:hover, .tblHeaders a:hover,
div.tools a:hover,
.tblFooters a:hover { .tblFooters a:hover {
color: #FF0000; color: #FF0000;
} }
@@ -511,6 +559,16 @@ body.loginform a.logo {
text-align: center; text-align: center;
} }
body.loginform {
text-align: center;
}
body.loginform div.container {
text-align: <?php echo $left; ?>;
width: 30em;
margin: 0 auto;
}
form.login label { form.login label {
float: <?php echo $left; ?>; float: <?php echo $left; ?>;
width: 10em; width: 10em;
@@ -586,12 +644,10 @@ ul#topmenu li {
/* default tab styles */ /* default tab styles */
.tab, .tabcaution, .tabactive { .tab, .tabcaution, .tabactive {
background-color: #E5E5E5; background-color: #E5E5E5;
border: 0.1em solid silver; border: 1pt solid silver;
border-bottom: 0; border-bottom: 0;
border-radius-topleft: 0.4em; border-top-left-radius: 0.4em;
border-radius-topright: 0.4em; border-top-right-radius: 0.4em;
-moz-border-radius-topleft: 0.4em;
-moz-border-radius-topright: 0.4em;
background-color: #B5BDC7; background-color: #B5BDC7;
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>tbl_header.png); background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>tbl_header.png);
background-repeat: repeat-x; background-repeat: repeat-x;
@@ -613,9 +669,6 @@ a.tabcaution:hover,
} }
a.tabcaution:hover { a.tabcaution:hover {
margin: 0;
padding: 0.2em 0.4em 0.2em 0.4em;
text-decoration: none;
background-color: #ff0000; background-color: #ff0000;
background-image: none; background-image: none;
} }
@@ -627,8 +680,14 @@ a.tab:hover,
background-color: #8FBDE9; background-color: #8FBDE9;
} }
/* to be able to cancel the bottom border, use <li class="active"> */
ul#topmenu li.active {
border-bottom: 1pt solid <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
}
/* disabled drop/empty tabs */ /* disabled drop/empty tabs */
span.tab, span.tab,
a.warning,
span.tabcaution { span.tabcaution {
cursor: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default; cursor: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
} }
@@ -901,7 +960,6 @@ div#queryboxcontainer div#bookmarkoptions {
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png); background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png);
background-position: <?php echo $right; ?> bottom; background-position: <?php echo $right; ?> bottom;
background-repeat: no-repeat; background-repeat: no-repeat;
border-bottom: 1px solid silver;
} }
#mysqlmaininformation, #mysqlmaininformation,
@@ -940,7 +998,8 @@ li#li_select_theme{
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png); list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
} }
li#li_server_info{ li#li_server_info,
li#li_server_version{
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png); list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
} }
@@ -992,7 +1051,8 @@ li#li_log_out {
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png); list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
} }
li#li_pma_docs { li#li_pma_docs,
li#li_pma_wiki {
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png); list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
} }
@@ -1075,7 +1135,10 @@ li#li_flush_privileges {
float: <?php echo $left; ?>; float: <?php echo $left; ?>;
} }
#div_table_copy { #div_table_copy,
#div_partition_maintenance,
#div_referential_integrity,
#div_table_maintenance {
min-width: 48%; min-width: 48%;
float: <?php echo $left; ?>; float: <?php echo $left; ?>;
} }
@@ -1098,3 +1161,16 @@ label.desc {
width: 30em; width: 30em;
float: <?php echo $left; ?>; float: <?php echo $left; ?>;
} }
code.sql {
display: block;
padding: 0.3em;
margin-top: 0;
margin-bottom: 0;
border: <?php echo $GLOBALS['cfg']['MainColor']; ?> solid 1px;
border-top: 0;
border-bottom: 0;
max-height: 10em;
overflow: auto;
background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 B

BIN
aqua_brushed/img/error.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 612 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 583 B