Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
Update icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetabdi committed Apr 16, 2018
1 parent 9182047 commit 03a0cc3
Show file tree
Hide file tree
Showing 6 changed files with 5,317 additions and 8 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 3 additions & 1 deletion css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ a {
#rating_bubble.negative_6 { background-color: #7b2908; }
#rating_bubble.unrated, #artwork-container .fa { display: none; }

#voting_container { font-size: 1.7em; }
#voting_container { font-size: 2.4em; }
#voting_container>a { display: inline-block; margin: 0 .3em; }
#voting_container a { color: #fff; background: none; border: 0; transition: transform .15s; }
#voting_container a:not(.voted):focus, #voting_container a:not(.voted):hover { transform: scale(1.2) rotate(5deg); }
Expand Down Expand Up @@ -137,6 +137,7 @@ a {
color: #fff;
text-shadow: 0 0 1px rgba(34,34,34,0.4);
margin-right: .5em;
width: 35px;
}

#time_details {
Expand All @@ -148,6 +149,7 @@ a {
color: rgba(255,255,255,0.8);
text-shadow: 0 0 1px rgba(34,34,34,0.4);
margin-left: .5em;
width: 35px;
}

#progressbar {
Expand Down
10 changes: 5 additions & 5 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function reloadAllWindows() {
}

function createSettingsWindow() {
settingsWindow = new BrowserWindow({width: 250, height: 465, resizable: false, alwaysOnTop: true})
settingsWindow = new BrowserWindow({width: 250, height: 465, resizable: false, alwaysOnTop: false})

settingsWindow.loadURL(url.format({
pathname: path.join(__dirname, 'settings.html'),
Expand All @@ -123,7 +123,7 @@ function createSettingsWindow() {
}

function createPlaylistWindow() {
playlistWindow = new BrowserWindow({width: 450, height: 200, resizable: false, alwaysOnTop: true})
playlistWindow = new BrowserWindow({width: 450, height: 200, resizable: false, alwaysOnTop: false})

playlistWindow.loadURL(url.format({
pathname: path.join(__dirname, 'playlist.html'),
Expand Down Expand Up @@ -164,7 +164,7 @@ function registerHotkeys(window) {
}

function createFirstLayoutWindow () {
mainWindow = new BrowserWindow({width: 380, height: 155, resizable: false, frame: false, alwaysOnTop: true})
mainWindow = new BrowserWindow({width: 380, height: 155, resizable: false, frame: false, alwaysOnTop: false})
// mainWindow = new BrowserWindow({width: 800, height: 500, resizable: false, frame: false})

mainWindow.loadURL(url.format({
Expand All @@ -183,7 +183,7 @@ function createFirstLayoutWindow () {
}

function createSecondLayoutWindow () {
mainWindow = new BrowserWindow({width: 380, height: 130, resizable: false, frame: false, alwaysOnTop: true})
mainWindow = new BrowserWindow({width: 380, height: 130, resizable: false, frame: false, alwaysOnTop: false})

mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'layout_2.html'),
Expand All @@ -201,7 +201,7 @@ function createSecondLayoutWindow () {
}

function createThirdLayoutWindow() {
mainWindow = new BrowserWindow({width: 260, height: 100, resizable: false, frame: false, alwaysOnTop: true})
mainWindow = new BrowserWindow({width: 260, height: 100, resizable: false, frame: false, alwaysOnTop: false})
// mainWindow = new BrowserWindow({width: 800, height: 500, resizable: false, frame: false})

mainWindow.loadURL(url.format({
Expand Down
Binary file added new.icns
Binary file not shown.
Loading

0 comments on commit 03a0cc3

Please sign in to comment.