Merge branch 'develop' of https://github.com/Connoropolous/metamaps_gen002 into new
This commit is contained in:
commit
fae7f9996d
7 changed files with 155 additions and 167 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -16,3 +16,5 @@ db/*.sqlite3
|
|||
# Ignore all logfiles and tempfiles.
|
||||
log/*.log
|
||||
tmp
|
||||
|
||||
.DS_Store
|
BIN
app/assets/images/.DS_Store
vendored
Normal file
BIN
app/assets/images/.DS_Store
vendored
Normal file
Binary file not shown.
|
@ -2050,20 +2050,65 @@ float: left;
|
|||
}
|
||||
#cheatSheet .csItem {
|
||||
margin: 5px 0;
|
||||
font-size: 15px;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
font-family: 'din-regular';
|
||||
}
|
||||
|
||||
#cheatSheet .csItem a {
|
||||
color: #c04f4f;
|
||||
}
|
||||
|
||||
#cheatSheet .csItem img {
|
||||
display: inline-block;
|
||||
margin: 0 2px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
#cheatSheet .csTitle {
|
||||
font-weight: bold;
|
||||
|
||||
|
||||
}
|
||||
#cheatSheet .indented {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
#zoomIn {
|
||||
background: #424242 url(zoom_sprite.png) no-repeat;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
display: inline-block;
|
||||
background-position: -37px -5px;
|
||||
border-radius: 2px;
|
||||
margin: 0 4px;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
#zoomOut {
|
||||
background: #424242 url(zoom_sprite.png) no-repeat;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
display: inline-block;
|
||||
background-position: -37px -37px;
|
||||
border-radius: 2px;
|
||||
margin: 0 4px;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
#centerMap {
|
||||
background: #424242 url(extents_sprite.png) no-repeat;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
display: inline-block;
|
||||
background-position: -5px -5px;
|
||||
border-radius: 2px;
|
||||
margin: 0 4px;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
|
||||
}
|
||||
|
||||
#helpWrapper {
|
||||
background: none;
|
||||
border: none;
|
||||
|
@ -2096,7 +2141,17 @@ float: left;
|
|||
}
|
||||
#quickReference ul {
|
||||
width: 150px;
|
||||
text-transform: uppercase;
|
||||
font-size: 14px;
|
||||
line-height: 14px;
|
||||
font-family: din-medium;
|
||||
|
||||
}
|
||||
|
||||
#quickReference ul li {
|
||||
padding-bottom: 16px;
|
||||
}
|
||||
|
||||
#quickReference li.ui-state-active a {
|
||||
color: #00BCD4;
|
||||
}
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
|
||||
<div id="quickReference">
|
||||
<ul>
|
||||
<li><a href="#csTopicView">Topic View</a></li>
|
||||
<li><a href="#csCreatingTopics">Creating Topics</a></li>
|
||||
<li><a href="#csEditingTopics">Editing Topics</a></li>
|
||||
<li><a href="#csCreatingSynapses">Creating Synapses</a></li>
|
||||
|
@ -22,11 +21,13 @@
|
|||
<li><a href="#csNavigation">Navigation</a></li>
|
||||
<li><a href="#csSelection">Selection</a></li>
|
||||
<li><a href="#csSearch">Search</a></li>
|
||||
<li><a href="#csTopicView">Topic View</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="csTopicView">
|
||||
<div class="csItem"><span class="csTitle">Alt + click on topic icon:</span> recenter topics around chosen topic</div>
|
||||
<div class="csItem"><span class="csTitle">Right-click + 'center this topic':</span> recenter topics around chosen topic</div>
|
||||
<div class="csItem"><span class="csTitle">Recenter Topics around chosen Topic:</span> Alt + click on the topic OR Right-click + 'center this topic'</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="csCreatingTopics">
|
||||
|
@ -37,83 +38,89 @@
|
|||
<div class="csItem indented"><span class="csTitle">Esc:</span> Hides auto-suggestion results</div>
|
||||
<div class="csItem indented"><span class="csTitle">Enter:</span> create a new topic</div>
|
||||
<div class="csItem indented"><span class="csTitle">Gear Icon:</span> open up metacode settings</div>
|
||||
<div class="csItem"><br><a href="http://support.metamaps.cc/knowledgebase/articles/425787-creating-and-editing-topics" target= "_blank">Learn More</a></div>
|
||||
</div>
|
||||
|
||||
<div id="csEditingTopics">
|
||||
<div class="csItem">
|
||||
<span class="csTitle">Open topic card:</span> double-click on topic icon
|
||||
<span class="csTitle">Open 'Topic' card:</span> Double-click on topic icon
|
||||
</div>
|
||||
<div class="csItem indented">
|
||||
<span class="csTitle">Move topic card:</span> click + drag on topic card metacode
|
||||
<span class="csTitle">Move 'Topic' card:</span> Click and drag on topic card metacode
|
||||
</div>
|
||||
<div class="csItem indented">
|
||||
<span class="csTitle">Change/edit metacode:</span> mouse over metacode icon, then click on solid colored bar
|
||||
<span class="csTitle">Change/edit metacode:</span> Mouse over metacode icon, then click on solid colored bar
|
||||
</div>
|
||||
<div class="csItem indented">
|
||||
<span class="csTitle">Edit topic title, description, link:</span> click on text in respective area
|
||||
<span class="csTitle">Edit Topic title, description, link:</span> Click on text in respective area
|
||||
</div>
|
||||
<div class="csItem indented">
|
||||
<span class="csTitle">Save topic title, description, link:</span> hit enter
|
||||
<span class="csTitle">Save Topic title, description, link:</span> Hit enter
|
||||
</div>
|
||||
<div class="csItem indented">
|
||||
<span class="csTitle">Change topic permission:</span> click on 'permission' icon (only for topic creator)
|
||||
<span class="csTitle">Change Topic permission:</span> Click on 'Permission' icon (only for topic creator)
|
||||
</div>
|
||||
<div class="csItem indented">
|
||||
<span class="csTitle">Open topic view:</span> click on <img src="/assets/MMCCicon_pop-out_black.png" width="16" align="middle" /> icon within topic card bar
|
||||
<span class="csTitle">Open Topic view:</span> Click on <img src="/assets/synapse16.png" width="16" align="middle" /> icon within topic card bar
|
||||
</div>
|
||||
<div class="csItem indented">
|
||||
<span class="csTitle">Close topic card:</span> click on canvas
|
||||
<span class="csTitle">Close 'Topic' card:</span> Click on canvas
|
||||
</div>
|
||||
<div class="csItem">
|
||||
<span class="csTitle">Open context menu:</span> right-click on topic icon
|
||||
<span class="csTitle">Open 'Context Menu':</span> Right-click on topic icon
|
||||
</div>
|
||||
<div class="csItem indented">*Hide/Remove/Delete topic within context menu</div>
|
||||
<div class="csItem"><br><a href="http://support.metamaps.cc/knowledgebase/articles/425787-creating-and-editing-topics" target= "_blank">Learn More</a></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="csCreatingSynapses">
|
||||
<div class="csItem"><span class="csTitle">Right-click & drag from one topic to another:</span> open create synapse prompt</div>
|
||||
<div class="csItem"><span class="csTitle">Open 'Create Synapse' prompt:</span> Right-click & drag from one topic to another</div>
|
||||
<div class="csItem indented"><span class="csTitle">Enter:</span> Create synapse</div>
|
||||
<div class="csItem indented">*You do not have to add a description</div>
|
||||
<div class="csItem"><span class="csTitle">Right-click + drag from topic to open canvas:</span> create new topic with synapse</div>
|
||||
<div class="csItem"><span class="csTitle">Create new Topic with Synapse:</span> Right-click + drag from topic to open canvas</div>
|
||||
<div class="csItem indented"><span class="csTitle">Enter:</span> Create topic</div>
|
||||
<div class="csItem indented"><span class="csTitle">Enter:</span> Create synapse</div>
|
||||
<div class="csItem"><br><a href="http://support.metamaps.cc/knowledgebase/articles/425790-creating-and-editing-synapses" target= "_blank">Learn More</a></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="csEditingSynapses">
|
||||
<div class="csItem"><span class="csTitle">Open synapse card:</span>double-click on synapse </div>
|
||||
<div class="csItem indented"><span class="csTitle">Edit synapse description:</span> click on current description text</div>
|
||||
<div class="csItem indented"><span class="csTitle">Save synapse description:</span> hit enter</div>
|
||||
<div class="csItem indented"><span class="csTitle">Edit directionality:</span> select appropriate arrow boxes</div>
|
||||
<div class="csItem indented"><span class="csTitle">Change synapse permission:</span> click on 'permission' icon (only for synapse creator)</div>
|
||||
<div class="csItem"><span class="csTitle">Right-click on synapse:</span> open context menu</div>
|
||||
<div class="csItem"><span class="csTitle">Open 'Synapse' card:</span> Double-click on Synapse </div>
|
||||
<div class="csItem indented"><span class="csTitle">Edit Synapse description:</span> Click on current description text</div>
|
||||
<div class="csItem indented"><span class="csTitle">Save Synapse description:</span> Hit enter</div>
|
||||
<div class="csItem indented"><span class="csTitle">Edit directionality:</span> Select appropriate arrow boxes</div>
|
||||
<div class="csItem indented"><span class="csTitle">Change synapse permission:</span> Click on 'permission' icon (only for synapse creator)</div>
|
||||
<div class="csItem"><span class="csTitle">Open 'Context Menu':</span> Right-click on Synapse</div>
|
||||
<div class="csItem indented">*Hide/Remove/Delete synapse within context menu</div>
|
||||
<div class="csItem"><br><a href="http://support.metamaps.cc/knowledgebase/articles/425790-creating-and-editing-synapses" target= "_blank">Learn More</a></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="csNavigation">
|
||||
<div class="csItem"><span class="csTitle">Click + drag:</span> move around canvas</div>
|
||||
<div class="csItem"><span class="csTitle">Scroll:</span> zoom in/out</div>
|
||||
<div class="csItem"><span class="csTitle">Refresh page:</span> center map</div>
|
||||
<div class="csItem"><span class="csTitle">Move around Canvas:</span> Click and drag</div>
|
||||
<div class="csItem"><span class="csTitle">Zoom in/out:</span> Scroll OR click on <div id="zoomIn"> </div> & <div id="zoomOut"> </div></div>
|
||||
<div class="csItem"><span class="csTitle">Center Map:</span> Click <div id="centerMap"></div> OR Refresh page</div>
|
||||
<div class="csItem"><br><a href="http://support.metamaps.cc/knowledgebase/articles/425784-viewing-existing-maps" target= "_blank">Learn More</a></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="csSelection">
|
||||
<div class="csItem"><span class="csTitle">Click on topic icon:</span> select/deselect topic</div>
|
||||
<div class="csItem"><span class="csTitle">Click on synapse:</span> select/deselect synapse</div>
|
||||
<div class="csItem"><span class="csTitle">Shift + click:</span> select multiple topics / synapses</div>
|
||||
<div class="csItem"><span class="csTitle">Shift + click + drag on canvas:</span> make selection box, select multiple topics</div>
|
||||
<div class="csItem"><span class="csTitle">Click + drag on selected topic(s):</span> move all selected topics & synapses</div>
|
||||
<div class="csItem"><span class="csTitle">Right-click on selected topic(s):</span> open context menu</div>
|
||||
<div class="csItem"><span class="csTitle">Select/Deselect Topic:</span> Click on topic icon</div>
|
||||
<div class="csItem"><span class="csTitle">Select/Deselect Synapse:</span> Click on synapse</div>
|
||||
<div class="csItem"><span class="csTitle">Select multiple Topics/Synapses:</span> Shift + click</div>
|
||||
<div class="csItem"><span class="csTitle">Make Selection box, select multiple Topics:</span> Shift + click + drag on Canvas</div>
|
||||
<div class="csItem"><span class="csTitle">Move all selected Topics & Synapses:</span> Click + drag on selected Topic(s)</div>
|
||||
<div class="csItem"><span class="csTitle">Open 'Context Menu':</span> Right-click on selected topic(s)</div>
|
||||
<div class="csItem indented">*Hide/Remove/Delete/Change permissions of multiple topics & synapses within context menu</div>
|
||||
<div class="csItem"><span class="csTitle">Click on background:</span> deselect all topics & synapses</div>
|
||||
<div class="csItem"><span class="csTitle">Esc:</span> deselect all topics & synapses</div>
|
||||
<div class="csItem"><span class="csTitle">Deselect all topics & Synapses:</span> Click on background or Esc</div>
|
||||
</div>
|
||||
|
||||
<div id="csSearch">
|
||||
<div class="csItem"><span class="csTitle">Ctrl + /:</span> open search prompt</div>
|
||||
<div class="csItem"><span class="csTitle">Esc:</span> close search prompt</div>
|
||||
<div class="csItem"><span class="csTitle">Type into the search prompt:</span> search for topics, maps, & mappers</div>
|
||||
<div class="csItem"><span class="csTitle">Click on search result:</span> open in new tab</div>
|
||||
<div class="csItem"><span class="csTitle">Open 'Search' prompt:</span> Ctrl + /</div>
|
||||
<div class="csItem"><span class="csTitle">Close 'Search' prompt:</span> Esc</div>
|
||||
<% if controller_name == "maps" && action_name == "show" %>
|
||||
<div class="csItem"><span class="csTitle">Click "+" on a topic result:</span> add to current map</div>
|
||||
<div class="csItem"><span class="csTitle">Add to current Map:</span> Click "+" on a topic result</div>
|
||||
<% end %>
|
||||
<div class="csItem"><span class="csTitle">Search by metacode:</span> type "[name of metacode]:", then your search query. i.e. idea:create...</div>
|
||||
<div class="csItem"><span class="csTitle">Search for map:</span> type "map:", then your search query. i.e. map:exploring...</div>
|
||||
|
|
|
@ -1,120 +0,0 @@
|
|||
.mbgAction {
|
||||
background-color: #bd6c85 !important;
|
||||
}
|
||||
.mbgActivity {
|
||||
background-color: #6ebf65 !important;
|
||||
}
|
||||
.mbgArgument {
|
||||
background-color: #7FAEFD !important;
|
||||
}
|
||||
.mbgBizarre {
|
||||
background-color: #bdb25e !important;
|
||||
}
|
||||
.mbgCatalyst {
|
||||
background-color: #EF8964 !important;
|
||||
}
|
||||
.mbgClosed {
|
||||
background-color: #ABB49F !important;
|
||||
}
|
||||
.mbgCon {
|
||||
background-color: #CF7C74 !important;
|
||||
}
|
||||
.mbgDecision {
|
||||
background-color: #cca866 !important;
|
||||
}
|
||||
.mbgExample {
|
||||
background-color: #598559 !important;
|
||||
}
|
||||
.mbgExperience {
|
||||
background-color: #BE995F !important;
|
||||
}
|
||||
.mbgForesight {
|
||||
background-color: #b0b0b0 !important;
|
||||
}
|
||||
.mbgFutureDev {
|
||||
background-color: #25A17F !important;
|
||||
}
|
||||
.mbgGoodPractice {
|
||||
background-color: #BD9E86 !important;
|
||||
}
|
||||
.mbgGroup {
|
||||
background-color: #7076BC !important;
|
||||
}
|
||||
.mbgIdea {
|
||||
background-color: #c4bc5e !important;
|
||||
}
|
||||
.mbgImplication {
|
||||
background-color: #83DECA !important;
|
||||
}
|
||||
.mbgInsight {
|
||||
background-color: #B074AD !important;
|
||||
}
|
||||
.mbgIntention {
|
||||
background-color: #baeaff !important;
|
||||
}
|
||||
.mbgKnowledge {
|
||||
background-color: #60acf7 !important;
|
||||
}
|
||||
.mbgList {
|
||||
background-color: #B7A499 !important;
|
||||
}
|
||||
.mbgLocation {
|
||||
background-color: #abd9a7 !important;
|
||||
}
|
||||
.mbgMovieMap {
|
||||
background-color: #a5a0de !important;
|
||||
}
|
||||
.mbgNote {
|
||||
background-color: #a389a1 !important;
|
||||
}
|
||||
.mbgOpenIssue {
|
||||
background-color: #9bbf71 !important;
|
||||
}
|
||||
.mbgOpinion {
|
||||
background-color: #54a19d !important;
|
||||
}
|
||||
.mbgOpportunity {
|
||||
background-color: #889F64 !important;
|
||||
}
|
||||
.mbgPerson {
|
||||
background-color: #de925f !important;
|
||||
}
|
||||
.mbgPlatform {
|
||||
background-color: #21C8FE !important;
|
||||
}
|
||||
.mbgPro {
|
||||
background-color: #89b879 !important;
|
||||
}
|
||||
.mbgProblem {
|
||||
background-color: #99cfc4 !important;
|
||||
}
|
||||
.mbgQuestion {
|
||||
background-color: #709899 !important;
|
||||
}
|
||||
.mbgReference {
|
||||
background-color: #A7A7A7 !important;
|
||||
}
|
||||
.mbgRequirement {
|
||||
background-color: #d2a7d4 !important;
|
||||
}
|
||||
.mbgResearch {
|
||||
background-color: #CD8E89 !important;
|
||||
}
|
||||
.mbgResource {
|
||||
background-color: #c98c63 !important;
|
||||
}
|
||||
.mbgRole {
|
||||
background-color: #a8595d !important;
|
||||
}
|
||||
.mbgTask {
|
||||
background-color: #2f89ba !important;
|
||||
}
|
||||
.mbgTool {
|
||||
background-color: #828282 !important;
|
||||
}
|
||||
.mbgTrajectory {
|
||||
background-color: #b3953d !important;
|
||||
}
|
||||
.mbgWildcard {
|
||||
background-color: #73c7de !important;
|
||||
}
|
|
@ -54,12 +54,17 @@
|
|||
padding-top: 150px;
|
||||
}
|
||||
.picture {
|
||||
width: 500px;
|
||||
width: 450px;
|
||||
height: 450px;
|
||||
border: 10px solid #424242;
|
||||
border-radius: 225px;
|
||||
-webkit-border-radius: 225px;
|
||||
-moz-border-radius: 225px;
|
||||
background: url(/assets/monkeyselfie.jpg) no-repeat;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.picture img {
|
||||
width: 500px;
|
||||
background-position:50% 20%;
|
||||
background-size: 100%;
|
||||
margin-top: 162px;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
|
@ -68,10 +73,11 @@
|
|||
}
|
||||
|
||||
.button {
|
||||
display: inline-block;
|
||||
display: block;
|
||||
width: 220px;
|
||||
height: 14px;
|
||||
padding: 16px 0;
|
||||
margin-bottom: 16px;
|
||||
text-align: center;
|
||||
border-radius: 2px;
|
||||
font-size: 14px;
|
||||
|
@ -93,7 +99,7 @@
|
|||
|
||||
.exploreFeaturedCTA {
|
||||
background-color: #a354cd;
|
||||
margin-right: 16px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.exploreFeaturedCTA:hover {
|
||||
|
@ -117,7 +123,6 @@
|
|||
|
||||
</div>
|
||||
<div class="picture">
|
||||
<img src="/assets/monkeyselfie.jpg"/>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
41
test/fixtures/metacodes.yml
vendored
41
test/fixtures/metacodes.yml
vendored
|
@ -12,155 +12,194 @@ one:
|
|||
two:
|
||||
name: Activity
|
||||
icon: /assets/icons/activity.png
|
||||
color: #6ebf65
|
||||
|
||||
three:
|
||||
name: Bizarre
|
||||
icon: /assets/icons/bizarre.png
|
||||
color: #BDB25E
|
||||
|
||||
four:
|
||||
name: Catalyst
|
||||
icon: /assets/icons/catalyst.png
|
||||
color: #EF8964
|
||||
|
||||
five:
|
||||
name: Closed
|
||||
icon: /assets/icons/closed.png
|
||||
color: #ABB49F
|
||||
|
||||
six:
|
||||
name: Experience
|
||||
icon: /assets/icons/experience.png
|
||||
color: #BE995F
|
||||
|
||||
seven:
|
||||
name: Future Dev
|
||||
icon: /assets/icons/futuredev.png
|
||||
color: #25A17F
|
||||
|
||||
eight:
|
||||
name: Group
|
||||
icon: /assets/icons/group.png
|
||||
color: #7076BC
|
||||
|
||||
nine:
|
||||
name: Idea
|
||||
icon: /assets/icons/idea.png
|
||||
color: #C4BC5E
|
||||
|
||||
ten:
|
||||
name: Implication
|
||||
icon: /assets/icons/implication.png
|
||||
color: #83DECA
|
||||
|
||||
eleven:
|
||||
name: Insight
|
||||
icon: /assets/icons/insight.png
|
||||
color: #B074AD
|
||||
|
||||
twelve:
|
||||
name: Intention
|
||||
icon: /assets/icons/intention.png
|
||||
color: #BAEAFF
|
||||
|
||||
thirteen:
|
||||
name: Knowledge
|
||||
icon: /assets/icons/knowledge.png
|
||||
color: #60ACF7
|
||||
|
||||
fourteen:
|
||||
name: Location
|
||||
icon: /assets/icons/location.png
|
||||
color: #ABD9A7
|
||||
|
||||
fifteen:
|
||||
name: Open Issue
|
||||
icon: /assets/icons/openissue.png
|
||||
color: #9BBF71
|
||||
|
||||
sixteen:
|
||||
name: Opinion
|
||||
icon: /assets/icons/opinion.png
|
||||
color: #54A19D
|
||||
|
||||
seventeen:
|
||||
name: Opportunity
|
||||
icon: /assets/icons/opportunity.png
|
||||
color: #889F64
|
||||
|
||||
eighteen:
|
||||
name: Person
|
||||
icon: /assets/icons/person.png
|
||||
color: #DE925F
|
||||
|
||||
nineteen:
|
||||
name: Platform
|
||||
icon: /assets/icons/platform.png
|
||||
color: #21C8FE
|
||||
|
||||
twenty:
|
||||
name: Problem
|
||||
icon: /assets/icons/problem.png
|
||||
color: #99CFC4
|
||||
|
||||
twenty-one:
|
||||
name: Question
|
||||
icon: /assets/icons/question.png
|
||||
color: #709899
|
||||
|
||||
twenty-two:
|
||||
name: Reference
|
||||
icon: /assets/icons/reference.png
|
||||
color: #A7A7A7
|
||||
|
||||
twenty-three:
|
||||
name: Requirement
|
||||
icon: /assets/icons/requirement.png
|
||||
color: #D2A7D4
|
||||
|
||||
twenty-four:
|
||||
name: Resource
|
||||
icon: /assets/icons/resource.png
|
||||
icon: /assets/icons/resource.png
|
||||
color: #C98C63
|
||||
|
||||
twenty-five:
|
||||
name: Role
|
||||
icon: /assets/icons/role.png
|
||||
color: #A8595D
|
||||
|
||||
twenty-six:
|
||||
name: Task
|
||||
icon: /assets/icons/task.png
|
||||
color: #2F89BA
|
||||
|
||||
twenty-seven:
|
||||
name: Tool
|
||||
icon: /assets/icons/tool.png
|
||||
color: #828282
|
||||
|
||||
twenty-eight:
|
||||
name: Trajectory
|
||||
icon: /assets/icons/trajectory.png
|
||||
color: #B3953D
|
||||
|
||||
twenty-nine:
|
||||
name: Argument
|
||||
icon: /assets/icons/argument.png
|
||||
color: #7FAEFD
|
||||
|
||||
thirty:
|
||||
name: Con
|
||||
icon: /assets/icons/con_icon.png
|
||||
color: #CF7C74
|
||||
|
||||
thirty-one:
|
||||
name: Decision
|
||||
icon: /assets/icons/decision.png
|
||||
color: #CCA866
|
||||
|
||||
thirty-two:
|
||||
name: Example
|
||||
icon: /assets/icons/example.png
|
||||
color: #598559
|
||||
|
||||
thirty-three:
|
||||
name: Foresight
|
||||
icon: /assets/icons/foresight.png
|
||||
color: #B0B0B0
|
||||
|
||||
thirty-four:
|
||||
name: Good Practice
|
||||
icon: /assets/icons/goodpractice.png
|
||||
color: #BD9E86
|
||||
|
||||
thirty-five:
|
||||
name: List
|
||||
icon: /assets/icons/list.png
|
||||
color: #B7A499
|
||||
|
||||
thirty-six:
|
||||
name: Movie Map
|
||||
icon: /assets/icons/moviemap.png
|
||||
color: #A5A0DE
|
||||
|
||||
thirty-seven:
|
||||
name: Note
|
||||
icon: /assets/icons/note.png
|
||||
color: #A389A1
|
||||
|
||||
thirty-eight:
|
||||
name: Pro
|
||||
icon: /assets/icons/pro.png
|
||||
color: #89B879
|
||||
|
||||
thirty-nine:
|
||||
name: Research
|
||||
icon: /assets/icons/research.png
|
||||
color: #CD8E89
|
||||
|
||||
forty:
|
||||
name: Wildcard
|
||||
icon: /assets/icons/wildcard.png
|
||||
color: #73C7DE
|
||||
|
|
Loading…
Reference in a new issue