Skip to content
Snippets Groups Projects
Commit c1b992e1 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

make alphatransparency shadows available to modern browsers only

darcs-hash:20060410192459-7ad00-4212125ec31532656030b4d80984f6b45b5cf293.gz
parent 2e2fda08
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment