revised
This commit is contained in:
@@ -16,6 +16,7 @@ $Source$
|
|||||||
- respect arg_separator.input from php.ini
|
- respect arg_separator.input from php.ini
|
||||||
* libraries/auth/cookie.auth.lib.php: use PMA_sendHeaderLocation()
|
* libraries/auth/cookie.auth.lib.php: use PMA_sendHeaderLocation()
|
||||||
and new functionality of PMA_generate_common_url()
|
and new functionality of PMA_generate_common_url()
|
||||||
|
* themes/original: revised
|
||||||
|
|
||||||
2005-11-25 Michal Čihař <michal@cihar.com>
|
2005-11-25 Michal Čihař <michal@cihar.com>
|
||||||
* Documentation.html, config.footer.inc.php(deleted),
|
* Documentation.html, config.footer.inc.php(deleted),
|
||||||
|
@@ -1,10 +1,9 @@
|
|||||||
body, input, select {
|
/******************************************************************************/
|
||||||
|
/* general tags */
|
||||||
|
body {
|
||||||
font-family: <?php echo $left_font_family; ?>;
|
font-family: <?php echo $left_font_family; ?>;
|
||||||
color: #000000
|
background-color: #D0DCE0;
|
||||||
}
|
color: #000000;
|
||||||
|
|
||||||
body#body_leftFrame {
|
|
||||||
background-color: <?php echo $GLOBALS['cfg']['LeftBgColor']; ?>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a img {
|
a img {
|
||||||
@@ -22,9 +21,16 @@ select {
|
|||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* buttons in some browsers (eg. Konqueror) are block elements, this breaks design */
|
|
||||||
button { display: inline; }
|
|
||||||
|
|
||||||
|
/* buttons in some browsers (eg. Konqueror) are block elements,
|
||||||
|
this breaks design */
|
||||||
|
button {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/******************************************************************************/
|
||||||
|
/* classes */
|
||||||
|
|
||||||
/* leave some space between icons and text */
|
/* leave some space between icons and text */
|
||||||
.icon {
|
.icon {
|
||||||
@@ -37,6 +43,10 @@ img.lightbulb {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/******************************************************************************/
|
||||||
|
/* specific elements */
|
||||||
|
|
||||||
div#pmalogo,
|
div#pmalogo,
|
||||||
div#leftframelinks,
|
div#leftframelinks,
|
||||||
div#databaseList {
|
div#databaseList {
|
||||||
@@ -47,7 +57,6 @@ div#databaseList {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div#leftframelinks .icon {
|
div#leftframelinks .icon {
|
||||||
vertical-align: middle;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
@@ -69,7 +78,7 @@ div#left_tableList ul {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
background-color: <?php echo $GLOBALS['cfg']['LeftBgColor']; ?>;
|
background-color: #D0DCE0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#left_tableList ul ul {
|
div#left_tableList ul ul {
|
||||||
@@ -94,7 +103,7 @@ div#left_tableList li {
|
|||||||
|
|
||||||
<?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?>
|
<?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?>
|
||||||
div#left_tableList li:hover {
|
div#left_tableList li:hover {
|
||||||
background-color: <?php echo $GLOBALS['cfg']['LeftPointerColor']; ?>;
|
background-color: #CCFFCC;
|
||||||
}
|
}
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
|
@@ -1,92 +1,58 @@
|
|||||||
/* Always enabled stylesheets (right frame) */
|
/******************************************************************************/
|
||||||
|
/* general tags */
|
||||||
body {
|
body {
|
||||||
margin: 0.5em;
|
margin: 0.5em;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-family: <?php echo $right_font_family; ?>;
|
font-family: <?php echo $right_font_family; ?>;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
<?php
|
background-image: url(../themes/original/img/vertical_line.png);
|
||||||
if ($GLOBALS['cfg']['RightBgImage'] == '') {
|
background-repeat: repeat-y;
|
||||||
// calls from a css file are relative to itself, so use ../images
|
background-color: #F5F5F5;
|
||||||
echo ' background-image: url(../themes/original/img/vertical_line.png);' . "\n"
|
|
||||||
. ' background-repeat: repeat-y;' . "\n";
|
|
||||||
} else {
|
|
||||||
echo ' background-image: url(' . $GLOBALS['cfg']['RightBgImage'] . ');' . "\n";
|
|
||||||
} // end if... else...
|
|
||||||
?>
|
|
||||||
background-color: <?php echo $GLOBALS['cfg']['RightBgColor'] . "\n"; ?>
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
/* querywindow */
|
font-size: 140%;
|
||||||
body#bodyquerywindow {
|
font-weight: bold;
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
background-image: none;
|
|
||||||
background-color: <?php echo $GLOBALS['cfg']['RightBgColor'] . "\n"; ?>
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div#querywindowcontainer {
|
h2 {
|
||||||
margin: 0;
|
font-size: 120%;
|
||||||
padding: 0;
|
font-weight: bold;
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div#querywindowcontainer fieldset {
|
h3 {
|
||||||
margin-top: 0;
|
font-weight: bold;
|
||||||
}
|
|
||||||
/* END querywindow */
|
|
||||||
|
|
||||||
|
|
||||||
/* querybox */
|
|
||||||
|
|
||||||
div#sqlquerycontainer {
|
|
||||||
float: left;
|
|
||||||
width: 69%;
|
|
||||||
/* height: 15em; */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div#tablefieldscontainer {
|
a:link {
|
||||||
float: right;
|
text-decoration: none;
|
||||||
width: 29%;
|
color: #0000FF;
|
||||||
/* height: 15em; */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div#tablefieldscontainer select {
|
a:visited {
|
||||||
width: 100%;
|
text-decoration: none;
|
||||||
/* height: 12em; */
|
color: #0000FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea#sqlquery {
|
a:hover {
|
||||||
width: 100%;
|
text-decoration: underline;
|
||||||
/* height: 100%; */
|
color: #FF0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#queryboxcontainer div#bookmarkoptions {
|
dfn {
|
||||||
margin-top: 0.5em;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
/* end querybox */
|
|
||||||
|
|
||||||
|
dfn:hover {
|
||||||
th {font-family: <?php echo $right_font_family; ?>; font-weight: bold; color: #000000; background-color: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>}
|
font-style: normal;
|
||||||
td {font-family: <?php echo $right_font_family; ?>; }
|
cursor: help;
|
||||||
form {
|
}
|
||||||
font-family: <?php echo $right_font_family; ?>;
|
|
||||||
padding: 0;
|
th {
|
||||||
margin: 0;
|
font-weight: bold;
|
||||||
display: inline;
|
color: #000000;
|
||||||
|
background-color: #D3DCE3;
|
||||||
}
|
}
|
||||||
input {font-family: <?php echo $right_font_family; ?>; }
|
|
||||||
input.textfield {font-family: <?php echo $right_font_family; ?>; color: #000000; background-color: #FFFFFF}
|
|
||||||
select {font-family: <?php echo $right_font_family; ?>; color: #000000; background-color: #FFFFFF}
|
|
||||||
textarea {font-family: <?php echo $right_font_family; ?>; color: #000000; background-color: #FFFFFF}
|
|
||||||
h1 {font-family: <?php echo $right_font_family; ?>; font-size: 140%; font-weight: bold}
|
|
||||||
h2 {font-family: <?php echo $right_font_family; ?>; font-size: 120%; font-weight: bold}
|
|
||||||
h3 {font-family: <?php echo $right_font_family; ?>; font-weight: bold}
|
|
||||||
a:link {font-family: <?php echo $right_font_family; ?>; text-decoration: none; color: #0000FF}
|
|
||||||
a:visited {font-family: <?php echo $right_font_family; ?>; text-decoration: none; color: #0000FF}
|
|
||||||
a:hover {font-family: <?php echo $right_font_family; ?>; text-decoration: underline; color: #FF0000}
|
|
||||||
dfn {font-style: normal}
|
|
||||||
dfn:hover {font-style: normal; cursor: help}
|
|
||||||
|
|
||||||
a img {
|
a img {
|
||||||
border: 0;
|
border: 0;
|
||||||
@@ -99,66 +65,38 @@ hr {
|
|||||||
height: 1px;
|
height: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
fieldset {
|
textarea {
|
||||||
|
overflow: visible;
|
||||||
|
height: 8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
border: #686868 solid 1px;
|
border: #686868 solid 1px;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
background-color: <?php echo $GLOBALS['cfg']['BgcolorOne']; ?>;
|
background-color: #E5E5E5;
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset fieldset {
|
fieldset fieldset {
|
||||||
margin: 0.8em;
|
margin: 0.8em;
|
||||||
}
|
}
|
||||||
fieldset.tblFooters {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 0.5em;
|
|
||||||
text-align: right;
|
|
||||||
float: none;
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
fieldset .formelement {
|
|
||||||
line-height: 2.4em;
|
|
||||||
float: left;
|
|
||||||
margin-right: 0.5em;
|
|
||||||
/* IE */
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
/* revert for Gecko */
|
|
||||||
fieldset div[class=formelement] {
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
fieldset legend {
|
fieldset legend {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* buttons in some browsers (eg. Konqueror) are block elements, this breaks design */
|
/* buttons in some browsers (eg. Konqueror) are block elements,
|
||||||
button { display: inline; }
|
this breaks design */
|
||||||
|
button {
|
||||||
/* Textarea */
|
display: inline;
|
||||||
textarea { overflow: auto; }
|
|
||||||
|
|
||||||
|
|
||||||
/* IE */
|
|
||||||
fieldset .formelement input,
|
|
||||||
fieldset .formelement select {
|
|
||||||
margin-top: 0.5em;
|
|
||||||
margin-bottom: 0.5em;
|
|
||||||
}
|
|
||||||
/* revert for Gecko */
|
|
||||||
fieldset div[class=formelement] input,
|
|
||||||
fieldset div[class=formelement] select {
|
|
||||||
margin-top: auto;
|
|
||||||
margin-bottom: auto;
|
|
||||||
height: auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
button.mult_submit {
|
|
||||||
border: none;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* data tables */
|
|
||||||
table caption,
|
table caption,
|
||||||
table th,
|
table th,
|
||||||
table td {
|
table td {
|
||||||
@@ -168,24 +106,56 @@ table td {
|
|||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img, input, select, button {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/******************************************************************************/
|
||||||
|
/* classes */
|
||||||
|
|
||||||
|
fieldset.tblFooters {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
text-align: right;
|
||||||
|
float: none;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
fieldset .formelement {
|
||||||
|
float: left;
|
||||||
|
margin-right: 0.5em;
|
||||||
|
/* IE */
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
/* revert for Gecko */
|
||||||
|
fieldset div[class=formelement] {
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.mult_submit {
|
||||||
|
border: none;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* 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-color: <?php echo $GLOBALS['cfg']['BgcolorOne']; ?>;
|
background-color: #E5E5E5;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* even table rows 2,4,6,8,... */
|
/* even table rows 2,4,6,8,... */
|
||||||
table tr.even th,
|
table tr.even th,
|
||||||
table tr.even {
|
table tr.even {
|
||||||
background-color: <?php echo $GLOBALS['cfg']['BgcolorTwo']; ?>;
|
background-color: #D5D5D5;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* marked tbale rows */
|
/* marked tbale rows */
|
||||||
table tr.marked th,
|
table tr.marked th,
|
||||||
table tr.marked {
|
table tr.marked {
|
||||||
background-color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
|
background-color: #FFCC99;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* hovered table rows */
|
/* hovered table rows */
|
||||||
@@ -195,7 +165,7 @@ 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 {
|
table tr.hover {
|
||||||
background-color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
|
background-color: #CCFFCC;
|
||||||
}
|
}
|
||||||
|
|
||||||
table .value {
|
table .value {
|
||||||
@@ -234,7 +204,7 @@ img.lightbulb {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.pdflayout_table {
|
.pdflayout_table {
|
||||||
background: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>;
|
background: #D3DCE3;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
clip: inherit;
|
clip: inherit;
|
||||||
@@ -247,26 +217,56 @@ img.lightbulb {
|
|||||||
border: 1px dashed #000000;
|
border: 1px dashed #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.print{font-family:arial;font-size:8pt;}
|
.print {
|
||||||
|
font-family: arial;
|
||||||
|
font-size: 8pt;
|
||||||
|
}
|
||||||
|
|
||||||
/* MySQL Parser */
|
/* MySQL Parser */
|
||||||
.syntax {font-family: sans-serif; font-size: 80%;}
|
.syntax {
|
||||||
.syntax_comment { padding-left: 4pt; padding-right: 4pt;}
|
font-family: sans-serif;
|
||||||
.syntax_digit {}
|
font-size: 80%;
|
||||||
.syntax_digit_hex {}
|
}
|
||||||
.syntax_digit_integer {}
|
.syntax_comment {
|
||||||
.syntax_digit_float {}
|
padding-left: 4pt;
|
||||||
.syntax_punct {}
|
padding-right: 4pt;
|
||||||
.syntax_alpha {}
|
}
|
||||||
.syntax_alpha_columnType {text-transform: uppercase;}
|
.syntax_digit {
|
||||||
.syntax_alpha_columnAttrib {text-transform: uppercase;}
|
}
|
||||||
.syntax_alpha_reservedWord {text-transform: uppercase; font-weight: bold;}
|
.syntax_digit_hex {
|
||||||
.syntax_alpha_functionName {text-transform: uppercase;}
|
}
|
||||||
.syntax_alpha_identifier {}
|
.syntax_digit_integer {
|
||||||
.syntax_alpha_charset {}
|
}
|
||||||
.syntax_alpha_variable {}
|
.syntax_digit_float {
|
||||||
.syntax_quote {white-space: pre;}
|
}
|
||||||
.syntax_quote_backtick {}
|
.syntax_punct {
|
||||||
|
}
|
||||||
|
.syntax_alpha {
|
||||||
|
}
|
||||||
|
.syntax_alpha_columnType {
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
.syntax_alpha_columnAttrib {
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
.syntax_alpha_reservedWord {
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.syntax_alpha_functionName {
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
.syntax_alpha_identifier {
|
||||||
|
}
|
||||||
|
.syntax_alpha_charset {
|
||||||
|
}
|
||||||
|
.syntax_alpha_variable {
|
||||||
|
}
|
||||||
|
.syntax_quote {
|
||||||
|
white-space: pre;
|
||||||
|
}
|
||||||
|
.syntax_quote_backtick {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* leave some space between icons and text */
|
/* leave some space between icons and text */
|
||||||
@@ -285,6 +285,174 @@ td .icon {
|
|||||||
margin-<?php echo $left; ?>: 0.6em;
|
margin-<?php echo $left; ?>: 0.6em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* message boxes: warning, error, confirmation */
|
||||||
|
.notice {
|
||||||
|
color: #000000;
|
||||||
|
background-color: #FFFFDD;
|
||||||
|
}
|
||||||
|
h1.notice,
|
||||||
|
div.notice {
|
||||||
|
margin: 0.5em 0 0.5em 0;
|
||||||
|
border: 0.1em solid #FFD700;
|
||||||
|
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||||
|
background-image: url(../themes/original/img/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 } ?>
|
||||||
|
}
|
||||||
|
.notice h1 {
|
||||||
|
border-bottom: 0.1em solid #FFD700;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: <?php echo $left; ?>;
|
||||||
|
margin: 0 0 0.2em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.warning {
|
||||||
|
color: #CC0000;
|
||||||
|
background-color: #FFFFCC;
|
||||||
|
}
|
||||||
|
h1.warning,
|
||||||
|
div.warning {
|
||||||
|
margin: 0.5em 0 0.5em 0;
|
||||||
|
border: 0.1em solid #CC0000;
|
||||||
|
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||||
|
background-image: url(../themes/original/img/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 } ?>
|
||||||
|
}
|
||||||
|
.warning h1 {
|
||||||
|
border-bottom: 0.1em solid #cc0000;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: <?php echo $left; ?>;
|
||||||
|
margin: 0 0 0.2em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error {
|
||||||
|
background-color: #FFFFCC;
|
||||||
|
color: #ff0000;
|
||||||
|
}
|
||||||
|
h1.error,
|
||||||
|
div.error {
|
||||||
|
margin: 0.5em 0 0.5em 0;
|
||||||
|
border: 0.1em solid #ff0000;
|
||||||
|
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||||
|
background-image: url(../themes/original/img/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 } ?>
|
||||||
|
}
|
||||||
|
div.error h1 {
|
||||||
|
border-bottom: 0.1em solid #ff0000;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: <?php echo $left; ?>;
|
||||||
|
margin: 0 0 0.2em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.confirmation {
|
||||||
|
background-color: #FFFFCC;
|
||||||
|
}
|
||||||
|
fieldset.confirmation {
|
||||||
|
border: 0.1em solid #FF0000;
|
||||||
|
}
|
||||||
|
fieldset.confirmation legend {
|
||||||
|
border-left: 0.1em solid #FF0000;
|
||||||
|
border-right: 0.1em solid #FF0000;
|
||||||
|
font-weight: bold;
|
||||||
|
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||||
|
background-image: url(../themes/original/img/s_really.png);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||||
|
background-position: 5px 50%;
|
||||||
|
padding: 0.2em 0.2em 0.2em 25px;
|
||||||
|
<?php } else { ?>
|
||||||
|
background-position: 97% 50%;
|
||||||
|
padding: 0.2em 25px 0.2em 0.2em;
|
||||||
|
<?php } ?>
|
||||||
|
<?php } ?>
|
||||||
|
}
|
||||||
|
/* end messageboxes */
|
||||||
|
|
||||||
|
|
||||||
|
.tblcomment {
|
||||||
|
font-size: 70%;
|
||||||
|
font-weight: normal;
|
||||||
|
color: #000099;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tblHeaders {
|
||||||
|
background-color: #D0DCE0;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.tblFooters {
|
||||||
|
background-color: #D0DCE0;
|
||||||
|
font-weight: normal;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.tblHeaders a:link,
|
||||||
|
.tblHeaders a:active,
|
||||||
|
.tblHeaders a:visited,
|
||||||
|
.tblFooters a:link,
|
||||||
|
.tblFooters a:active,
|
||||||
|
.tblFooters a:visited {
|
||||||
|
color: #0000FF;
|
||||||
|
}
|
||||||
|
.tblHeaders a:hover,
|
||||||
|
.tblFooters a:hover {
|
||||||
|
color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* forbidden, no privilegs */
|
||||||
|
.noPrivileges{
|
||||||
|
color: #FF0000;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* disabled text */
|
||||||
|
.disabled,
|
||||||
|
.disabled a:link,
|
||||||
|
disabled a:active,
|
||||||
|
.disabled a:visited {
|
||||||
|
font-family: <?php echo $right_font_family; ?>;
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
.disabled a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
tr.disabled td,
|
||||||
|
td.disabled {
|
||||||
|
background-color: #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/******************************************************************************/
|
||||||
|
/* specific elements */
|
||||||
|
|
||||||
/* topmenu */
|
/* topmenu */
|
||||||
ul#topmenu {
|
ul#topmenu {
|
||||||
@@ -350,8 +518,8 @@ ul#topmenu li {
|
|||||||
|
|
||||||
/* default tab styles */
|
/* default tab styles */
|
||||||
.tab, .tabcaution, .tabactive {
|
.tab, .tabcaution, .tabactive {
|
||||||
background-color: <?php echo $GLOBALS['cfg']['BgcolorOne']; ?>;
|
background-color: #E5E5E5;
|
||||||
border: 1pt solid <?php echo $GLOBALS['cfg']['BgcolorTwo']; ?>;
|
border: 1pt solid #D5D5D5;
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
border-radius-topleft: 0.4em;
|
border-radius-topleft: 0.4em;
|
||||||
border-radius-topright: 0.4em;
|
border-radius-topright: 0.4em;
|
||||||
@@ -367,7 +535,7 @@ a.tab:hover, a.tabcaution:hover, .tabactive, .tabactive:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a.tab:hover, .tabactive {
|
a.tab:hover, .tabactive {
|
||||||
background-color: <?php echo $GLOBALS['cfg']['BgcolorTwo']; ?>;
|
background-color: #D5D5D5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* disabled drop/empty tabs */
|
/* disabled drop/empty tabs */
|
||||||
@@ -384,24 +552,34 @@ span.tab, span.tabcaution {
|
|||||||
|
|
||||||
|
|
||||||
/* Calendar */
|
/* Calendar */
|
||||||
table.calendar { width: 100%; }
|
table.calendar {
|
||||||
table.calendar td { text-align: center; }
|
width: 100%;
|
||||||
table.calendar td a { display: block; }
|
}
|
||||||
|
table.calendar td {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
table.calendar td a {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
table.calendar td a:hover {
|
table.calendar td a:hover {
|
||||||
background-color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
|
background-color: #CCFFCC;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.calendar th {
|
table.calendar th {
|
||||||
background-color: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>;
|
background-color: #D3DCE3;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.calendar td.selected {
|
table.calendar td.selected {
|
||||||
background-color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
|
background-color: #FFCC99;
|
||||||
}
|
}
|
||||||
|
|
||||||
img.calendar { border: none; }
|
img.calendar {
|
||||||
form.clock { text-align: center; }
|
border: none;
|
||||||
|
}
|
||||||
|
form.clock {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
/* end Calendar */
|
/* end Calendar */
|
||||||
|
|
||||||
|
|
||||||
@@ -421,7 +599,7 @@ div#tablestatistics table {
|
|||||||
div#tablestatistics table caption {
|
div#tablestatistics table caption {
|
||||||
margin-right: 0.5em;
|
margin-right: 0.5em;
|
||||||
}
|
}
|
||||||
/* END tabel stats */
|
/* END table stats */
|
||||||
|
|
||||||
|
|
||||||
/* server privileges */
|
/* server privileges */
|
||||||
@@ -433,157 +611,7 @@ div#tablestatistics table caption {
|
|||||||
/* END server privileges */
|
/* END server privileges */
|
||||||
|
|
||||||
|
|
||||||
/* message boxes: warning, error, confirmation */
|
|
||||||
.notice {
|
|
||||||
color: #000000;
|
|
||||||
background-color: #FFFFDD;
|
|
||||||
}
|
|
||||||
h1.notice,
|
|
||||||
div.notice {
|
|
||||||
margin: 0.5em 0 0.5em 0;
|
|
||||||
border: 0.1em solid #FFD700;
|
|
||||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
|
||||||
background-image: url(../themes/original/img/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 }?>
|
|
||||||
}
|
|
||||||
.notice h1 {
|
|
||||||
border-bottom: 0.1em solid #FFD700;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: <?php echo $left; ?>;
|
|
||||||
margin: 0 0 0.2em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.warning {
|
|
||||||
color: #CC0000;
|
|
||||||
background-color: #FFFFCC;
|
|
||||||
}
|
|
||||||
h1.warning,
|
|
||||||
div.warning {
|
|
||||||
margin: 0.5em 0 0.5em 0;
|
|
||||||
border: 0.1em solid #CC0000;
|
|
||||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
|
||||||
background-image: url(../themes/original/img/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 }?>
|
|
||||||
}
|
|
||||||
.warning h1 {
|
|
||||||
border-bottom: 0.1em solid #cc0000;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: <?php echo $left; ?>;
|
|
||||||
margin: 0 0 0.2em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.error {
|
|
||||||
background-color: #FFFFCC;
|
|
||||||
color: #ff0000;
|
|
||||||
}
|
|
||||||
h1.error,
|
|
||||||
div.error {
|
|
||||||
margin: 0.5em 0 0.5em 0;
|
|
||||||
border: 0.1em solid #ff0000;
|
|
||||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
|
||||||
background-image: url(../themes/original/img/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 }?>
|
|
||||||
}
|
|
||||||
div.error h1 {
|
|
||||||
border-bottom: 0.1em solid #ff0000;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: <?php echo $left; ?>;
|
|
||||||
margin: 0 0 0.2em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.confirmation {
|
|
||||||
background-color: #FFFFCC;
|
|
||||||
}
|
|
||||||
fieldset.confirmation {
|
|
||||||
border: 0.1em solid #FF0000;
|
|
||||||
}
|
|
||||||
fieldset.confirmation legend {
|
|
||||||
border-left: 0.1em solid #FF0000;
|
|
||||||
border-right: 0.1em solid #FF0000;
|
|
||||||
font-weight: bold;
|
|
||||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
|
||||||
background-image: url(../themes/original/img/s_really.png);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {?>
|
|
||||||
background-position: 5px 50%;
|
|
||||||
padding: 0.2em 0.2em 0.2em 25px;
|
|
||||||
<?php } else {?>
|
|
||||||
background-position: 97% 50%;
|
|
||||||
padding: 0.2em 25px 0.2em 0.2em;
|
|
||||||
<?php }?>
|
|
||||||
<?php }?>
|
|
||||||
}
|
|
||||||
/* end messageboxes */
|
|
||||||
|
|
||||||
|
|
||||||
.tblcomment {font-size: 70%; font-weight: normal; color: #000099; }
|
|
||||||
|
|
||||||
.tblHeaders {
|
|
||||||
background-color: <?php echo $cfg['LeftBgColor']; ?>;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
.tblFooters {
|
|
||||||
background-color: <?php echo $cfg['LeftBgColor']; ?>;
|
|
||||||
font-weight: normal;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
.tblHeaders a:link,
|
|
||||||
.tblHeaders a:active,
|
|
||||||
.tblHeaders a:visited,
|
|
||||||
.tblFooters a:link,
|
|
||||||
.tblFooters a:active,
|
|
||||||
.tblFooters a:visited {
|
|
||||||
color: #0000FF;
|
|
||||||
}
|
|
||||||
.tblHeaders a:hover,
|
|
||||||
.tblFooters a:hover {
|
|
||||||
color: #FF0000;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* forbidden, no privilegs */
|
|
||||||
.noPrivileges{
|
|
||||||
color: #FF0000;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Heading */
|
/* Heading */
|
||||||
|
|
||||||
img, input, select, button {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
#serverinfo {
|
#serverinfo {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
@@ -604,18 +632,6 @@ img, input, select, button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* disabled text */
|
|
||||||
.disabled, .disabled a:link, disabled a:active, .disabled a:visited {
|
|
||||||
font-family: <?php echo $right_font_family; ?>;
|
|
||||||
color: #666666;
|
|
||||||
}
|
|
||||||
.disabled a:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
tr.disabled td, td.disabled {
|
|
||||||
background-color: #cccccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
#textSQLDUMP {
|
#textSQLDUMP {
|
||||||
width: 95%;
|
width: 95%;
|
||||||
height: 95%;
|
height: 95%;
|
||||||
@@ -689,7 +705,7 @@ tr.disabled td, td.disabled {
|
|||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#fieldset_user_priv div.item label{
|
#fieldset_user_priv div.item label {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -746,3 +762,53 @@ div#serverstatus table .tblFooters a:after {
|
|||||||
content: ']';
|
content: ']';
|
||||||
}
|
}
|
||||||
/* end serverstatus */
|
/* end serverstatus */
|
||||||
|
|
||||||
|
/* querywindow */
|
||||||
|
body#bodyquerywindow {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background-image: none;
|
||||||
|
background-color: #F5F5F5;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#querywindowcontainer {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#querywindowcontainer fieldset {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
/* END querywindow */
|
||||||
|
|
||||||
|
|
||||||
|
/* querybox */
|
||||||
|
|
||||||
|
div#sqlquerycontainer {
|
||||||
|
float: left;
|
||||||
|
width: 69%;
|
||||||
|
/* height: 15em; */
|
||||||
|
}
|
||||||
|
|
||||||
|
div#tablefieldscontainer {
|
||||||
|
float: right;
|
||||||
|
width: 29%;
|
||||||
|
/* height: 15em; */
|
||||||
|
}
|
||||||
|
|
||||||
|
div#tablefieldscontainer select {
|
||||||
|
width: 100%;
|
||||||
|
/* height: 12em; */
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea#sqlquery {
|
||||||
|
width: 100%;
|
||||||
|
/* height: 100%; */
|
||||||
|
}
|
||||||
|
|
||||||
|
div#queryboxcontainer div#bookmarkoptions {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
}
|
||||||
|
/* end querybox */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user