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
28c43e33
Commit
28c43e33
authored
Apr 12, 2019
by
LianaHus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
terminal menu styleing correction
standard fix
parent
fc31b3f3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
7 deletions
+9
-7
terminal-styles.js
src/app/panels/styles/terminal-styles.js
+1
-1
tab-proxy.js
src/app/panels/tab-proxy.js
+2
-2
terminal.js
src/app/panels/terminal.js
+1
-1
debugger-tab.js
src/app/tabs/debugger-tab.js
+1
-1
settings-tab.js
src/app/tabs/settings-tab.js
+1
-1
dropdown-styles.js
src/app/ui/styles/dropdown-styles.js
+3
-1
No files found.
src/app/panels/styles/terminal-styles.js
View file @
28c43e33
...
@@ -128,7 +128,6 @@ var css = csjs`
...
@@ -128,7 +128,6 @@ var css = csjs`
height : 65%;
height : 65%;
}
}
.pendingTx {
.pendingTx {
border : 1px solid var(--secondary);
border-radius : 50%;
border-radius : 50%;
margin-right : 30px;
margin-right : 30px;
min-width : 13px;
min-width : 13px;
...
@@ -137,6 +136,7 @@ var css = csjs`
...
@@ -137,6 +136,7 @@ var css = csjs`
justify-content : center;
justify-content : center;
align-items : center;
align-items : center;
font-size : 14px;
font-size : 14px;
user-select : none;
}
}
.dragbarHorizontal {
.dragbarHorizontal {
position : absolute;
position : absolute;
...
...
src/app/panels/tab-proxy.js
View file @
28c43e33
...
@@ -27,7 +27,7 @@ export class TabProxy {
...
@@ -27,7 +27,7 @@ export class TabProxy {
this
.
_view
.
filetabs
.
activateTab
(
file
)
this
.
_view
.
filetabs
.
activateTab
(
file
)
return
return
}
}
this
.
addTab
(
file
,
""
,
()
=>
{
this
.
addTab
(
file
,
''
,
()
=>
{
this
.
fileManager
.
switchFile
(
file
)
this
.
fileManager
.
switchFile
(
file
)
this
.
event
.
emit
(
'switchFile'
,
file
)
this
.
event
.
emit
(
'switchFile'
,
file
)
},
},
...
@@ -39,7 +39,7 @@ export class TabProxy {
...
@@ -39,7 +39,7 @@ export class TabProxy {
fileManager
.
events
.
on
(
'fileRenamed'
,
(
oldName
,
newName
)
=>
{
fileManager
.
events
.
on
(
'fileRenamed'
,
(
oldName
,
newName
)
=>
{
this
.
removeTab
(
oldName
)
this
.
removeTab
(
oldName
)
this
.
addTab
(
newName
,
""
,
()
=>
{
this
.
addTab
(
newName
,
''
,
()
=>
{
this
.
fileManager
.
switchFile
(
newName
)
this
.
fileManager
.
switchFile
(
newName
)
this
.
event
.
emit
(
'switchFile'
,
newName
)
this
.
event
.
emit
(
'switchFile'
,
newName
)
},
},
...
...
src/app/panels/terminal.js
View file @
28c43e33
...
@@ -127,7 +127,7 @@ class Terminal {
...
@@ -127,7 +127,7 @@ class Terminal {
`
`
self
.
_view
.
icon
=
yo
`
self
.
_view
.
icon
=
yo
`
<i onmouseenter=
${
hover
}
onmouseleave=
${
hover
}
onmousedown=
${
minimize
}
<i onmouseenter=
${
hover
}
onmouseleave=
${
hover
}
onmousedown=
${
minimize
}
class="btn btn-secondary align-items-center
${
css
.
toggleTerminal
}
fa fa-angle-double-down"></i>`
class="btn btn-secondary
btn-sm
align-items-center
${
css
.
toggleTerminal
}
fa fa-angle-double-down"></i>`
self
.
_view
.
dragbar
=
yo
`
self
.
_view
.
dragbar
=
yo
`
<div onmousedown=
${
mousedown
}
class=
${
css
.
dragbarHorizontal
}
></div>`
<div onmousedown=
${
mousedown
}
class=
${
css
.
dragbarHorizontal
}
></div>`
self
.
_view
.
dropdown
=
self
.
_components
.
dropdown
.
render
()
self
.
_view
.
dropdown
=
self
.
_components
.
dropdown
.
render
()
...
...
src/app/tabs/debugger-tab.js
View file @
28c43e33
...
@@ -5,7 +5,7 @@ var DebuggerUI = require('../debugger/debuggerUI')
...
@@ -5,7 +5,7 @@ var DebuggerUI = require('../debugger/debuggerUI')
import
{
BaseApi
}
from
'remix-plugin'
import
{
BaseApi
}
from
'remix-plugin'
const
profile
=
{
displayName
:
'Debugger'
,
const
profile
=
{
name
:
'debugger'
,
name
:
'debugger'
,
displayName
:
'Debuggerr'
,
displayName
:
'Debuggerr'
,
methods
:
[],
methods
:
[],
...
...
src/app/tabs/settings-tab.js
View file @
28c43e33
...
@@ -41,7 +41,7 @@ module.exports = class SettingsTab extends BaseApi {
...
@@ -41,7 +41,7 @@ module.exports = class SettingsTab extends BaseApi {
initTheme
()
{
initTheme
()
{
this
.
currentTheme
=
this
.
_deps
.
themeModule
.
currentTheme
()
this
.
currentTheme
=
this
.
_deps
.
themeModule
.
currentTheme
()
}
}
createThemeCheckies
()
{
createThemeCheckies
()
{
let
themes
=
this
.
_deps
.
themeModule
.
getThemes
()
let
themes
=
this
.
_deps
.
themeModule
.
getThemes
()
const
onswitchTheme
=
(
event
,
name
)
=>
{
const
onswitchTheme
=
(
event
,
name
)
=>
{
...
...
src/app/ui/styles/dropdown-styles.js
View file @
28c43e33
...
@@ -8,6 +8,8 @@ var css = csjs`
...
@@ -8,6 +8,8 @@ var css = csjs`
flex-direction : column;
flex-direction : column;
margin-left : 10px;
margin-left : 10px;
width : auto;
width : auto;
margin-top : 2px;
max-height : 24px;
}
}
.selectbox {
.selectbox {
display : flex;
display : flex;
...
@@ -31,7 +33,7 @@ var css = csjs`
...
@@ -31,7 +33,7 @@ var css = csjs`
display : flex;
display : flex;
flex-direction : column;
flex-direction : column;
align-items : end;
align-items : end;
top :
32
px;
top :
23
px;
left : 0;
left : 0;
width : 245px;
width : 245px;
border : 1px solid var(--dark);
border : 1px solid var(--dark);
...
...
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