Commit 4d6d45bd authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #735 from ethereum/clearSourceLocationCache

Clear source location cache
parents 62cf06d0 da4ba210
{ {
"name": "remix-debugger", "name": "remix-debugger",
"version": "0.1.1", "version": "0.1.2",
"description": "Ethereum IDE and tools for the web", "description": "Ethereum IDE and tools for the web",
"contributors": [ "contributors": [
{ {
......
...@@ -19,6 +19,10 @@ var css = csjs` ...@@ -19,6 +19,10 @@ var css = csjs`
.name { .name {
font-weight: bold; font-weight: bold;
} }
.nameDetail {
font-weight: bold;
margin-left: 3px;
}
.icon { .icon {
color: ${styles.rightPanel.debuggerTab.button_Debugger_icon_Color}; color: ${styles.rightPanel.debuggerTab.button_Debugger_icon_Color};
margin-right: 5%; margin-right: 5%;
...@@ -131,7 +135,7 @@ DropdownPanel.prototype.render = function (overridestyle) { ...@@ -131,7 +135,7 @@ DropdownPanel.prototype.render = function (overridestyle) {
</style> </style>
<div class="${css.title} title"> <div class="${css.title} title">
<div class="${css.icon} fa fa-caret-right" onclick=${function () { self.toggle() }} ></div> <div class="${css.icon} fa fa-caret-right" onclick=${function () { self.toggle() }} ></div>
<div class="${css.name}" onclick=${function () { self.toggle() }} >${this.name}</div><span onclick=${function () { self.toggle() }} ></span> <div class="${css.name}" onclick=${function () { self.toggle() }} >${this.name}</div><span class="${css.nameDetail}" onclick=${function () { self.toggle() }} ></span>
<div onclick=${function () { self.copyClipboard() }} title='raw' class="${css.eyeButton} btn fa fa-clipboard"></div> <div onclick=${function () { self.copyClipboard() }} title='raw' class="${css.eyeButton} btn fa fa-clipboard"></div>
</div> </div>
<div class='dropdownpanel' style='display:none'> <div class='dropdownpanel' style='display:none'>
......
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