File tree 5 files changed +19
-4
lines changed
5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change
1
+ <!-- INSTRUCTION: Your Pull Request name should start with one of the following tags -->
2
+ <!-- [NEW] For new features -->
3
+ <!-- [FIX] For bug fixes -->
4
+ <!-- [BREAK] For pull requests including breaking changes -->
5
+
1
6
<!-- INSTRUCTION: Keep the line below to notify all core developers about this new PR -->
2
- @RocketChat/DesktopApp
7
+ @RocketChat/desktopapp
3
8
4
9
<!-- INSTRUCTION: Inform the issue number that this PR closes, or remove the line below -->
5
10
Closes #ISSUE_NUMBER
6
11
7
- <!-- INSTRUCTION: Tell us more about your PR -->
12
+ <!-- INSTRUCTION: Tell us more about your PR with screen shots if you can -->
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 41
41
"allowElevation" : true ,
42
42
"allowToChangeInstallationDirectory" : true
43
43
},
44
+ "appx" : {
45
+ "backgroundColor" : " #2f343d" ,
46
+ "displayName" : " Rocket.Chat" ,
47
+ "publisherDisplayName" : " Rocket.Chat" ,
48
+ "languages" : [
49
+ " en-US" ,
50
+ " en-GB" ,
51
+ " pt-BR"
52
+ ]
53
+ },
44
54
"linux" : {
45
55
"desktop" : {
46
56
"Categories" : " GNOME;GTK;Network;InstantMessaging" ,
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ class SideBar extends EventEmitter {
272
272
this . emit ( 'hide' ) ;
273
273
if ( process . platform === 'darwin' ) {
274
274
document . querySelectorAll ( 'webview' ) . forEach (
275
- ( webviewObj ) => { if ( webviewObj . insertCSS ) { webviewObj . insertCSS ( 'aside.side-nav{margin-top:15px;overflow:hidden; transition: margin .5s ease-in-out; }' ) ; } } ) ;
275
+ ( webviewObj ) => { if ( webviewObj . insertCSS ) { webviewObj . insertCSS ( 'aside.side-nav{margin-top:15px;overflow:hidden; transition: margin .5s ease-in-out; } .sidebar{padding-top:10px;transition: margin .5s ease-in-out;} ' ) ; } } ) ;
276
276
}
277
277
}
278
278
@@ -282,7 +282,7 @@ class SideBar extends EventEmitter {
282
282
this . emit ( 'show' ) ;
283
283
if ( process . platform === 'darwin' ) {
284
284
document . querySelectorAll ( 'webview' ) . forEach (
285
- ( webviewObj ) => { if ( webviewObj . insertCSS ) { webviewObj . insertCSS ( 'aside.side-nav{margin-top:0; overflow:hidden; transition: margin .5s ease-in-out; }' ) ; } } ) ;
285
+ ( webviewObj ) => { if ( webviewObj . insertCSS ) { webviewObj . insertCSS ( 'aside.side-nav{margin-top:0; overflow:hidden; transition: margin .5s ease-in-out;} .sidebar{padding-top:0;transition: margin .5s ease-in-out; }' ) ; } } ) ;
286
286
}
287
287
}
288
288
You can’t perform that action at this time.
0 commit comments