*** empty log message ***
96
aqua/css/theme_left.css.php
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
<?php
|
||||||
|
// unplanned execution path
|
||||||
|
if (!defined('PMA_MINIMUM_COMMON')) {
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
/* No layer effects neccessary */
|
||||||
|
body,
|
||||||
|
body#body_leftFrame {
|
||||||
|
background-position: right;
|
||||||
|
background-image: url(../themes/aqua/img/bg_aquaGrad.png);
|
||||||
|
background-repeat: repeat-y;
|
||||||
|
background-color: #3E7BB6;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#pmalogo,
|
||||||
|
div#leftframelinks,
|
||||||
|
div#databaseList {
|
||||||
|
text-align: center;
|
||||||
|
border-bottom: 0.05em solid #669999;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#leftframelinks img {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#leftframelinks a {
|
||||||
|
margin: 0.1em;
|
||||||
|
padding: 0.2em;
|
||||||
|
border: 0.05em solid #669999;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#leftframelinks a:hover {
|
||||||
|
background-color: Aqua;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#databaseList form {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* leftdatabaselist */
|
||||||
|
div#left_tableList {
|
||||||
|
list-style-type: none;
|
||||||
|
list-style-position: outside;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: <?php echo $font_smaller; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#left_tableList a {
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#left_tableList a:hover {
|
||||||
|
color: #FFff00;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#left_tableList li {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
<?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?>
|
||||||
|
div#left_tableList li:hover a,
|
||||||
|
div#left_tableList li:hover {
|
||||||
|
background-color: Aqua;
|
||||||
|
color: #3E7BB6;
|
||||||
|
}
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
|
div#left_tableList img {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* leftdatabaselist */
|
||||||
|
div#left_tableList ul {
|
||||||
|
list-style-type: none;
|
||||||
|
list-style-position: outside;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#left_tableList ul ul {
|
||||||
|
margin-left: 0em;
|
||||||
|
padding-left: 0.1em;
|
||||||
|
border-left: 0.1em solid #669999;
|
||||||
|
padding-bottom: 0.1em;
|
||||||
|
border-bottom: 0.1em solid #669999;
|
||||||
|
}
|
41
aqua/css/theme_print.css.php
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
/* 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;
|
||||||
|
}
|
535
aqua/css/theme_right.css.php
Normal file
@@ -0,0 +1,535 @@
|
|||||||
|
<?php
|
||||||
|
// unplanned execution path
|
||||||
|
if (!defined('PMA_MINIMUM_COMMON')) {
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
/* Always enabled stylesheets (right frame) */
|
||||||
|
|
||||||
|
body {
|
||||||
|
color: #000000;
|
||||||
|
background-color: <?php echo $GLOBALS['cfg']['RightBgColor'] . "\n"; ?>
|
||||||
|
background-image: url(../themes/aqua/img/bg_main.png); background-repeat: repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
font-weight: bold; color: #000000;
|
||||||
|
background-color: #CACACA;
|
||||||
|
background-image: url(../themes/aqua/img/bg_tblHeaders.png);
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
}
|
||||||
|
form { padding: 0px; margin: 0px;}
|
||||||
|
input.textfield { color: #000000; background-color: #FFFFFF}
|
||||||
|
select { color: #000000; background-color: #FFFFFF}
|
||||||
|
textarea { color: #000000; background-color: #FFFFFF}
|
||||||
|
h1 { font-size: <?php echo $font_biggest; ?>; font-weight: bold}
|
||||||
|
h2 { font-size: <?php echo $font_bigger; ?>; font-weight: bold}
|
||||||
|
h3 { font-weight: bold}
|
||||||
|
a:link { text-decoration: none; color: #0000FF}
|
||||||
|
a:visited { text-decoration: none; color: #0000FF}
|
||||||
|
a:hover { text-decoration: underline; color: #FF0000}
|
||||||
|
dfn { font-style: normal}
|
||||||
|
dfn:hover { font-style: normal; cursor: help}
|
||||||
|
.tblcomment { font-size: <?php echo $font_smallest; ?>; font-weight: normal; color: #000099; }
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
border: #686868 solid 1px;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
fieldset fieldset {
|
||||||
|
margin: 0.8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.mult_submit {
|
||||||
|
border: none;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdflayout {
|
||||||
|
overflow: hidden;
|
||||||
|
clip: inherit;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
display: none;
|
||||||
|
border: 1px solid #000000;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdflayout_table {
|
||||||
|
background: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>;
|
||||||
|
color: #000000;
|
||||||
|
overflow: hidden;
|
||||||
|
clip: inherit;
|
||||||
|
z-index: 2;
|
||||||
|
display: inline;
|
||||||
|
visibility: inherit;
|
||||||
|
cursor: move;
|
||||||
|
position: absolute;
|
||||||
|
font-size: <?php echo $font_smaller; ?>;
|
||||||
|
border: 1px dashed #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.print{font-family:arial;font-size:8pt;}
|
||||||
|
|
||||||
|
/* MySQL Parser */
|
||||||
|
.syntax {font-family: sans-serif; font-size: <?php echo $font_smaller; ?>;}
|
||||||
|
.syntax_comment { padding-left: 4pt; padding-right: 4pt;}
|
||||||
|
.syntax_digit {}
|
||||||
|
.syntax_digit_hex {}
|
||||||
|
.syntax_digit_integer {}
|
||||||
|
.syntax_digit_float {}
|
||||||
|
.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 {}
|
||||||
|
|
||||||
|
hr{ color: #666666; background-color: #666666; border: 0; height: 1px; }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* topmenu */
|
||||||
|
ul#topmenu {
|
||||||
|
font-weight: bold;
|
||||||
|
list-style-type: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#topmenu li {
|
||||||
|
float: left;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topmenu img {
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* default tab styles */
|
||||||
|
.tab, .tabcaution, .tabactive {
|
||||||
|
display: block;
|
||||||
|
margin: 0.2em 0.2em 0 0.2em;
|
||||||
|
padding: 0.2em 0.2em 0 0.2em;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* disabled tabs */
|
||||||
|
span.tab {
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* disabled drop/empty tabs */
|
||||||
|
span.tabcaution {
|
||||||
|
color: #ff6666;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* enabled drop/empty tabs */
|
||||||
|
a.tabcaution {
|
||||||
|
color: #FF0000;
|
||||||
|
}
|
||||||
|
a.tabcaution:hover {
|
||||||
|
color: #FFFFFF;
|
||||||
|
background-color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
<?php if ( $GLOBALS['cfg']['LightTabs'] ) { ?>
|
||||||
|
/* active tab */
|
||||||
|
a.tabactive {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
<?php } else { ?>
|
||||||
|
#topmenu {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
padding: 0.1em 0.3em 0.1em 0.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#topmenu li {
|
||||||
|
border-bottom: 1pt solid silver;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* default tab styles */
|
||||||
|
.tab, .tabcaution, .tabactive {
|
||||||
|
background-image: url(../themes/aqua/img/AquaStringGrey.png); background-repeat: repeat-x;
|
||||||
|
background-color: #E5E5E5;
|
||||||
|
border: 0.1em solid silver;
|
||||||
|
border-bottom: 0;
|
||||||
|
border-radius-topleft: 0.4em;
|
||||||
|
border-radius-topright: 0.4em;
|
||||||
|
-moz-border-radius-topleft: 0.4em;
|
||||||
|
-moz-border-radius-topright: 0.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* enabled hover/active tabs */
|
||||||
|
a.tab:hover, .tabactive {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.2em 0.4em 0.2em 0.4em;
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: #E5E5E5;
|
||||||
|
background-image: url(../themes/aqua/img/AquaStringGrey.png); background-repeat: repeat-x;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.tabcaution:hover {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.2em 0.4em 0.2em 0.4em;
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: #ff0000;
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.tab:hover, .tabactive {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #FFFFFF;
|
||||||
|
background-color: #8FBDE9;
|
||||||
|
background-image: url(../themes/aqua/img/AquaString.png); background-repeat: repeat-x;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* disabled drop/empty tabs */
|
||||||
|
span.tab, span.tabcaution {
|
||||||
|
cursor: url(themes/original/img/error.ico), url(../themes/original/img/error.ico), default;
|
||||||
|
}
|
||||||
|
<?php } ?>
|
||||||
|
/* end topmenu */
|
||||||
|
|
||||||
|
|
||||||
|
/* 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 */
|
||||||
|
|
||||||
|
|
||||||
|
/* data tables */
|
||||||
|
table.data caption,
|
||||||
|
table.data th,
|
||||||
|
table.data td {
|
||||||
|
padding: 0.1em 0.5em 0.1em 0.5em;
|
||||||
|
margin: 0;
|
||||||
|
margin: 0.1em;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* odd table rows 1,3,5,7,... */
|
||||||
|
table tr.odd th,
|
||||||
|
table tr.odd {
|
||||||
|
background-color: <?php echo $GLOBALS['cfg']['BgcolorOne']; ?>;
|
||||||
|
text-align: left;
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* even table rows 2,4,6,8,... */
|
||||||
|
table tr.even th,
|
||||||
|
table tr.even {
|
||||||
|
background-color: <?php echo $GLOBALS['cfg']['BgcolorTwo']; ?>;
|
||||||
|
text-align: left;
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* marked tbale rows */
|
||||||
|
table tr.marked th,
|
||||||
|
table tr.marked {
|
||||||
|
background-color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* hovered table rows */
|
||||||
|
table tr.odd:hover,
|
||||||
|
table tr.even:hover,
|
||||||
|
table tr.odd:hover th,
|
||||||
|
table tr.even:hover th,
|
||||||
|
table tr.hover th,
|
||||||
|
table tr.hover {
|
||||||
|
background-color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
table .value {
|
||||||
|
text-align: right;
|
||||||
|
white-space: nowrap;
|
||||||
|
font-family: "Courier New", Courier, monospace;
|
||||||
|
}
|
||||||
|
/* IE doesnt handles 'pre' right */
|
||||||
|
table [class=value] {
|
||||||
|
white-space: pre;
|
||||||
|
}
|
||||||
|
|
||||||
|
.value .attention {
|
||||||
|
color: red;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.value .allfine {
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
/* END data tables */
|
||||||
|
|
||||||
|
|
||||||
|
.tblHeaders {
|
||||||
|
background-color: #cacaca;
|
||||||
|
background-image: url(../themes/aqua/img/bg_tblHeaders.png);
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.tblFooters {
|
||||||
|
background-color: #DDDDDD;
|
||||||
|
background-image: url(../themes/aqua/img/AquaStringGreyLarge.png);
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
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 */
|
||||||
|
|
||||||
|
img, input, select, button {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
#serverinfo {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#serverinfo .item {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#span_table_comment {
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#serverinfo img {
|
||||||
|
margin: 0 0.1em 0 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* disabled text */
|
||||||
|
.disabled, .disabled a:link, disabled a:active, .disabled a:visited {
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
.disabled a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.disabled td, td.disabled {
|
||||||
|
background-color: #cccccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#textSQLDUMP {
|
||||||
|
width: 95%;
|
||||||
|
height: 95%;
|
||||||
|
font-family: "Courier New", Courier, mono;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#TooltipContainer {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 99;
|
||||||
|
width: 20em;
|
||||||
|
height: auto;
|
||||||
|
overflow: visible;
|
||||||
|
visibility: hidden;
|
||||||
|
background-color: #ffffcc;
|
||||||
|
color: #006600;
|
||||||
|
border: 0.1em solid #000000;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset.tblFooters {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
text-align: right;
|
||||||
|
float: none;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_add_user_login div.item {
|
||||||
|
border-bottom: 1px solid silver;
|
||||||
|
padding-bottom: 0.3em;
|
||||||
|
margin-bottom: 0.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_add_user_login label {
|
||||||
|
float: left;
|
||||||
|
display: block;
|
||||||
|
width: 10em;
|
||||||
|
max-width: 100%;
|
||||||
|
text-align: right;
|
||||||
|
padding-right: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_add_user_login span.options #select_pred_username,
|
||||||
|
#fieldset_add_user_login span.options #select_pred_hostname,
|
||||||
|
#fieldset_add_user_login span.options #select_pred_password {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_add_user_login span.options {
|
||||||
|
float: left;
|
||||||
|
display: block;
|
||||||
|
width: 12em;
|
||||||
|
max-width: 100%;
|
||||||
|
padding-right: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_add_user_login input {
|
||||||
|
width: 12em;
|
||||||
|
clear: right;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_add_user_login span.options input {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_user_priv div.item {
|
||||||
|
float: left;
|
||||||
|
width: 9em;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_user_priv div.item div.item {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_user_priv div.item label{
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_user_priv div.item select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fieldset_user_global_rights fieldset {
|
||||||
|
float: left;
|
||||||
|
}
|
BIN
aqua/img/AquaString.png
Normal file
After Width: | Height: | Size: 351 B |
BIN
aqua/img/AquaStringGrey.png
Normal file
After Width: | Height: | Size: 339 B |
BIN
aqua/img/AquaStringGreyLarge.png
Normal file
After Width: | Height: | Size: 354 B |
BIN
aqua/img/arrow_ltr.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
aqua/img/arrow_rtl.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
aqua/img/asc_order.png
Normal file
After Width: | Height: | Size: 230 B |
BIN
aqua/img/b_bookmark.png
Normal file
After Width: | Height: | Size: 338 B |
BIN
aqua/img/b_browse.png
Normal file
After Width: | Height: | Size: 449 B |
BIN
aqua/img/b_calendar.png
Normal file
After Width: | Height: | Size: 958 B |
BIN
aqua/img/b_comment.png
Normal file
After Width: | Height: | Size: 508 B |
BIN
aqua/img/b_dbstatistics.png
Normal file
After Width: | Height: | Size: 228 B |
BIN
aqua/img/b_deltbl.png
Normal file
After Width: | Height: | Size: 949 B |
BIN
aqua/img/b_docs.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
aqua/img/b_docsql.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
aqua/img/b_drop.png
Normal file
After Width: | Height: | Size: 949 B |
BIN
aqua/img/b_edit.png
Normal file
After Width: | Height: | Size: 676 B |
BIN
aqua/img/b_empty.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
aqua/img/b_engine.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
aqua/img/b_export.png
Normal file
After Width: | Height: | Size: 358 B |
BIN
aqua/img/b_firstpage.png
Normal file
After Width: | Height: | Size: 214 B |
BIN
aqua/img/b_ftext.png
Normal file
After Width: | Height: | Size: 244 B |
BIN
aqua/img/b_help.png
Normal file
After Width: | Height: | Size: 216 B |
BIN
aqua/img/b_home.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
aqua/img/b_import.png
Normal file
After Width: | Height: | Size: 264 B |
BIN
aqua/img/b_index.png
Normal file
After Width: | Height: | Size: 276 B |
BIN
aqua/img/b_info.png
Normal file
After Width: | Height: | Size: 219 B |
BIN
aqua/img/b_insrow.png
Normal file
After Width: | Height: | Size: 622 B |
BIN
aqua/img/b_lastpage.png
Normal file
After Width: | Height: | Size: 214 B |
BIN
aqua/img/b_minus.png
Normal file
After Width: | Height: | Size: 193 B |
BIN
aqua/img/b_newdb.png
Normal file
After Width: | Height: | Size: 947 B |
BIN
aqua/img/b_newtbl.png
Normal file
After Width: | Height: | Size: 345 B |
BIN
aqua/img/b_nextpage.png
Normal file
After Width: | Height: | Size: 303 B |
BIN
aqua/img/b_pdfdoc.png
Normal file
After Width: | Height: | Size: 264 B |
BIN
aqua/img/b_plus.png
Normal file
After Width: | Height: | Size: 198 B |
BIN
aqua/img/b_prevpage.png
Normal file
After Width: | Height: | Size: 317 B |
BIN
aqua/img/b_primary.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
aqua/img/b_print.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
aqua/img/b_props.png
Normal file
After Width: | Height: | Size: 603 B |
BIN
aqua/img/b_propsFW.png
Normal file
After Width: | Height: | Size: 545 B |
BIN
aqua/img/b_relations.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
aqua/img/b_save.png
Normal file
After Width: | Height: | Size: 344 B |
BIN
aqua/img/b_sbrowse.png
Normal file
After Width: | Height: | Size: 208 B |
BIN
aqua/img/b_sdb.png
Normal file
After Width: | Height: | Size: 216 B |
BIN
aqua/img/b_search.png
Normal file
After Width: | Height: | Size: 676 B |
BIN
aqua/img/b_selboard.png
Normal file
After Width: | Height: | Size: 237 B |
BIN
aqua/img/b_select.png
Normal file
After Width: | Height: | Size: 676 B |
BIN
aqua/img/b_sql.png
Normal file
After Width: | Height: | Size: 850 B |
BIN
aqua/img/b_sqldoc.png
Normal file
After Width: | Height: | Size: 253 B |
BIN
aqua/img/b_sqlhelp.png
Normal file
After Width: | Height: | Size: 240 B |
BIN
aqua/img/b_tblanalyse.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
aqua/img/b_tblexport.png
Normal file
After Width: | Height: | Size: 335 B |
BIN
aqua/img/b_tblimport.png
Normal file
After Width: | Height: | Size: 230 B |
BIN
aqua/img/b_tblops.png
Normal file
After Width: | Height: | Size: 718 B |
BIN
aqua/img/b_tbloptimize.png
Normal file
After Width: | Height: | Size: 264 B |
BIN
aqua/img/b_tipp.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
aqua/img/b_unique.png
Normal file
After Width: | Height: | Size: 243 B |
BIN
aqua/img/b_usradd.png
Normal file
After Width: | Height: | Size: 471 B |
BIN
aqua/img/b_usrcheck.png
Normal file
After Width: | Height: | Size: 353 B |
BIN
aqua/img/b_usrdrop.png
Normal file
After Width: | Height: | Size: 387 B |
BIN
aqua/img/b_usredit.png
Normal file
After Width: | Height: | Size: 454 B |
BIN
aqua/img/b_usrlist.png
Normal file
After Width: | Height: | Size: 352 B |
BIN
aqua/img/b_view.png
Normal file
After Width: | Height: | Size: 841 B |
BIN
aqua/img/b_views.png
Normal file
After Width: | Height: | Size: 477 B |
BIN
aqua/img/bd_browse.png
Normal file
After Width: | Height: | Size: 422 B |
BIN
aqua/img/bd_deltbl.png
Normal file
After Width: | Height: | Size: 424 B |
BIN
aqua/img/bd_drop.png
Normal file
After Width: | Height: | Size: 337 B |
BIN
aqua/img/bd_empty.png
Normal file
After Width: | Height: | Size: 647 B |
BIN
aqua/img/bd_firstpage.png
Normal file
After Width: | Height: | Size: 214 B |
BIN
aqua/img/bd_ftext.png
Normal file
After Width: | Height: | Size: 244 B |
BIN
aqua/img/bd_index.png
Normal file
After Width: | Height: | Size: 276 B |
BIN
aqua/img/bd_insrow.png
Normal file
After Width: | Height: | Size: 347 B |
BIN
aqua/img/bd_lastpage.png
Normal file
After Width: | Height: | Size: 214 B |
BIN
aqua/img/bd_nextpage.png
Normal file
After Width: | Height: | Size: 204 B |
BIN
aqua/img/bd_prevpage.png
Normal file
After Width: | Height: | Size: 204 B |
BIN
aqua/img/bd_primary.png
Normal file
After Width: | Height: | Size: 334 B |
BIN
aqua/img/bd_sbrowse.png
Normal file
After Width: | Height: | Size: 208 B |
BIN
aqua/img/bd_select.png
Normal file
After Width: | Height: | Size: 629 B |
BIN
aqua/img/bd_unique.png
Normal file
After Width: | Height: | Size: 243 B |
BIN
aqua/img/bg_aquaGrad.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
aqua/img/bg_main.png
Normal file
After Width: | Height: | Size: 235 B |
BIN
aqua/img/bg_tblHeaders.png
Normal file
After Width: | Height: | Size: 344 B |
BIN
aqua/img/error.ico
Normal file
After Width: | Height: | Size: 318 B |
BIN
aqua/img/item.png
Normal file
After Width: | Height: | Size: 308 B |
BIN
aqua/img/item_ltr.png
Normal file
After Width: | Height: | Size: 294 B |
BIN
aqua/img/item_rtl.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
aqua/img/logo_left.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
aqua/img/logo_right.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
aqua/img/php_sym.png
Normal file
After Width: | Height: | Size: 213 B |
BIN
aqua/img/pma_logo2.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
aqua/img/s_asc.png
Normal file
After Width: | Height: | Size: 198 B |
BIN
aqua/img/s_asci.png
Normal file
After Width: | Height: | Size: 235 B |
BIN
aqua/img/s_attention.png
Normal file
After Width: | Height: | Size: 220 B |
BIN
aqua/img/s_cancel.png
Normal file
After Width: | Height: | Size: 417 B |
BIN
aqua/img/s_cancel2.png
Normal file
After Width: | Height: | Size: 219 B |
BIN
aqua/img/s_db.png
Normal file
After Width: | Height: | Size: 817 B |
BIN
aqua/img/s_desc.png
Normal file
After Width: | Height: | Size: 197 B |
BIN
aqua/img/s_error.png
Normal file
After Width: | Height: | Size: 240 B |