Skip to content

Commit

Permalink
#7428 change icon to &
Browse files Browse the repository at this point in the history
  • Loading branch information
piorek committed Aug 9, 2018
1 parent 6f229a8 commit 0cda4a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions js/notebook/src/shared/style/beakerx.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
&.icon-add:before {
content: "\f067" !important;
}

&.icon-bg:before {
content: "&" !important;
font-family: "Lato", Helvetica, sans-serif;
font-weight: bold;
}
}

.bko-focused {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ private Widget createBkgJobsButton(int stageId) {
BeakerXServer beakerXServer = KernelManager.get().getBeakerXServer();
RESTButton bkgButton = new RESTButton(beakerXServer.getURL() + PUT_SPARK_JOBS_IN_THE_BACKGROUND);
bkgButton.setTooltip("put spark job in the background, let it complete asynchronously");
bkgButton.setDomClasses(new ArrayList<>(asList("bx-button", "icon-add")));
bkgButton.setDomClasses(new ArrayList<>(asList("bx-button", "icon-bg")));
return bkgButton;
}

Expand Down

0 comments on commit 0cda4a1

Please sign in to comment.