evolve: create new commit while resolving content-divergence
Before this patch, we used to amend one of the content-divergent changes with
the changes from the merge. Creating a new commit will certain advantages like
letting user enter a commit message, showing user the new merge diff before
commiting the content-divergent resolution and give us more control in the
implementation part.
The reason amend was used initially was just because it was easy. There are some
tests update due to change.
/*
.uk-overflow-container {
overflow-y: scroll;
top: 0;
bottom: 0;
}*/
table {
min-width: 100%
}
.video-js {
min-width:100%;
max-width:100%;
max-height: 100%;
}
.vjs-fullscreen {
padding-top: 0px
}
::-webkit-scrollbar {
width: 12px; /* for vertical scrollbars */
height: 12px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.5);
}
.uk-overflow-container {
overflow-y: scroll;
top: 0;
bottom: 0;
}
em {
color:#666;
}