mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 00:16:15 -04:00
IE scrollbar and disappearing editor fixed. Still no background beneave userlist and embed though
This commit is contained in:
parent
dc15daaa40
commit
89e78ed9be
3 changed files with 47 additions and 4 deletions
38
static/css/pad_ie_lite.css
Normal file
38
static/css/pad_ie_lite.css
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
#users, #embed
|
||||||
|
{
|
||||||
|
background:transparent;
|
||||||
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00000070,endColorstr=#00000070);
|
||||||
|
zoom: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#editorcontainerbox
|
||||||
|
{
|
||||||
|
position: relative;
|
||||||
|
top: 1px;
|
||||||
|
padding-top: 37px;
|
||||||
|
}
|
||||||
|
#editorcontainer
|
||||||
|
{
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
top: 0px;
|
||||||
|
left: 0px;
|
||||||
|
bottom: 0px;
|
||||||
|
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#editorcontainer iframe {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
padding-bottom: 37px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#editorloadingbox { padding-top: 100px; padding-bottom: 100px; font-size: 2.5em; color: #aaa;
|
||||||
|
text-align: center; position: absolute; width: 100%; height: 30px; z-index: 100; }
|
|
@ -10,14 +10,14 @@ body, textarea { font-family: Helvetica, Arial, sans-serif; }
|
||||||
#users
|
#users
|
||||||
{
|
{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 3;
|
z-index: 10;
|
||||||
|
background-color: #000;
|
||||||
background-color: rgba(0,0,0,0.7);
|
background-color: rgba(0,0,0,0.7);
|
||||||
width: 160px;
|
width: 160px;
|
||||||
right: 4px;
|
right: 4px;
|
||||||
top: 40px;
|
top: 40px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
|
||||||
-moz-border-radius: 6px;
|
-moz-border-radius: 6px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
|
@ -104,6 +104,7 @@ a img
|
||||||
{
|
{
|
||||||
border: inherit;
|
border: inherit;
|
||||||
background: inherit;
|
background: inherit;
|
||||||
|
visibility:hidden;
|
||||||
}
|
}
|
||||||
#editbar ul li a
|
#editbar ul li a
|
||||||
{
|
{
|
||||||
|
@ -1099,6 +1100,7 @@ right: 5px;
|
||||||
z-index: 500;
|
z-index: 500;
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
color: white;
|
color: white;
|
||||||
|
background-color: rgb(0,0,0);
|
||||||
background-color: rgba(0,0,0,0.7);
|
background-color: rgba(0,0,0,0.7);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
-moz-border-radius: 6px;
|
-moz-border-radius: 6px;
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
<!-- <base href="http://localhost:9001/" />-->
|
<!-- <base href="http://localhost:9001/" />-->
|
||||||
<!-- CSS -->
|
<!-- CSS -->
|
||||||
<link href="/static/css/pad_lite.css" rel="stylesheet" type="text/css"/>
|
<link href="/static/css/pad_lite.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<!--[if lte IE 7]>
|
||||||
|
<link href="/static/css/pad_ie_lite.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<![endif]-->
|
||||||
<!-- javascript -->
|
<!-- javascript -->
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
// <![CDATA[
|
// <![CDATA[
|
||||||
|
@ -183,9 +186,9 @@ var clientVars = {}; // ]]>
|
||||||
|
|
||||||
</div>-->
|
</div>-->
|
||||||
|
|
||||||
<div id="editorcontainer">
|
<div id="editorcontainerbox">
|
||||||
|
|
||||||
<div id="editor">
|
<div id="editorcontainer">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</div>
|
</div>
|
||||||
<div id="editorloading">
|
<div id="editorloading">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue