Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
c0c9f5d3
Commit
c0c9f5d3
authored
Dec 05, 2017
by
Rob Stupay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bg image working BUT cannot create an instance of a contract
parent
dcf934f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
3 deletions
+36
-3
txLogger.js
src/app/execution/txLogger.js
+0
-2
terminal.js
src/app/panels/terminal.js
+36
-1
No files found.
src/app/execution/txLogger.js
View file @
c0c9f5d3
...
...
@@ -166,7 +166,6 @@ function renderKnownTransaction (self, data) {
var
table
function
txDetails
()
{
console
.
log
(
'txDetails hit'
)
if
(
table
&&
table
.
parentNode
)
{
tx
.
removeChild
(
table
)
}
else
{
...
...
@@ -219,7 +218,6 @@ function renderCall (self, data) {
var
table
function
txDetails
()
{
console
.
log
(
'txDetails hit'
)
if
(
table
&&
table
.
parentNode
)
{
tx
.
removeChild
(
table
)
}
else
{
...
...
src/app/panels/terminal.js
View file @
c0c9f5d3
...
...
@@ -73,7 +73,11 @@ var css = csjs`
overflow-y : auto;
font-family : monospace;
}
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
.terminal_bg {
=======
.inner_terminal {
>>>>>>> bg image working BUT cannot create an instance of a contract
display : flex;
flex-direction : column;
height : 100%;
...
...
@@ -82,24 +86,48 @@ var css = csjs`
padding-bottom : 3px;
overflow-y : auto;
font-family : monospace;
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
background-image :
${
styles
.
terminal
.
backgroundImage_Terminal
}
;
=======
background-image : url(assets/img/remix_logo_white_512x512.svg);
>>>>>>> bg image working BUT cannot create an instance of a contract
opacity : 0.1;
top : 15%;
left : 33%;
bottom : 0;
right : 0;
position : absolute;
z-index :
1;
// z-index : -
1;
background-repeat : no-repeat;
background-size : 45%;
}
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
.terminal {
=======
.terminal_content {
>>>>>>> bg image working BUT cannot create an instance of a contract
position: relative;
position: relative;
display: flex;
flex-direction: column;
height: 100%;
}
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
=======
.inner_terminal::after {
// content : "";
// background-image : url(assets/img/remix_logo_white_512x512.svg);
// opacity : 0.1;
// top : 15%;
// left : 33%;
// bottom : 0;
// right : 0;
// position : absolute;
// // z-index : -1;
// background-repeat : no-repeat;
// background-size : 45%;
}
>>>>>>> bg image working BUT cannot create an instance of a contract
.journal {
margin-top : auto;
font-family : monospace;
...
...
@@ -290,10 +318,17 @@ class Terminal {
}
self
.
_view
.
term
=
yo
`
<<<<<<< dcf934f38c8de88cf4796c2b5828d623b9ab9ae7
<div class=
${
css
.
terminal_container
}
onscroll=
${
throttle
(
reattach
,
10
)}
onclick=
${
focusinput
}
>
<div class=
${
css
.
terminal_bg
}
>
</div>
<div class=
${
css
.
terminal
}
>
=======
<div class=
${
css
.
terminal
}
onscroll=
${
throttle
(
reattach
,
10
)}
onclick=
${
focusinput
}
>
<div class=
${
css
.
inner_terminal
}
>
</div>
<div class=
${
css
.
terminal_content
}
>
>>>>>>> bg image working BUT cannot create an instance of a contract
${
self
.
_view
.
journal
}
${
self
.
_view
.
cli
}
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment