graycube, compat: make compatible with grabber

This commit is contained in:
Andrew Dolgov 2008-05-20 02:20:40 +01:00
parent 26f9ed70bd
commit 228e167bbe
3 changed files with 15 additions and 1 deletions

View File

@ -912,3 +912,7 @@ table.headlinesList tr.feedTitle td a, div.cdmFeedTitle a {
color : #5050aa;
}
#resize-grabber {
border-color : #c0c0c0;
}

View File

@ -499,3 +499,8 @@ div.tagCloudContainer {
border : 1px solid #999999;
}
#resize-grabber {
right : 40px;
border-color : gray;
}

View File

@ -394,7 +394,12 @@ function resize_headlines(delta_x, delta_y) {
c_frame.style.top = (h_frame.offsetTop + h_frame.offsetHeight + 1) + "px";
h_frame.style.height = h_frame.offsetHeight + "px";
resize_grab.style.top = (h_frame.offsetTop + h_frame.offsetHeight - 4) + "px";
var theme_c = 0;
if (getInitParam("theme") == "graycube") theme_c = 1;
resize_grab.style.top = (h_frame.offsetTop + h_frame.offsetHeight -
4 - theme_c) + "px";
resize_grab.style.display = "block";
} else {