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
b7425ab8
Unverified
Commit
b7425ab8
authored
Apr 08, 2019
by
yann300
Committed by
GitHub
Apr 08, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1819 from ethereum/swap_it_style_fixes_l
Swap it style fixes l
parents
cca207fe
b1c2ef92
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
7 deletions
+17
-7
txLogger.js
src/app/execution/txLogger.js
+6
-6
editor-panel.js
src/app/panels/editor-panel.js
+7
-1
tab-proxy.js
src/app/panels/tab-proxy.js
+4
-0
No files found.
src/app/execution/txLogger.js
View file @
b7425ab8
...
@@ -24,7 +24,7 @@ var css = csjs`
...
@@ -24,7 +24,7 @@ var css = csjs`
opacity: 0.8;
opacity: 0.8;
}
}
.arrow {
.arrow {
color: var(--
primary
);
color: var(--
text-info
);
font-size: 20px;
font-size: 20px;
cursor: pointer;
cursor: pointer;
display: flex;
display: flex;
...
@@ -57,12 +57,12 @@ var css = csjs`
...
@@ -57,12 +57,12 @@ var css = csjs`
display: flex;
display: flex;
justify-content: center;
justify-content: center;
align-items: center;
align-items: center;
color: var(--
primary
);
color: var(--
text-info
);
text-transform: uppercase;
text-transform: uppercase;
font-weight: bold;
font-weight: bold;
}
}
.txItem {
.txItem {
color: var(--
primary
);
color: var(--
text-info
);
margin-right: 5px;
margin-right: 5px;
float: left;
float: left;
}
}
...
@@ -70,7 +70,7 @@ var css = csjs`
...
@@ -70,7 +70,7 @@ var css = csjs`
font-weight: bold;
font-weight: bold;
}
}
.tx {
.tx {
color: var(--
primary
);
color: var(--
text-info
);
font-weight: bold;
font-weight: bold;
float: left;
float: left;
margin-right: 10px;
margin-right: 10px;
...
@@ -80,8 +80,8 @@ var css = csjs`
...
@@ -80,8 +80,8 @@ var css = csjs`
.td {
.td {
border-collapse: collapse;
border-collapse: collapse;
font-size: 10px;
font-size: 10px;
color: var(--
primary
);
color: var(--
text-info
);
border: 1px solid var(--
primary
);
border: 1px solid var(--
text-info
);
}
}
#txTable {
#txTable {
margin-top: 1%;
margin-top: 1%;
...
...
src/app/panels/editor-panel.js
View file @
b7425ab8
...
@@ -55,8 +55,14 @@ class EditorPanel {
...
@@ -55,8 +55,14 @@ class EditorPanel {
self
.
_view
.
editor
.
style
.
display
=
'none'
self
.
_view
.
editor
.
style
.
display
=
'none'
self
.
_components
.
contextView
.
hide
()
self
.
_components
.
contextView
.
hide
()
self
.
_view
.
mainPanel
.
style
.
display
=
'block'
self
.
_view
.
mainPanel
.
style
.
display
=
'block'
self
.
tabProxy
.
sh
}
}
self
.
appManager
.
event
.
on
(
'ensureActivated'
,
(
name
)
=>
{
if
(
name
===
'home'
)
{
showApp
(
name
)
}
})
self
.
appManager
.
event
.
on
(
'ensureActivated'
,
(
name
)
=>
{
if
(
name
===
'home'
)
{
showApp
(
name
)
self
.
tabProxy
.
showTab
(
'home'
)
}
})
/*
/*
We listen here on event from the tab component to display / hide the editor and mainpanel
We listen here on event from the tab component to display / hide the editor and mainpanel
depending on the content that should be displayed
depending on the content that should be displayed
...
...
src/app/panels/tab-proxy.js
View file @
b7425ab8
...
@@ -100,6 +100,10 @@ export class TabProxy {
...
@@ -100,6 +100,10 @@ export class TabProxy {
}
}
}
}
showTab
(
name
)
{
this
.
_view
.
filetabs
.
activateTab
(
name
)
}
addTab
(
name
,
switchTo
,
close
,
kind
)
{
addTab
(
name
,
switchTo
,
close
,
kind
)
{
var
slash
=
name
.
split
(
'/'
)
var
slash
=
name
.
split
(
'/'
)
let
title
=
name
.
indexOf
(
'/'
)
!==
-
1
?
slash
[
slash
.
length
-
1
]
:
name
let
title
=
name
.
indexOf
(
'/'
)
!==
-
1
?
slash
[
slash
.
length
-
1
]
:
name
...
...
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