Layout/CSS tweaks
This commit is contained in:
parent
9842d59901
commit
6944ea930e
3 changed files with 22 additions and 21 deletions
|
|
@ -29,6 +29,7 @@
|
|||
}
|
||||
|
||||
.qe_time {
|
||||
font-family: Monospace;
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
|
@ -36,8 +37,10 @@
|
|||
clear: both;
|
||||
}
|
||||
|
||||
#library {
|
||||
width: 640px;
|
||||
#usercount, #currenttitle {
|
||||
border: 1px solid #aaaaaa;
|
||||
border-bottom: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#userlist {
|
||||
|
|
@ -47,6 +50,7 @@
|
|||
float: left;
|
||||
width: 150px;
|
||||
border: 1px solid #aaaaaa; // [](/z13)
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
#messagebuffer {
|
||||
|
|
@ -64,11 +68,6 @@
|
|||
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
||||
}
|
||||
|
||||
#chatline {
|
||||
/*width: 456px;*/
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.userlist_siteadmin {
|
||||
color: #cc0000;
|
||||
font-weight: bold;
|
||||
|
|
@ -83,6 +82,10 @@
|
|||
color: #00aa00;
|
||||
}
|
||||
|
||||
.userlist_guest {
|
||||
color: #aaaaaa;
|
||||
}
|
||||
|
||||
.action {
|
||||
font-style: italic;
|
||||
color: #888888;
|
||||
|
|
|
|||
|
|
@ -355,11 +355,11 @@ function largeLayout() {
|
|||
$("#ytapiplayer").attr("width", "770").attr("height", "430");
|
||||
var chat = $("#chatdiv").detach();
|
||||
$("#layoutrow").remove();
|
||||
var r = $("<div />").addClass("row").insertAfter($(".row")[1]);
|
||||
var r = $("<div />").addClass("row").insertAfter($("#videodiv").parent());
|
||||
r.attr("id", "layoutrow");
|
||||
chat.removeClass().addClass("span8 offset2").appendTo(r);
|
||||
$("#chatline").removeClass().addClass("span8");
|
||||
$("#userlist").css("width", "200px");
|
||||
//$("#chatline").css("width", "756px");
|
||||
}
|
||||
|
||||
function hugeLayout() {
|
||||
|
|
@ -369,12 +369,12 @@ function hugeLayout() {
|
|||
$("#ytapiplayer").attr("width", "1170").attr("height", "658");
|
||||
var chat = $("#chatdiv").detach();
|
||||
$("#layoutrow").remove();
|
||||
var r = $("<div />").addClass("row").insertAfter($(".row")[1]);
|
||||
var r = $("<div />").addClass("row").insertAfter($("#videodiv").parent());
|
||||
r.attr("id", "layoutrow");
|
||||
chat.removeClass().addClass("span12").appendTo(r);
|
||||
$("#chatline").removeClass().addClass("span12");
|
||||
$("#userlist").css("width", "200px").css("height", "200px");
|
||||
$("#messagebuffer").css("height", "200px");
|
||||
//$("#chatline").css("width", "1156px");
|
||||
}
|
||||
|
||||
function narrowLayout() {
|
||||
|
|
@ -384,11 +384,11 @@ function narrowLayout() {
|
|||
$("#ytapiplayer").attr("width", "570").attr("height", "321");
|
||||
var chat = $("#chatdiv").detach();
|
||||
$("#layoutrow").remove();
|
||||
var r = $("<div />").addClass("row").insertAfter($(".row")[1]);
|
||||
var r = $("<div />").addClass("row").insertAfter($("#videodiv").parent());
|
||||
r.attr("id", "layoutrow");
|
||||
chat.removeClass().addClass("span6").appendTo(r);
|
||||
$("#chatline").removeClass().addClass("span6");
|
||||
$("#userlist").css("width", "150px");
|
||||
//$("#chatline").css("width", "556px");
|
||||
}
|
||||
|
||||
function synchtubeLayout() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue