Changeset - fa55523f3790
[Not reviewed]
default
0 1 0
Mads Kiilerich - 8 years ago 2017-08-28 05:25:39
mads@kiilerich.com
changelog: fix column sizing - don't expand the date column but give everything to the description column

The date column inherited 33% width - for now, just work around that.
1 file changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -1461,15 +1461,16 @@ tr.out-of-range {
 
#graph_content tr .hash {
 
    width: 100px;
 
    font-size: 0.85em;
 
}
 

	
 
#graph_content tr .date {
 
    width: 76px;
 
    width: auto !important;
 
    color: #666;
 
    font-size: 10px;
 
    white-space: nowrap;
 
}
 

	
 
#graph_content_pr .compare_view_commits .expand_commit,
 
#graph_content tr .expand_commit {
 
    width: 24px;
 
    cursor: pointer;
 
@@ -1481,12 +1482,13 @@ tr.out-of-range {
 
    padding-right: 0px;
 
    overflow: visible;
 
    position: relative;
 
}
 

	
 
#graph_content tr .mid {
 
    width: 100%;
 
    padding: 0;
 
}
 

	
 
#graph_content .log-container {
 
    position: relative;
 
    margin-top: 8px;
0 comments (0 inline, 0 general)