Skip to content

Commit

Permalink
Merge pull request sidekiq#2328 from newdark/master
Browse files Browse the repository at this point in the history
Footer style fix sidekiq#2205
  • Loading branch information
davydovanton committed Apr 28, 2015
2 parents 1825f28 + 542b995 commit be10761
Showing 1 changed file with 30 additions and 8 deletions.
38 changes: 30 additions & 8 deletions web/assets/stylesheets/application.css
Expand Up @@ -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;
}
}

0 comments on commit be10761

Please sign in to comment.