Work in progress: Show the diff information in the UI

This commit is contained in:
Joseph Schorr 2013-10-18 17:59:26 -04:00
parent 3d0b165de9
commit 262634555a
3 changed files with 139 additions and 6 deletions

View file

@ -486,6 +486,11 @@ p.editable:hover i {
margin-left: 80px;
}
.repo dl.dl-normal dd {
padding-left: 14px;
margin-bottom: 10px;
}
.repo .header h3 {
display: inline-block;
}
@ -660,6 +665,68 @@ p.editable:hover i {
margin: 0px;
}
.repo .changes-container:before {
content: "File Changes: ";
display: inline-block;
margin-right: 10px;
font-weight: bold;
float: left;
padding-top: 4px;
}
.repo .changes-count-container {
text-align: center;
}
.repo .change-count {
font-size: 18px;
display: inline-block;
margin-right: 10px;
}
.repo .changes-container .added i {
color: rgb(73, 209, 73);
}
.repo .change-container .removed i {
color: rgb(209, 73, 73);
}
.repo .changes-container .changed i {
color: rgb(73, 100, 209);
}
.repo .change-count:last-child {
margin-right: 0px;
}
.repo .change-count i {
font-size: 20px;
vertical-align: middle;
}
.repo .change i {
float: right;
vertical-align: middle;
margin-left: 4px;
}
.repo .more-changes {
padding: 6px;
}
.repo #collapseChanges .well {
margin-top: 10px;
margin-bottom: 0px;
}
.repo #collapseChanges .change {
overflow: hidden;
font-size: 14px;
text-overflow: ellipsis;
white-space: nowrap;
}
.navbar-nav > li > .user-dropdown {
padding-top: 9px;
padding-bottom: 9px;