From 542b9951d5223e8ab20158504cc883b6241634ee Mon Sep 17 00:00:00 2001
From: Brandt Lareau <brandt.lareau@rackspace.com>
Date: Tue, 28 Apr 2015 13:28:03 -0500
Subject: [PATCH] Footer style fix #2205

Changed overflow from scroll to hidden

Revert Last commit

Corrected consistent spacing
---
 web/assets/stylesheets/application.css | 38 ++++++++++++++++++++------
 1 file changed, 30 insertions(+), 8 deletions(-)

diff --git a/web/assets/stylesheets/application.css b/web/assets/stylesheets/application.css
index 95e407c7..6289a712 100755
--- a/web/assets/stylesheets/application.css
+++ b/web/assets/stylesheets/application.css
@@ -738,14 +738,36 @@ div.interval-slider input {
   }
 }
 
-.redis-url
-{
-    max-width: 400px;
-    overflow: hidden;
+.redis-url, .redis-namespace {
+  overflow: scroll;
+  white-space: nowrap;
 }
 
-.redis-namespace
-{
-    max-width: 250px;
-    overflow: hidden;
+@media (min-width: 768px) {
+  .redis-url {
+    max-width: 200px;
+  }
+
+  .redis-namespace {
+    max-width: 150px;
+  }
+}
+
+@media (min-width: 992px) {
+  .redis-url {
+    max-width: 340px;
+  }
+
+  .redis-namespace {
+    max-width: 350px;
+  }
+}
+@media (min-width: 1200px) {
+  .redis-url {
+    max-width: 540px;
+  }
+
+  .redis-namespace {
+    max-width: 350px;
+  }
 }