Browse Source

Updater message at the bottom

pull/1680/merge
Ruud 12 years ago
parent
commit
39b1dedf12
  1. 2
      couchpotato/core/_base/updater/static/updater.js
  2. 19
      couchpotato/static/style/main.css

2
couchpotato/core/_base/updater/static/updater.js

@ -84,7 +84,7 @@ var UpdaterBase = new Class({
'click': self.doUpdate.bind(self) 'click': self.doUpdate.bind(self)
} }
}) })
).inject($(document.body).getElement('.header')) ).inject(document.body)
}, },
doUpdate: function(){ doUpdate: function(){

19
couchpotato/static/style/main.css

@ -464,19 +464,20 @@ body > .spinner, .mask{
text-align: center; text-align: center;
} }
.header .message.update { .message.update {
text-align: center; text-align: center;
position: relative; position: fixed;
top: -70px; padding: 10px;
padding: 2px 0;
background: #ff6134; background: #ff6134;
font-size: 12px; font-size: 15px;
border-radius: 0 0 5px 5px; bottom: 0;
box-shadow: 0 2px 1px rgba(0,0,0, 0.3); left: 0;
width: 100%;
z-index: 19;
} }
.header .message a { .message.update a {
padding: 0 10px; padding: 0 5px;
} }
/*** Global Styles ***/ /*** Global Styles ***/

Loading…
Cancel
Save