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
dc537b5c
Commit
dc537b5c
authored
Jun 15, 2017
by
yann300
Committed by
GitHub
Jun 15, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #564 from ethereum/scrollbars
Remove reduntant scrollbars
parents
8f8ffa0c
cd1d564c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
10 deletions
+18
-10
browser-solidity.css
assets/css/browser-solidity.css
+1
-1
analysis-tab.js
src/app/analysis-tab.js
+1
-0
universal-dapp.js
src/universal-dapp.js
+10
-7
compiling.js
test-browser/tests/compiling.js
+6
-2
No files found.
assets/css/browser-solidity.css
View file @
dc537b5c
...
...
@@ -134,6 +134,7 @@ body {
bottom
:
0
;
overflow
:
auto
;
box-sizing
:
border-box
;
overflow
:
hidden
;
}
#header
{
...
...
@@ -150,7 +151,6 @@ body {
#header
#menu
{
border-bottom
:
3px
solid
#F4F6FF
;
overflow
:
hidden
;
height
:
2em
;
font-size
:
1em
;
padding-top
:
0.5em
;
...
...
src/app/analysis-tab.js
View file @
dc537b5c
...
...
@@ -9,6 +9,7 @@ var css = csjs`
.analysisTabView {
padding: 2%;
margin-top: 1em;
padding-bottom: 3em;
}
.infoBox extends
${
styles
.
infoTextBox
}
{
margin-bottom: 1em;
...
...
src/universal-dapp.js
View file @
dc537b5c
...
...
@@ -21,14 +21,17 @@ var styleGuide = require('./app/style-guide')
var
styles
=
styleGuide
()
var
css
=
csjs
`
html {
overflow: hidden;
}
.options {
float: left;
padding: 0.7em 0.3em;
font-size: 0.9em;
cursor: pointer;
background-color: transparent;
margin-right: 0.5em;
font-size: 1em;
float: left;
padding: 0.7em 0.3em;
font-size: 0.9em;
cursor: pointer;
background-color: transparent;
margin-right: 0.5em;
font-size: 1em;
}
.title extends
${
styles
.
titleBox
}
{
cursor: pointer;
...
...
test-browser/tests/compiling.js
View file @
dc537b5c
...
...
@@ -33,7 +33,11 @@ function runTests (browser) {
.
click
(
'.instance .call[title="f"]'
)
.
waitForElementPresent
(
'.output .returned'
)
.
assert
.
containsText
(
'.output .returned'
,
'0x0000000000000000000000000000000000000000000000000000000000000008'
)
.
assert
.
containsText
(
'.output .decoded li'
,
'uint256: 8'
)
.
end
()
.
execute
(
function
()
{
document
.
querySelector
(
'.output .decoded li'
).
scrollIntoView
()
},
[],
function
()
{
browser
.
assert
.
containsText
(
'.output .decoded li'
,
'uint256: 8'
)
.
end
()
})
})
}
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