Skip to content
Snippets Groups Projects
Commit 8ed45f3a authored by Anika Henke's avatar Anika Henke
Browse files

fix for disturbing css text alignment in text inputs

darcs-hash:20060225223830-d5083-80a20c33259db6f45c4baf79f58e351020b3ea61.gz
parent e5606d11
No related branches found
No related tags found
No related merge requests found
...@@ -92,24 +92,22 @@ div.dokuwiki textarea.edit { ...@@ -92,24 +92,22 @@ div.dokuwiki textarea.edit {
div.dokuwiki input.edit, div.dokuwiki select.edit { div.dokuwiki input.edit, div.dokuwiki select.edit {
font-size: 100%; font-size: 100%;
border: 1px solid __dark__; border: 1px solid __dark__;
height: 1.65em;
color: Black; color: Black;
background-color: __white__; background-color: __white__;
vertical-align: middle; vertical-align: middle;
margin: 1px; margin: 1px;
padding: 0 5px; padding: 0.20em 0.3em;
display: inline; display: inline;
} }
div.dokuwiki input.missing { div.dokuwiki input.missing {
font-size: 100%; font-size: 100%;
border: 1px solid __dark__; border: 1px solid __dark__;
height: 1.65em;
color: Black; color: Black;
background-color: #ffcccc; background-color: #ffcccc;
vertical-align: middle; vertical-align: middle;
margin: 1px; margin: 1px;
padding: 0 5px; padding: 0.20em 0.3em;
display: inline; display: inline;
} }
...@@ -148,9 +146,8 @@ div.dokuwiki input.button, div.dokuwiki button.button{ ...@@ -148,9 +146,8 @@ div.dokuwiki input.button, div.dokuwiki button.button{
text-decoration:none; text-decoration:none;
font-size: 100%; font-size: 100%;
cursor: pointer; cursor: pointer;
height: 1.8em;
margin: 1px; margin: 1px;
padding: 0 5px; padding: 0.125em 0.4em;
display: inline-block; display: inline-block;
/* Mac IE will not see this and continue with inline-block */ /* Mac IE will not see this and continue with inline-block */
...@@ -160,6 +157,7 @@ div.dokuwiki input.button, div.dokuwiki button.button{ ...@@ -160,6 +157,7 @@ div.dokuwiki input.button, div.dokuwiki button.button{
} }
* html div.dokuwiki input.button, * html div.dokuwiki button.button{ * html div.dokuwiki input.button, * html div.dokuwiki button.button{
height: 1.8em;
padding: 0; padding: 0;
} }
......
...@@ -48,7 +48,7 @@ div.dokuwiki .bar { ...@@ -48,7 +48,7 @@ div.dokuwiki .bar {
border-top:1px solid __dark__; border-top:1px solid __dark__;
border-bottom:1px solid __dark__; border-bottom:1px solid __dark__;
background: __medium__; background: __medium__;
padding:2px; padding:0.15em;
margin:0; margin:0;
clear: both; clear: both;
} }
......
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