Skip to content

removed extra space at the left of the native editor #8288

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/ci/templates/globals.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variables:
PythonVersion: '3.7.4' # Always use latest version.
PythonVersion: '3.7.5' # Always use latest version.
NodeVersion: '10.11.0' # Check version of node used in VS Code.
NpmVersion: '6.10.3'
MOCHA_FILE: '$(Build.ArtifactStagingDirectory)/test-junit.xml' # All test files will write their JUnit xml output to this file, clobbering the last time it was written.
Expand Down
2 changes: 1 addition & 1 deletion build/ci/templates/jobs/uitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ parameters:
# All scenarios tagged with `@noNeedToTestInAllPython`, will run in the latest version of Python.
# When using other versions of Python, ignore `@noNeedToTestInAllPython`.
{
"version": "3.7.4",
"version": "3.7.5",
"displayName": "37",
"excludeTags": "not @python3.6 and not @python3.5 and not @python2"
},
Expand Down
13 changes: 3 additions & 10 deletions src/datascience-ui/native-editor/nativeEditor.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,17 @@
}

.cell-wrapper {
margin: 1px 2px;
border-color: transparent;
border-style: solid;
border-width: 2px 2px 0px 20px;
margin: 2px 2px 0px 0px;
position: relative;
min-height: 55px;
}

.cell-wrapper-focused {
border-color: transparent;
border-style: solid;
border-width: 2px 2px 0px 20px;
margin: 2px 2px 0px 0px;
}

.cell-wrapper-selected {
border-color: transparent;
border-style: solid;
border-width: 2px 2px 0px 20px;
margin: 2px 2px 0px 0px;
}

.cell-menu-bar-outer {
Expand Down