Skip to content

Commit ba0e293

Browse files
committed
INT-793 👕 and killing the logo
1 parent a7a91a9 commit ba0e293

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

src/electron/menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function connectSubMenu(nonDarwin) {
7979

8080
if (nonDarwin) {
8181
subMenu.push(separator());
82-
subMenu.push(quitSubMenu('Exit'));
82+
subMenu.push(quitSubMenuItem('Exit'));
8383
}
8484

8585
return {

src/electron/window-manager.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ var path = require('path');
1818
* When running in electron, we're in `RESOURCES/src/electron`.
1919
*/
2020
var RESOURCES = path.resolve(__dirname, '../../');
21+
var SCOUT_ICON_PATH = RESOURCES + '/images/scout.png';
2122

2223
/**
2324
* The app's HTML shell which is the output of `./src/index.jade`

src/help/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var HelpPage = View.extend({
2323
title: {
2424
deps: ['entry.title'],
2525
fn: function() {
26-
var t = 'MongoDB Compass: Help';
26+
var t = 'MongoDB Compass Help';
2727
if (this.entry.title) {
2828
t += ': ' + this.entry.title;
2929
}

src/help/index.less

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
.panel {
1313
position: absolute;
14-
top: 72px;
14+
top: 0;
1515
left: 0;
1616
bottom: 0;
1717
width: 220px;
@@ -21,7 +21,6 @@
2121
.panel-title {
2222
padding: 8px 0;
2323
overflow: auto;
24-
border-top: 1px solid lighten(@slate1, 5%);
2524
border-left: 4px solid transparent;
2625
}
2726

src/help/sidebar.jade

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.sidebar
2-
.compass-logo
32
.panel
43
.panel-title
54
| Help Topics

0 commit comments

Comments
 (0)