Changeset - 1fa33126ed25
[Not reviewed]
default
0 2 0
domruf - 8 years ago 2017-10-30 01:26:31
dominikruf@gmail.com
less: make pull request 'next iteration' changeset table smaller and scrollable

This property was lost in 88ce09daea37.

When the whole list is made scrollable, the graph can no longer be positioned
absolute. Instead, make it relative so it scrolls with the content ... and 0
height (with the graph overflowing) so the table content will be shown next to
the overflowing graph.
2 files changed with 17 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -816,8 +816,9 @@ table#changesets tr > td.mid .message a:
 
  text-decoration: none;
 
}
 
#updaterevs-graph {
 
  position: absolute;
 
  position: relative;
 
  width: 40px;
 
  height: 0;
 
}
 
#updaterevs-table {
 
  margin-left: 40px !important;
 
@@ -1448,6 +1449,12 @@ span.pr-closed-tag {
 
  margin: 20px 0 0 !important;
 
  position: absolute;
 
}
 
/* make 'next iteration' changeset table smaller and scrollable */
 
#pr-summary #updaterevs {
 
  max-height: 200px;
 
  overflow-y: auto;
 
  overflow-x: hidden;
 
}
 
/****
 
  PERMS
 
*****/
kallithea/public/less/style.less
Show inline comments
 
@@ -613,8 +613,9 @@ table#changesets tr > td.mid .message a:
 
  text-decoration: none;
 
}
 
#updaterevs-graph {
 
  position: absolute;
 
  position: relative;
 
  width: 40px;
 
  height: 0;
 
}
 
#updaterevs-table {
 
  margin-left: 40px !important;
 
@@ -1143,6 +1144,13 @@ span.pr-closed-tag {
 
  margin: 20px 0 0 !important;
 
  position: absolute;
 
}
 
/* make 'next iteration' changeset table smaller and scrollable */
 
#pr-summary #updaterevs {
 
  max-height: 200px;
 
  overflow-y: auto;
 
  overflow-x: hidden;
 
}
 

	
 
/****
 
  PERMS
 
*****/
0 comments (0 inline, 0 general)