more styling stuff
This commit is contained in:
parent
4af46921e1
commit
8c6507e78c
|
@ -936,9 +936,8 @@ input[type=checkbox] {
|
|||
.chatAndUsersChat{
|
||||
bottom:0px !important;
|
||||
padding:0 !important;
|
||||
margin:0 !important;
|
||||
margin: 165px 0px 0px 0px;
|
||||
right:0 !important;
|
||||
top: 200px;
|
||||
width:182px !important;
|
||||
border: none !important;
|
||||
padding:5px !important;
|
||||
|
|
|
@ -57,7 +57,8 @@ var chat = (function()
|
|||
},
|
||||
chatAndUsers: function(fromInitialCall)
|
||||
{
|
||||
if(!userAndChat || fromInitialCall){
|
||||
var toEnable = $('#options-chatandusers').is(":checked");
|
||||
if(toEnable || !userAndChat || fromInitialCall){
|
||||
padcookie.setPref("chatAndUsers", true);
|
||||
chat.stickToScreen(true);
|
||||
$('#options-stickychat').prop('checked', true)
|
||||
|
|
|
@ -195,9 +195,6 @@ var padeditbar = (function()
|
|||
// If chat and Users is enabled..
|
||||
if($('#options-chatandusers').is(":checked")){
|
||||
$('#users').css("top", $('#editorcontainer').offset().top + "px");
|
||||
|
||||
// We also need to move the chatbox lower..
|
||||
$('#chatbox').css("top", 10 + $('#users').height() + $('#editorcontainer').offset().top + "px");
|
||||
}
|
||||
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue