diff --git a/NEWS.mdtext b/NEWS.mdtext
index 71f04bf..6add8ed 100644
--- a/NEWS.mdtext
+++ b/NEWS.mdtext
@@ -6,6 +6,7 @@
- File download URLs now contain the file name rather than the upload id; old links still work though (issues 559 and 686)
- Display monotone file and directory attributes in the tree and file view
(needs a monotone with an interface version of 13.1 or newer)
+- The context area is now kept in view when a page scrolls down several pages
## Bugfixes
diff --git a/src/IDF/templates/idf/base-full.html b/src/IDF/templates/idf/base-full.html
index f3be2ff..3f1c447 100644
--- a/src/IDF/templates/idf/base-full.html
+++ b/src/IDF/templates/idf/base-full.html
@@ -70,7 +70,6 @@
{block foot}{/block}
{include 'idf/js-hotkeys.html'}
-{include 'idf/list-filter.html'}
{block javascript}{/block}
{if $project}
{/if}
diff --git a/www/media/idf/css/style.css b/www/media/idf/css/style.css
index 2ae7176..3f80fdd 100644
--- a/www/media/idf/css/style.css
+++ b/www/media/idf/css/style.css
@@ -86,6 +86,14 @@ a.soft:visited {
div.context {
padding-left: 1em;
+ position: relative;
+ top: 0;
+}
+
+div.context h3 {
+ font-size: 13px;
+ font-weight: bold;
+ margin: 10px 0 5px;
}
/**
@@ -928,14 +936,6 @@ ol > li {
/**
* List expander for tag and branch view
*/
-.context {}
-
-.context h3 {
- font-size: 13px;
- font-weight: bold;
- margin: 10px 0 5px;
-}
-
.context > .expander {
position: relative;
overflow: hidden;