mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-16 04:25:57 +00:00
graycube, compat: make compatible with grabber
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user