This commit is contained in:
Marc Delisle
2006-10-11 12:13:14 +00:00
parent 042a29f4e4
commit ced6f28444
5 changed files with 34 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 777 B

After

Width:  |  Height:  |  Size: 787 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 832 B

After

Width:  |  Height:  |  Size: 884 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 923 B

After

Width:  |  Height:  |  Size: 778 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 782 B

After

Width:  |  Height:  |  Size: 758 B

View File

@@ -1,5 +1,5 @@
README FILE FOR THE VERY SMALL THEME USED WITH PHPMAYADMIN
README FILE FOR THE VERY SMALL THEME USED WITH PHPMYADMIN
----------------------------------------------------------------------
CHANGE LOG:
@@ -31,6 +31,39 @@ CHANGE LOG:
Note:
[whatever] is any path to your phpMyAdmin-Installation.
1b. OPTIONAL
-----------------------------------------------------------------------
in your config.inc.php you should set the configuration
$cfg['LeftDisplayLogo'] =FALSE;
to save space on the left frame at the top
Optional for Internet Explorer:
In mozilla it looks very small now ;)
but in Internet Explorer the new style is not valid so it is ignored (but its
still smaller than the original already)
To get an even smaller view in IE, you need a small hack:
(use an editor with a replace function where you can
replace text inside all documents inside your PMA folder [whatever])
1.
replace all occurrences of
`type="checkbox" `
----------------
with
`type="checkbox" class="inpcheck" `
---------------------------------
(take care that you also replace the spaces after the quotes)
2.
replace all occurrences of
`height="16"`
-----------
with
`height="14"`
-----------
----------------------------------------------------------------------