mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
Fix minor css bug in embed
This commit is contained in:
parent
8117834010
commit
10417db768
2 changed files with 5 additions and 2 deletions
|
@ -1132,11 +1132,14 @@ a#topbarmaximize {
|
||||||
display:none;
|
display:none;
|
||||||
position:absolute;
|
position:absolute;
|
||||||
top:42px;
|
top:42px;
|
||||||
margin-left:10px;
|
|
||||||
font-size:14px;
|
font-size:14px;
|
||||||
width:100%;
|
width:100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#embedcode{
|
||||||
|
margin-left:10px;
|
||||||
|
}
|
||||||
|
|
||||||
#embedinput{
|
#embedinput{
|
||||||
width:80%;
|
width:80%;
|
||||||
height:24px;
|
height:24px;
|
||||||
|
|
|
@ -101,7 +101,7 @@ var padeditbar = (function(){
|
||||||
$('#editbar').animate({height:'72px'});
|
$('#editbar').animate({height:'72px'});
|
||||||
$('#editorcontainerbox').animate({top:'72px'});
|
$('#editorcontainerbox').animate({top:'72px'});
|
||||||
padurl = document.location;
|
padurl = document.location;
|
||||||
$('#embed').html('Embed code:<input id="embedinput" type="text" value="<iframe src='+padurl+'></iframe>">');
|
$('#embed').html('<div id="embedcode">Embed code:<input id="embedinput" type="text" value="<iframe src='+padurl+'></iframe></div>">');
|
||||||
$('#embed').show();
|
$('#embed').show();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue