From 80707d71d0fe0c636841d991725a7f1b332c6cef Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 12 Aug 2014 21:04:16 -0400 Subject: [PATCH] Minor UI fix and better logging when license cannot be found --- app.py | 2 +- static/css/quay.css | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 6a3d12b0d..78746fbcf 100644 --- a/app.py +++ b/app.py @@ -54,7 +54,7 @@ else: try: app.config.update(load_license(LICENSE_FILENAME)) except IOError: - raise RuntimeError('No license file found, please check your configuration') + raise RuntimeError('License file %s not found; please check your configuration' % LICENSE_FILENAME) if app.config.get('LICENSE_EXPIRATION', datetime.min) < datetime.utcnow(): raise RuntimeError('License has expired, please contact support@quay.io') diff --git a/static/css/quay.css b/static/css/quay.css index 32021ad7d..f25ee46d4 100644 --- a/static/css/quay.css +++ b/static/css/quay.css @@ -1390,6 +1390,10 @@ i.toggle-icon:hover { padding: 20px; } +.jumbotron { + background: transparent; +} + .jumbotron .disclaimer-link { font-size: .3em; vertical-align: 23px; @@ -1444,6 +1448,10 @@ i.toggle-icon:hover { background-size: auto, 100% 100%; } +.landing-page.signedin .landing-background { + background: transparent; +} + .landing-filter { z-index: 0;