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:
parent
1825f28058
commit
542b9951d5
1 changed files with 30 additions and 8 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue