revised
This commit is contained in:
@@ -17,6 +17,7 @@ $Source$
|
|||||||
* 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
|
* themes/original: revised
|
||||||
|
* themes/darkblue_orange: 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,3 +1,5 @@
|
|||||||
|
/******************************************************************************/
|
||||||
|
/* general tags */
|
||||||
body {
|
body {
|
||||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
@@ -7,49 +9,89 @@ body {
|
|||||||
padding: 2px 2px 2px 2px;
|
padding: 2px 2px 2px 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a img {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* gecko FIX, font size is not correctly assigned to all child elements */
|
/* gecko FIX, font size is not correctly assigned to all child elements */
|
||||||
body * {
|
body * {
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
select{
|
form {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
img, input, select, button {
|
/* buttons in some browsers (eg. Konqueror) are block elements,
|
||||||
vertical-align: middle;
|
this breaks design */
|
||||||
|
button {
|
||||||
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/******************************************************************************/
|
||||||
|
/* classes */
|
||||||
|
|
||||||
|
/* leave some space between icons and text */
|
||||||
|
.icon {
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 0.3em;
|
||||||
|
margin-left: 0.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.lightbulb {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/******************************************************************************/
|
||||||
|
/* specific elements */
|
||||||
|
|
||||||
div#pmalogo,
|
div#pmalogo,
|
||||||
div#leftframelinks,
|
div#leftframelinks,
|
||||||
div#databaseList {
|
div#databaseList {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-bottom: 0.1em solid #ffffff;
|
border-bottom: 0.05em solid #ffffff;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
padding-bottom: 0.5em;
|
padding-bottom: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#leftframelinks .icon {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
div#leftframelinks a {
|
div#leftframelinks a {
|
||||||
margin: 0.1em;
|
margin: 0.1em;
|
||||||
|
padding: 0.2em;
|
||||||
|
border: 0.05em solid #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#leftframelinks a:hover {
|
div#leftframelinks a:hover {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#databaseList form {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* leftdatabaselist */
|
/* leftdatabaselist */
|
||||||
div#left_tableList {
|
div#left_tableList ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
list-style-position: outside;
|
list-style-position: outside;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
font-size: 80%;
|
||||||
|
background-color: #666699;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#left_tableList ul ul {
|
||||||
|
font-size: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#left_tableList a {
|
div#left_tableList a {
|
||||||
@@ -75,6 +117,7 @@ div#left_tableList li:hover {
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
div#left_tableList img {
|
div#left_tableList img {
|
||||||
|
padding: 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -4,4 +4,5 @@
|
|||||||
$theme_name = 'Darkblue/orange';
|
$theme_name = 'Darkblue/orange';
|
||||||
$theme_version = 2;
|
$theme_version = 2;
|
||||||
$theme_generation = 2;
|
$theme_generation = 2;
|
||||||
|
$theme_full_version = '2.7.0.0';
|
||||||
?>
|
?>
|
||||||
|
@@ -21,7 +21,6 @@ select {
|
|||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* buttons in some browsers (eg. Konqueror) are block elements,
|
/* buttons in some browsers (eg. Konqueror) are block elements,
|
||||||
this breaks design */
|
this breaks design */
|
||||||
button {
|
button {
|
||||||
|
@@ -101,12 +101,14 @@ table caption,
|
|||||||
table th,
|
table th,
|
||||||
table td {
|
table td {
|
||||||
padding: 0.1em 0.5em 0.1em 0.5em;
|
padding: 0.1em 0.5em 0.1em 0.5em;
|
||||||
margin: 0;
|
|
||||||
margin: 0.1em;
|
margin: 0.1em;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
img, input, select, button {
|
img,
|
||||||
|
input,
|
||||||
|
select,
|
||||||
|
button {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -121,12 +123,14 @@ fieldset.tblFooters {
|
|||||||
float: none;
|
float: none;
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset .formelement {
|
fieldset .formelement {
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: 0.5em;
|
margin-right: 0.5em;
|
||||||
/* IE */
|
/* IE */
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* revert for Gecko */
|
/* revert for Gecko */
|
||||||
fieldset div[class=formelement] {
|
fieldset div[class=formelement] {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
@@ -137,7 +141,6 @@ button.mult_submit {
|
|||||||
background-color: transparent;
|
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 {
|
||||||
@@ -193,7 +196,6 @@ img.lightbulb {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.pdflayout {
|
.pdflayout {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
clip: inherit;
|
clip: inherit;
|
||||||
@@ -227,48 +229,63 @@ img.lightbulb {
|
|||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_comment {
|
.syntax_comment {
|
||||||
padding-left: 4pt;
|
padding-left: 4pt;
|
||||||
padding-right: 4pt;
|
padding-right: 4pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_digit {
|
.syntax_digit {
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_digit_hex {
|
.syntax_digit_hex {
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_digit_integer {
|
.syntax_digit_integer {
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_digit_float {
|
.syntax_digit_float {
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_punct {
|
.syntax_punct {
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_alpha {
|
.syntax_alpha {
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_alpha_columnType {
|
.syntax_alpha_columnType {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_alpha_columnAttrib {
|
.syntax_alpha_columnAttrib {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_alpha_reservedWord {
|
.syntax_alpha_reservedWord {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_alpha_functionName {
|
.syntax_alpha_functionName {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_alpha_identifier {
|
.syntax_alpha_identifier {
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_alpha_charset {
|
.syntax_alpha_charset {
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_alpha_variable {
|
.syntax_alpha_variable {
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_quote {
|
.syntax_quote {
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
}
|
}
|
||||||
|
|
||||||
.syntax_quote_backtick {
|
.syntax_quote_backtick {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* leave some space between icons and text */
|
/* leave some space between icons and text */
|
||||||
.icon {
|
.icon {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
@@ -319,6 +336,7 @@ div.notice {
|
|||||||
color: #CC0000;
|
color: #CC0000;
|
||||||
background-color: #FFFFCC;
|
background-color: #FFFFCC;
|
||||||
}
|
}
|
||||||
|
p.warning,
|
||||||
h1.warning,
|
h1.warning,
|
||||||
div.warning {
|
div.warning {
|
||||||
margin: 0.5em 0 0.5em 0;
|
margin: 0.5em 0 0.5em 0;
|
||||||
@@ -348,6 +366,7 @@ div.warning {
|
|||||||
background-color: #FFFFCC;
|
background-color: #FFFFCC;
|
||||||
color: #ff0000;
|
color: #ff0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1.error,
|
h1.error,
|
||||||
div.error {
|
div.error {
|
||||||
margin: 0.5em 0 0.5em 0;
|
margin: 0.5em 0 0.5em 0;
|
||||||
@@ -373,7 +392,6 @@ div.error h1 {
|
|||||||
margin: 0 0 0.2em 0;
|
margin: 0 0 0.2em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.confirmation {
|
.confirmation {
|
||||||
background-color: #FFFFCC;
|
background-color: #FFFFCC;
|
||||||
}
|
}
|
||||||
@@ -410,11 +428,13 @@ fieldset.confirmation legend {
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tblFooters {
|
.tblFooters {
|
||||||
background-color: #D0DCE0;
|
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
|
background-color: #D0DCE0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tblHeaders a:link,
|
.tblHeaders a:link,
|
||||||
.tblHeaders a:active,
|
.tblHeaders a:active,
|
||||||
.tblHeaders a:visited,
|
.tblHeaders a:visited,
|
||||||
@@ -423,13 +443,14 @@ fieldset.confirmation legend {
|
|||||||
.tblFooters a:visited {
|
.tblFooters a:visited {
|
||||||
color: #0000FF;
|
color: #0000FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tblHeaders a:hover,
|
.tblHeaders a:hover,
|
||||||
.tblFooters a:hover {
|
.tblFooters a:hover {
|
||||||
color: #FF0000;
|
color: #FF0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* forbidden, no privilegs */
|
/* forbidden, no privilegs */
|
||||||
.noPrivileges{
|
.noPrivileges {
|
||||||
color: #FF0000;
|
color: #FF0000;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
@@ -437,14 +458,15 @@ fieldset.confirmation legend {
|
|||||||
/* disabled text */
|
/* disabled text */
|
||||||
.disabled,
|
.disabled,
|
||||||
.disabled a:link,
|
.disabled a:link,
|
||||||
disabled a:active,
|
.disabled a:active,
|
||||||
.disabled a:visited {
|
.disabled a:visited {
|
||||||
font-family: <?php echo $right_font_family; ?>;
|
|
||||||
color: #666666;
|
color: #666666;
|
||||||
}
|
}
|
||||||
|
|
||||||
.disabled a:hover {
|
.disabled a:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.disabled td,
|
tr.disabled td,
|
||||||
td.disabled {
|
td.disabled {
|
||||||
background-color: #cccccc;
|
background-color: #cccccc;
|
||||||
@@ -528,18 +550,23 @@ ul#topmenu li {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* enabled hover/active tabs */
|
/* enabled hover/active tabs */
|
||||||
a.tab:hover, a.tabcaution:hover, .tabactive, .tabactive:hover {
|
a.tab:hover,
|
||||||
|
a.tabcaution:hover,
|
||||||
|
.tabactive,
|
||||||
|
.tabactive:hover {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0.2em 0.4em 0.2em 0.4em;
|
padding: 0.2em 0.4em 0.2em 0.4em;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.tab:hover, .tabactive {
|
a.tab:hover,
|
||||||
|
.tabactive {
|
||||||
background-color: #D5D5D5;
|
background-color: #D5D5D5;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* disabled drop/empty tabs */
|
/* disabled drop/empty tabs */
|
||||||
span.tab, span.tabcaution {
|
span.tab,
|
||||||
|
span.tabcaution {
|
||||||
cursor: url(themes/original/img/error.ico), url(../themes/original/img/error.ico), default;
|
cursor: url(themes/original/img/error.ico), url(../themes/original/img/error.ico), default;
|
||||||
}
|
}
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
@@ -611,6 +638,7 @@ div#tablestatistics table caption {
|
|||||||
/* END server privileges */
|
/* END server privileges */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Heading */
|
/* Heading */
|
||||||
#serverinfo {
|
#serverinfo {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@@ -650,10 +678,8 @@ div#tablestatistics table caption {
|
|||||||
color: #006600;
|
color: #006600;
|
||||||
border: 0.1em solid #000000;
|
border: 0.1em solid #000000;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
font-family: <?php echo $right_font_family; ?>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* user privileges */
|
/* user privileges */
|
||||||
#fieldset_add_user_login div.item {
|
#fieldset_add_user_login div.item {
|
||||||
border-bottom: 1px solid silver;
|
border-bottom: 1px solid silver;
|
||||||
|
Reference in New Issue
Block a user