diff options
author | matthiasgrimm <matthiasgrimm@users.sourceforge.net> | 2005-06-07 18:48:18 +0200 |
---|---|---|
committer | matthiasgrimm <matthiasgrimm@users.sourceforge.net> | 2005-06-07 18:48:18 +0200 |
commit | 8ef2f6259846bbb96aa086b35fcdbbade5435e2b (patch) | |
tree | ea97174ed28f4d8f42508f3a7109303129f23ae2 | |
parent | dc57ef04af4d12bb589c98e7457a22c44a091815 (diff) | |
download | rpg-8ef2f6259846bbb96aa086b35fcdbbade5435e2b.tar.gz rpg-8ef2f6259846bbb96aa086b35fcdbbade5435e2b.tar.bz2 |
IE secedit button fix
IE displays the sector edit buttons bigger than designed.
This is a known problem of the special Microsoft box model
the IE uses. This patch adjusts the buttons height to the
desired value but they are still too wide. As I understand
certain internet sources right: There is no solution for
this. Whatever, let's enjoy what we have.
darcs-hash:20050607164818-7ef76-1881a9530b948854e9788db34ca6806f64d2ff65.gz
-rw-r--r-- | lib/tpl/default/design.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tpl/default/design.css b/lib/tpl/default/design.css index 9eff3d0d5..f16c4b198 100644 --- a/lib/tpl/default/design.css +++ b/lib/tpl/default/design.css @@ -141,7 +141,7 @@ div.secedit input.button { padding: 0px; font-size: 10px; cursor: pointer; - height: 15px; + height: 15px !important; max-height: 15px !important; min-height: 15px !important; float:right; |