Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Chrome app window button removed old ones #92

Open
wants to merge 3 commits into
base: fresh
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions background.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function WindowManager() {
// will be remembered. so put it in.
this.mainWindowOpts = {
width: 865,
frame: 'none',
frame: 'true',
height: 610,
resizable: true,
minHeight: 32,
Expand Down Expand Up @@ -278,4 +278,4 @@ chrome.runtime.onSuspendCanceled.addListener( function(evt) {
})
chrome.app.runtime.onRestarted.addListener( function(evt) {
console.log('app onRestarted',evt)
})
})
25 changes: 0 additions & 25 deletions gui/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,6 @@
padding-right:3px;
/* background-color: #90d1fc; */
/*background-color: #24a3ed; */
background: linear-gradient(#24a3ed 0%, #24a3ed 8%, #90d1fc 12%, #90d1fc 90%, white 100%);
-webkit-app-region: drag;
}
#top-titlebar.blur {
background: linear-gradient(#999 0%, #999 8%, #dddeee 12%, #dddeee 90%, white 100%);
}

#top-titlebar-close {
float:right;
-webkit-app-region: no-drag;
}
#top-titlebar-close:hover {
background-color: white
}

#top-titlebar-min {
float:right;
padding-right:4px;
-webkit-app-region: no-drag;
}
#top-titlebar-min:hover {
background-color: white
}

#chrome-top {
}

body {
Expand Down
2 changes: 0 additions & 2 deletions gui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@
<img style="display:none" id="top-titlebar-icon" src="../js-19.png" />
<span id="client-infobar-down"></span>
<span id="client-infobar-up"></span>
<div id="top-titlebar-close">Quit</div>
<div id="top-titlebar-min">Compact</div>
</div>

<div style="display:none" id="minui-wrapper">
Expand Down