Unverified Commit b099d5f4 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1069 from ethereum/addremixdinfo

Add remixd info
parents 343ef253 87f3a845
...@@ -54,6 +54,17 @@ function SettingsTab (container, appAPI, appEvents) { ...@@ -54,6 +54,17 @@ function SettingsTab (container, appAPI, appEvents) {
</div> </div>
</div> </div>
<div class="${css.info}"> <div class="${css.info}">
<div class=${css.title}>Remixd</div>
<div class="${css.crow}">
Remixd is a tool which allow Remix IDE to access files located in your local computer.
it can also be used to setup a development environment.
</div>
<div class="${css.crow}">More infos:</div>
<div class="${css.crow}"><a target="_blank" href="https://github.com/ethereum/remixd"> https://github.com/ethereum/remixd</a></div>
<div class="${css.crow}"><a target="_blank" href="http://remix.readthedocs.io/en/latest/tutorial_remixd_filesystem.html">http://remix.readthedocs.io/en/latest/tutorial_remixd_filesystem.html</a></div>
<div class="${css.crow}">Installation: <pre class=${css.remixdinstallation}>npm install remixd -g</pre></div>
</div>
<div class="${css.info}">
<div class=${css.title}>Themes</div> <div class=${css.title}>Themes</div>
<div class=${css.attention}> <div class=${css.attention}>
<i title="Select the theme" class="${css.icon} fa fa-exclamation-triangle" aria-hidden="true"></i> <i title="Select the theme" class="${css.icon} fa fa-exclamation-triangle" aria-hidden="true"></i>
...@@ -67,7 +78,7 @@ function SettingsTab (container, appAPI, appEvents) { ...@@ -67,7 +78,7 @@ function SettingsTab (container, appAPI, appEvents) {
<input class="${css.col1}" name="theme" id="themeDark" type="checkbox"> <input class="${css.col1}" name="theme" id="themeDark" type="checkbox">
<label for="themeDark">Dark Theme</label> <label for="themeDark">Dark Theme</label>
</div> </div>
</div> </div>
<div class="${css.info}"> <div class="${css.info}">
<div class=${css.title}>Plugin</div> <div class=${css.title}>Plugin</div>
<div class="${css.crowNoFlex}"> <div class="${css.crowNoFlex}">
......
...@@ -70,6 +70,11 @@ var css = csjs` ...@@ -70,6 +70,11 @@ var css = csjs`
.icon { .icon {
margin-right: .5em; margin-right: .5em;
} }
.remixdinstallation {
padding: 3px;
border-radius: 2px;
margin-left: 5px;
}
} }
` `
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment