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

Merge pull request #2328 from newdark/master

Footer style fix #2205
This commit is contained in:
Anton Davydov 2015-04-28 22:25:28 +03:00
commit be10761693

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