hide nav buttons for non-book notebooks (#6377)

* hide nav buttons for non-book notebooks

* updated buttons for all themes

* changed foregroundColor to buttonForegroundColor
This commit is contained in:
Lucy Zhang
2019-07-16 16:26:03 -07:00
committed by GitHub
parent caff76b723
commit 43bd7268e8
6 changed files with 61 additions and 24 deletions

View File

@@ -156,6 +156,8 @@ export interface INotebookEditor {
export interface INavigationProvider {
providerId: string;
hasNavigation: boolean;
getNavigation(uri: URI): Thenable<azdata.nb.NavigationResult>;
onNext(uri: URI): void;
onPrevious(uri: URI): void;
}