Add the image view page with the changes view, filterable by typing into a field. Still needs pagination or some other mechanism for getting an overview
This commit is contained in:
parent
8274d9af97
commit
0afea3a779
7 changed files with 239 additions and 7 deletions
|
@ -489,6 +489,8 @@ p.editable:hover i {
|
|||
.repo dl.dl-normal dd {
|
||||
padding-left: 14px;
|
||||
margin-bottom: 10px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.repo .header h3 {
|
||||
|
@ -534,6 +536,46 @@ p.editable:hover i {
|
|||
top: 40px;
|
||||
}
|
||||
|
||||
.repo-image-view .id-container {
|
||||
display: inline-block;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.repo-image-view .id-container input {
|
||||
background: #fefefe;
|
||||
}
|
||||
|
||||
.repo-image-view .id-container .input-group {
|
||||
width: 542px;
|
||||
}
|
||||
|
||||
.repo-image-view #clipboardCopied {
|
||||
position: relative;
|
||||
top: -14px;
|
||||
}
|
||||
|
||||
.repo-image-view .changes-container .change-side-controls {
|
||||
float: right;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.repo-image-view .changes-container .filter-input {
|
||||
display: inline-block;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.repo-image-view .changes-container .result-count {
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
font-size: 14px;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.repo-image-view .changes-container .changes-list {
|
||||
padding: 10px;
|
||||
margin-top: 28px;
|
||||
}
|
||||
|
||||
.repo #clipboardCopied {
|
||||
font-size: 0.8em;
|
||||
display: inline-block;
|
||||
|
@ -665,7 +707,7 @@ p.editable:hover i {
|
|||
margin: 0px;
|
||||
}
|
||||
|
||||
.repo .changes-container:before {
|
||||
.repo .small-changes-container:before {
|
||||
content: "File Changes: ";
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
|
@ -684,15 +726,15 @@ p.editable:hover i {
|
|||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.repo .changes-container .added i {
|
||||
.repo .changes-container i.icon-plus-sign-alt {
|
||||
color: rgb(73, 209, 73);
|
||||
}
|
||||
|
||||
.repo .change-container .removed i {
|
||||
.repo .changes-container i.icon-minus-sign-alt {
|
||||
color: rgb(209, 73, 73);
|
||||
}
|
||||
|
||||
.repo .changes-container .changed i {
|
||||
.repo .changes-container i.icon-edit-sign {
|
||||
color: rgb(73, 100, 209);
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue