mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Adjusting narrow sizes for feed pane now that it will be dragged more often.
This commit is contained in:
parent
e8043e5118
commit
ab9bc55e36
1 changed files with 5 additions and 5 deletions
|
@ -90,8 +90,8 @@
|
|||
FEED_REFRESH_INTERVAL: (1000 * 60) * 1, // 1 minute
|
||||
FILL_OUT_PAGES: 100,
|
||||
FIND_NEXT_UNREAD_STORY_TRIES: 100,
|
||||
RIVER_STORIES_FOR_STANDARD_ACCOUNT: 5,
|
||||
MIN_FEED_LIST_SIZE: 206,
|
||||
RIVER_STORIES_FOR_STANDARD_ACCOUNT: 3,
|
||||
MIN_FEED_LIST_SIZE: 225,
|
||||
MIN_STORY_LIST_SIZE: 68
|
||||
};
|
||||
|
||||
|
@ -265,9 +265,9 @@
|
|||
|
||||
var pane = this.layout.outerLayout.panes.west;
|
||||
var width = this.layout.outerLayout.state.west.size;
|
||||
pane.toggleClass("NB-narrow-pane-blue", width < 290);
|
||||
pane.toggleClass("NB-narrow-pane-green", width < 259);
|
||||
pane.toggleClass("NB-narrow-pane-yellow", width < 236);
|
||||
pane.toggleClass("NB-narrow-pane-blue", width < 306);
|
||||
pane.toggleClass("NB-narrow-pane-green", width < 278);
|
||||
pane.toggleClass("NB-narrow-pane-yellow", width < 258);
|
||||
|
||||
this.apply_tipsy_titles();
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue