diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-04-10 21:24:59 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-04-10 21:24:59 +0200 |
commit | c1b992e179931983b2b71586b99428ad98ed5d43 (patch) | |
tree | c48f33ed4963dd65169bbba7c27c67799b2cecbd | |
parent | 2e2fda0810b802a029201f606373c449bff4e7c0 (diff) | |
download | rpg-c1b992e179931983b2b71586b99428ad98ed5d43.tar.gz rpg-c1b992e179931983b2b71586b99428ad98ed5d43.tar.bz2 |
make alphatransparency shadows available to modern browsers only
darcs-hash:20060410192459-7ad00-4212125ec31532656030b4d80984f6b45b5cf293.gz
-rw-r--r-- | lib/tpl/default/design.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/tpl/default/design.css b/lib/tpl/default/design.css index 3e7b36658..3c2cedfec 100644 --- a/lib/tpl/default/design.css +++ b/lib/tpl/default/design.css @@ -92,6 +92,10 @@ div.dokuwiki textarea.edit { font-size:14px; padding: 0.3em 0 0 0.3em; width:100%; +} + +/* nice alphatransparency background except for IE <7 */ +html>body div.dokuwiki textarea.edit { background: __white__ url(images/inputshadow.png) repeat-x top; } @@ -104,6 +108,11 @@ div.dokuwiki input.edit, div.dokuwiki select.edit { margin: 1px; padding: 0.20em 0.3em; display: inline; +} + +/* nice alphatransparency background except for IE <7 */ +html>body div.dokuwiki input.edit, +html>body div.dokuwiki select.edit { background: __white__ url(images/inputshadow.png) repeat-x top; } @@ -173,6 +182,11 @@ div.dokuwiki input.button, div.dokuwiki button.button{ cursor: pointer; margin: 1px; padding: 0.125em 0.4em; +} + +/* nice alphatransparency background except for IE <7 */ +html>body div.dokuwiki input.button, +html>body div.dokuwiki button.button { background: __white__ url(images/buttonshadow.png) repeat-x bottom; } @@ -719,6 +733,10 @@ button.toolbutton{ margin: 0 1px 0 0; border: 1px solid __dark__; cursor: pointer; +} + +/* nice alphatransparency background except for IE <7 */ +html>body button.toolbutton{ background: __white__ url(images/buttonshadow.png) repeat-x bottom; } |