Commit dc537b5c authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #564 from ethereum/scrollbars

Remove reduntant scrollbars
parents 8f8ffa0c cd1d564c
......@@ -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;
......
......@@ -9,6 +9,7 @@ var css = csjs`
.analysisTabView {
padding: 2%;
margin-top: 1em;
padding-bottom: 3em;
}
.infoBox extends ${styles.infoTextBox} {
margin-bottom: 1em;
......
......@@ -21,6 +21,9 @@ var styleGuide = require('./app/style-guide')
var styles = styleGuide()
var css = csjs`
html {
overflow: hidden;
}
.options {
float: left;
padding: 0.7em 0.3em;
......
......@@ -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')
.execute(function () {
document.querySelector('.output .decoded li').scrollIntoView()
}, [], function () {
browser.assert.containsText('.output .decoded li', 'uint256: 8')
.end()
})
})
}
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