mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-31 08:04:40 +02:00
rebuild for CSS changes
This commit is contained in:
parent
3eab0aec44
commit
427b45f60f
10 changed files with 60 additions and 31 deletions
|
@ -1,5 +1,12 @@
|
|||
exports.level = {
|
||||
"compareOnlyMasterHashAgnostic": true,
|
||||
"compareOnlyMasterHashAgnosticWithAsserts": true,
|
||||
"goalAsserts": {
|
||||
"master": [
|
||||
function(data) {
|
||||
return data.C4 > data.C1;
|
||||
}
|
||||
]
|
||||
},
|
||||
"disabledMap": {
|
||||
"git revert": true
|
||||
},
|
||||
|
|
|
@ -61,7 +61,9 @@ exports.level = {
|
|||
"type": "ModalAlert",
|
||||
"options": {
|
||||
"markdowns": [
|
||||
"Lastly, pay attention to the goal state here -- since we move the commits twice, they both get an apostrophe appended. One more apostrophe is added for the commit we amend, which gives us the final form of the tree "
|
||||
"Lastly, pay attention to the goal state here -- since we move the commits twice, they both get an apostrophe appended. One more apostrophe is added for the commit we amend, which gives us the final form of the tree ",
|
||||
"",
|
||||
"That being said, I can compare levels now based on structure and relative apostrophe differences. As long as your tree's `master` branch has the same structure and relative apostrophe differences, I'll give full credit"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -62,7 +62,9 @@ exports.level = {
|
|||
"type": "ModalAlert",
|
||||
"options": {
|
||||
"markdowns": [
|
||||
"So in this level, let's accomplish the same objective of amending `C2` once but avoid using `rebase -i`. I'll leave it up to you to figure it out! :D"
|
||||
"So in this level, let's accomplish the same objective of amending `C2` once but avoid using `rebase -i`. I'll leave it up to you to figure it out! :D",
|
||||
"",
|
||||
"Remember, the exact number of apostrophe's (') on the commit are not important, only the relative differences. For example, I will give credit to a tree that matches the goal tree but has one extra apostrophe everywhere"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -193,9 +193,9 @@ div.canvasTerminalHolder {
|
|||
}
|
||||
|
||||
div.gitDemonstrationView > div.visHolder,
|
||||
#mainVisSpace {
|
||||
background: #24A7FF;
|
||||
background-color: #24A7FF;
|
||||
.visBackgroundColor {
|
||||
background: #5cbcfc;
|
||||
background-color: #5cbcfc;
|
||||
}
|
||||
|
||||
#interfaceWrapper {
|
||||
|
@ -261,10 +261,6 @@ div.canvasTerminalHolder > div.terminal-window-holder {
|
|||
max-width: 500px;
|
||||
}
|
||||
|
||||
#controls {
|
||||
background: #EEE;
|
||||
}
|
||||
|
||||
/* Toolbar */
|
||||
|
||||
div.toolbar {
|
||||
|
@ -470,6 +466,7 @@ p.commandLine span.prompt {
|
|||
#commandLineHistory {
|
||||
margin: 10px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 1px 0px 15px rgba(255,255,255,1);
|
||||
}
|
||||
|
||||
#commandLineHistory #terminal.scrolling {
|
||||
|
@ -515,6 +512,7 @@ li.rebaseEntry,
|
|||
|
||||
#terminal {
|
||||
border-bottom: 0;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
#commandLineBar,
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
<!-- The entire interface is within this div -->
|
||||
<div id="interfaceWrapper" class="box horizontal flex1">
|
||||
<div id="controls" class="box vertical flex1">
|
||||
<div id="controls" class="box vertical flex1 visBackgroundColor">
|
||||
<div id="commandLineHistory" class="box vertical flex3">
|
||||
<div class="toolbar box vertical center">
|
||||
<div class="controls box horizontal justify">
|
||||
|
@ -60,7 +60,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="mainVisSpace" class="box flex1 horizontal">
|
||||
<div id="mainVisSpace" class="box flex1 horizontal visBackgroundColor">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue