From 8fd0ef727c7552d431603109c9a1a9a064ba3e2c Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Fri, 5 Feb 2016 06:09:08 +0100 Subject: fixed login screen after bootstrap upgrade diff --git a/www/img/helsinki-small.png b/www/img/helsinki-small.png new file mode 100644 index 0000000..05161fb Binary files /dev/null and b/www/img/helsinki-small.png differ diff --git a/www/index.html b/www/index.html index 706a190..5b5800d 100644 --- a/www/index.html +++ b/www/index.html @@ -8,7 +8,7 @@ - + @@ -37,12 +37,15 @@
- radio helsinki logo + radio helsinki logo + + +

Radio Helsinki - Import

- +
diff --git a/www/js/utils.js b/www/js/utils.js index b8bfee7..1359b39 100644 --- a/www/js/utils.js +++ b/www/js/utils.js @@ -26,14 +26,17 @@ var Rivendell = Rivendell || {}; var alertbox = function() {} alertbox.warning = function (dest, heading, message) { - $('#' + dest + ' .alertbox').html('
×

' + heading + '

' + message + '
'); + $('#' + dest + ' .alertbox').html('
×

' + heading + '

' + message + '
'); } alertbox.error = function (dest, heading, message) { - $('#' + dest + ' .alertbox').html('
×

' + heading + '

' + message + '
'); + $('#' + dest + ' .alertbox').html('
×

' + heading + '

' + message + '
'); } alertbox.info = function (dest, heading, message) { $('#' + dest + ' .alertbox').html('
×

' + heading + '

' + message + '
'); } +alertbox.success = function (dest, heading, message) { + $('#' + dest + ' .alertbox').html('
×

' + heading + '

' + message + '
'); +} Number.prototype.pad = function(size) { var s = String(this); diff --git a/www/styles/auth.css b/www/styles/auth.css index eaf4233..80af96c 100644 --- a/www/styles/auth.css +++ b/www/styles/auth.css @@ -20,8 +20,13 @@ * along with rhwebimport. If not, see . */ + +.loginspacer { + padding-top: 30px; +} + .form-auth { - max-width: 330px; + max-width: 400px; padding: 15px; margin: 0 auto; } diff --git a/www/styles/main-style.css b/www/styles/main-style.css index 443d68e..319fb37 100644 --- a/www/styles/main-style.css +++ b/www/styles/main-style.css @@ -22,8 +22,10 @@ body { background-color: #eee; - padding-top: 60px; - padding-bottom: 40px; +} + +#mainwindow { + padding-top: 70px; } .container.fullWidth { -- cgit v0.10.2