Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.
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
1 change: 0 additions & 1 deletion lib/views/panel-view.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<div id="pymakr" class="pymakr pymakr-open">
<div id="pymakr-resizer"></div>
<span class="font-size-measurement">x</span>
<link href="css/chrome-tabs.css" rel="stylesheet" />
<div id="pymakr-overlay-contents"></div>

<div id="pycom-top-bar">
Expand Down
3 changes: 0 additions & 3 deletions lib/views/sidebar-view.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@
class="has-sub"
>
<div id="pybytes-logo" />
<span style="margin-bottom: 4px">
Pybytes
</span>
</button>
<button style="margin-left: -15px;" id="seemore" class="has-sub">
<span style="margin-top: 1px;" class="fa fa-plus"></span> More
Expand Down
5 changes: 4 additions & 1 deletion lib/views/sidebar-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ export default class SideBar extends EventEmitter {
$('#pybytes-logo').load(
`${this.api.getPackagePath()}/styles/assets/pycom-icon.svg`,
);
this.buttonPybytes = $('#pymakr #pybytes');
this.buttonPybytes = $('#pybytes');
const pybytesLabel = $('<span style="margin-bottom: 4px">Pybytes</span>');
this.buttonPybytes.addClass('badge-new');
this.buttonPybytes.append(pybytesLabel);

this.bindOnClicks();
}

Expand Down