Skip to content

Commit

Permalink
markup
Browse files Browse the repository at this point in the history
  • Loading branch information
tarutin committed Oct 9, 2020
1 parent f519272 commit c11eda2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function init()

ipc.send('clocks-get')

$('.update .version').innerHTML += `v${config.APP_VERSION}`
$('.update .version').innerHTML = `v${config.APP_VERSION}`

$all('.app-name').forEach(item => { item.innerText = config.APP_NAME })
}
Expand Down
4 changes: 2 additions & 2 deletions app/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ button, html input[type='button'], input[type='reset'], input[type='submit'] { -

.search { position:relative; background:#0C0F12; cursor:text; }
.search input { position:relative; z-index:10; width:100%; background:transparent; font-weight:400; font-size:13px; color:#fff; border:none; padding:10px 20px 10px 40px; background:url('../static/search-darkmode.svg') no-repeat 15px center; background-size:14px 14px; }
.search label { position:absolute; z-index:9; top:-2px; right:0; z-index:9; text-align:right; display:block; width:100%; opacity:.5; padding:10px 25px; font-weight:400; font-size:13px; }
.search label { position:absolute; z-index:9; top:2px; right:0; z-index:9; text-align:right; display:block; width:100%; opacity:.5; padding:10px 15px; font-weight:400; font-size:13px; }

.clock { padding:5px 15px; background:#0C0F12; overflow-y:auto; }
.clock button { display:block; width:100%; position:relative; text-align:left; font-weight:400; border:none; padding:0 5px; margin:10px 0px; background:transparent; font-size:13px; opacity:.3; transition:all 0.2s linear 0s; }
Expand Down Expand Up @@ -48,7 +48,7 @@ button, html input[type='button'], input[type='reset'], input[type='submit'] { -
.update.install { background-color:#2662C1; color:#fff; }
.update.install:hover { background-color:#3b74cf; }
.update.install .version { opacity:.7; }
.update .version { font-size:10px; position:relative; top:2px; float:right; }
.update .version { font-size:10px; position:relative; text-align:right; top:2px; left:5px; float:right; }

.settings button, .update, .about, .support, .exit { padding-left:30px; }
.about:before { content:''; width:13px; height:13px; position:relative; top:1px; margin-left:-15px; margin-right:10px; background:url('../static/about-darkmode.svg') no-repeat 0px center; background-size:13px 13px; display:inline-block; }
Expand Down
2 changes: 1 addition & 1 deletion app/updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function init() {
if(process.platform == 'darwin' && !win.isVisible()) {
app.dock.show()
app.dock.bounce()
app.dock.setBadge('')
app.dock.setBadge(' ')
}

if(!win.isVisible()) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hovrly",
"productName": "Hovrly",
"version": "2.3.7",
"version": "2.3.8",
"description": "Best partner for disctributed teams",
"main": "app/index.js",
"scripts": {
Expand Down

0 comments on commit c11eda2

Please sign in to comment.