1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Footer style fix #2205

Changed overflow from scroll to hidden

Revert Last commit

Corrected consistent spacing
This commit is contained in:
Brandt Lareau 2015-04-28 13:28:03 -05:00
parent 1825f28058
commit 542b9951d5

View file

@ -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;
}
}