graycube, compat: make compatible with grabber
This commit is contained in:
parent
26f9ed70bd
commit
228e167bbe
|
@ -912,3 +912,7 @@ table.headlinesList tr.feedTitle td a, div.cdmFeedTitle a {
|
|||
color : #5050aa;
|
||||
}
|
||||
|
||||
#resize-grabber {
|
||||
border-color : #c0c0c0;
|
||||
}
|
||||
|
||||
|
|
|
@ -499,3 +499,8 @@ div.tagCloudContainer {
|
|||
border : 1px solid #999999;
|
||||
}
|
||||
|
||||
#resize-grabber {
|
||||
right : 40px;
|
||||
border-color : gray;
|
||||
}
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue