revised
This commit is contained in:
@@ -17,6 +17,7 @@ $Source$
|
||||
* libraries/auth/cookie.auth.lib.php: use PMA_sendHeaderLocation()
|
||||
and new functionality of PMA_generate_common_url()
|
||||
* themes/original: revised
|
||||
* themes/darkblue_orange: revised
|
||||
|
||||
2005-11-25 Michal Čihař <michal@cihar.com>
|
||||
* Documentation.html, config.footer.inc.php(deleted),
|
||||
|
@@ -1,3 +1,5 @@
|
||||
/******************************************************************************/
|
||||
/* general tags */
|
||||
body {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 10px;
|
||||
@@ -7,49 +9,89 @@ body {
|
||||
padding: 2px 2px 2px 2px;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* gecko FIX, font size is not correctly assigned to all child elements */
|
||||
body * {
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
select{
|
||||
form {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
select {
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
img, input, select, button {
|
||||
vertical-align: middle;
|
||||
/* buttons in some browsers (eg. Konqueror) are block elements,
|
||||
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#leftframelinks,
|
||||
div#databaseList {
|
||||
text-align: center;
|
||||
border-bottom: 0.1em solid #ffffff;
|
||||
border-bottom: 0.05em solid #ffffff;
|
||||
margin-bottom: 0.5em;
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
|
||||
div#leftframelinks .icon {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div#leftframelinks a {
|
||||
margin: 0.1em;
|
||||
padding: 0.2em;
|
||||
border: 0.05em solid #ffffff;
|
||||
}
|
||||
|
||||
div#leftframelinks a:hover {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
div#databaseList form {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/* leftdatabaselist */
|
||||
div#left_tableList {
|
||||
div#left_tableList ul {
|
||||
list-style-type: none;
|
||||
list-style-position: outside;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 80%;
|
||||
background-color: #666699;
|
||||
}
|
||||
|
||||
div#left_tableList ul ul {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
div#left_tableList a {
|
||||
@@ -75,6 +117,7 @@ div#left_tableList li:hover {
|
||||
<?php } ?>
|
||||
|
||||
div#left_tableList img {
|
||||
padding: 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -4,4 +4,5 @@
|
||||
$theme_name = 'Darkblue/orange';
|
||||
$theme_version = 2;
|
||||
$theme_generation = 2;
|
||||
$theme_full_version = '2.7.0.0';
|
||||
?>
|
||||
|
@@ -21,7 +21,6 @@ select {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
|
||||
/* buttons in some browsers (eg. Konqueror) are block elements,
|
||||
this breaks design */
|
||||
button {
|
||||
|
@@ -101,12 +101,14 @@ table caption,
|
||||
table th,
|
||||
table td {
|
||||
padding: 0.1em 0.5em 0.1em 0.5em;
|
||||
margin: 0;
|
||||
margin: 0.1em;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
img, input, select, button {
|
||||
img,
|
||||
input,
|
||||
select,
|
||||
button {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
@@ -121,12 +123,14 @@ fieldset.tblFooters {
|
||||
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;
|
||||
@@ -137,7 +141,6 @@ button.mult_submit {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
|
||||
/* odd table rows 1,3,5,7,... */
|
||||
table tr.odd th,
|
||||
table tr.odd {
|
||||
@@ -193,7 +196,6 @@ img.lightbulb {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.pdflayout {
|
||||
overflow: hidden;
|
||||
clip: inherit;
|
||||
@@ -227,48 +229,63 @@ img.lightbulb {
|
||||
font-family: sans-serif;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.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 {
|
||||
}
|
||||
|
||||
|
||||
/* leave some space between icons and text */
|
||||
.icon {
|
||||
vertical-align: middle;
|
||||
@@ -319,6 +336,7 @@ div.notice {
|
||||
color: #CC0000;
|
||||
background-color: #FFFFCC;
|
||||
}
|
||||
p.warning,
|
||||
h1.warning,
|
||||
div.warning {
|
||||
margin: 0.5em 0 0.5em 0;
|
||||
@@ -348,6 +366,7 @@ div.warning {
|
||||
background-color: #FFFFCC;
|
||||
color: #ff0000;
|
||||
}
|
||||
|
||||
h1.error,
|
||||
div.error {
|
||||
margin: 0.5em 0 0.5em 0;
|
||||
@@ -373,7 +392,6 @@ div.error h1 {
|
||||
margin: 0 0 0.2em 0;
|
||||
}
|
||||
|
||||
|
||||
.confirmation {
|
||||
background-color: #FFFFCC;
|
||||
}
|
||||
@@ -410,11 +428,13 @@ fieldset.confirmation legend {
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.tblFooters {
|
||||
background-color: #D0DCE0;
|
||||
font-weight: normal;
|
||||
color: #000000;
|
||||
background-color: #D0DCE0;
|
||||
}
|
||||
|
||||
.tblHeaders a:link,
|
||||
.tblHeaders a:active,
|
||||
.tblHeaders a:visited,
|
||||
@@ -423,13 +443,14 @@ fieldset.confirmation legend {
|
||||
.tblFooters a:visited {
|
||||
color: #0000FF;
|
||||
}
|
||||
|
||||
.tblHeaders a:hover,
|
||||
.tblFooters a:hover {
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
/* forbidden, no privilegs */
|
||||
.noPrivileges{
|
||||
.noPrivileges {
|
||||
color: #FF0000;
|
||||
font-weight: bold;
|
||||
}
|
||||
@@ -437,14 +458,15 @@ fieldset.confirmation legend {
|
||||
/* disabled text */
|
||||
.disabled,
|
||||
.disabled a:link,
|
||||
disabled a:active,
|
||||
.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;
|
||||
@@ -528,18 +550,23 @@ ul#topmenu li {
|
||||
}
|
||||
|
||||
/* enabled hover/active tabs */
|
||||
a.tab:hover, a.tabcaution:hover, .tabactive, .tabactive:hover {
|
||||
a.tab:hover,
|
||||
a.tabcaution:hover,
|
||||
.tabactive,
|
||||
.tabactive:hover {
|
||||
margin: 0;
|
||||
padding: 0.2em 0.4em 0.2em 0.4em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.tab:hover, .tabactive {
|
||||
a.tab:hover,
|
||||
.tabactive {
|
||||
background-color: #D5D5D5;
|
||||
}
|
||||
|
||||
/* 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;
|
||||
}
|
||||
<?php } ?>
|
||||
@@ -611,6 +638,7 @@ div#tablestatistics table caption {
|
||||
/* END server privileges */
|
||||
|
||||
|
||||
|
||||
/* Heading */
|
||||
#serverinfo {
|
||||
font-weight: bold;
|
||||
@@ -650,10 +678,8 @@ div#tablestatistics table caption {
|
||||
color: #006600;
|
||||
border: 0.1em solid #000000;
|
||||
padding: 0.5em;
|
||||
font-family: <?php echo $right_font_family; ?>;
|
||||
}
|
||||
|
||||
|
||||
/* user privileges */
|
||||
#fieldset_add_user_login div.item {
|
||||
border-bottom: 1px solid silver;
|
||||
|
Reference in New Issue
Block a user