IE fixes
This commit is contained in:
parent
23bca4f384
commit
a52b1359cd
3 changed files with 40 additions and 3 deletions
|
|
@ -41,7 +41,9 @@ div.picker button.pickerbutton {
|
||||||
|
|
||||||
.dokuwiki textarea.edit {
|
.dokuwiki textarea.edit {
|
||||||
/* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */
|
/* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */
|
||||||
width: 100%;
|
width: 700px;
|
||||||
|
min-width: 100%;
|
||||||
|
max-width: 100%;
|
||||||
margin-bottom: .5em;
|
margin-bottom: .5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,9 @@
|
||||||
#dokuwiki__header {
|
#dokuwiki__header {
|
||||||
margin: 1em 0 0;
|
margin: 1em 0 0;
|
||||||
}
|
}
|
||||||
|
#IE7 #dokuwiki__header {
|
||||||
|
margin-top: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
#dokuwiki__header .headings {
|
#dokuwiki__header .headings {
|
||||||
margin-bottom: 2.1em;
|
margin-bottom: 2.1em;
|
||||||
|
|
@ -108,6 +111,9 @@
|
||||||
max-width: 64em;
|
max-width: 64em;
|
||||||
padding: 0 1em;
|
padding: 0 1em;
|
||||||
}
|
}
|
||||||
|
#IE6 #dokuwiki__usertools ul {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
#dokuwiki__usertools ul li.user {
|
#dokuwiki__usertools ul li.user {
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
|
|
@ -124,6 +130,9 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
|
#IE6 #dokuwiki__content {
|
||||||
|
margin-bottom: 1.4em;
|
||||||
|
}
|
||||||
#dokuwiki__pagetools ul li {
|
#dokuwiki__pagetools ul li {
|
||||||
display: inline;
|
display: inline;
|
||||||
margin: 0 1.5em 0 0;
|
margin: 0 1.5em 0 0;
|
||||||
|
|
@ -131,6 +140,14 @@
|
||||||
#dokuwiki__pagetools ul li a.action.top {
|
#dokuwiki__pagetools ul li a.action.top {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
#IE7 #dokuwiki__pagetools ul {
|
||||||
|
position: relative;;
|
||||||
|
}
|
||||||
|
#IE7 #dokuwiki__pagetools ul li a.action.top {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* sidebar
|
/* sidebar
|
||||||
|
|
@ -266,6 +283,10 @@
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#IE6 input.button, #IE6 button,
|
||||||
|
#IE7 input.button, #IE7 button {
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
|
||||||
/*____________ JS popup ____________*/
|
/*____________ JS popup ____________*/
|
||||||
|
|
||||||
|
|
@ -289,10 +310,16 @@
|
||||||
.dokuwiki .wrapper {
|
.dokuwiki .wrapper {
|
||||||
margin-bottom: 2.8em;
|
margin-bottom: 2.8em;
|
||||||
}
|
}
|
||||||
|
#IE6 .dokuwiki .wrapper {
|
||||||
|
margin-bottom: 1.4em;
|
||||||
|
}
|
||||||
|
|
||||||
#dokuwiki__footer {
|
#dokuwiki__footer {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
#IE7 #dokuwiki__footer {
|
||||||
|
height: 1%;
|
||||||
|
}
|
||||||
#dokuwiki__footer .doc {
|
#dokuwiki__footer .doc {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,14 +22,23 @@ body {
|
||||||
#dokuwiki__header .headings {
|
#dokuwiki__header .headings {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
#IE6 #dokuwiki__header .headings {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
#dokuwiki__header .tools {
|
#dokuwiki__header .tools {
|
||||||
float: right;
|
float: right;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
#IE6 #dokuwiki__header .tools {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
#dokuwiki__site .wrapper {
|
#dokuwiki__site .wrapper {
|
||||||
position: relative;
|
position: relative;
|
||||||
zoom: 1; /* @todo: IE */
|
}
|
||||||
|
#IE6 #dokuwiki__site .wrapper,
|
||||||
|
#IE7 #dokuwiki__site .wrapper {
|
||||||
|
height: 1%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* show sidebar only in show mode */
|
/* show sidebar only in show mode */
|
||||||
|
|
@ -41,7 +50,6 @@ body {
|
||||||
float: left;
|
float: left;
|
||||||
position: relative;
|
position: relative;
|
||||||
display: block;
|
display: block;
|
||||||
zoom: 1; /* @todo: IE */
|
|
||||||
}
|
}
|
||||||
#dokuwiki__aside .pad {
|
#dokuwiki__aside .pad {
|
||||||
margin: 0 1.5em 0 0;
|
margin: 0 1.5em 0 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue