Force scrollbar to always show to prevent page width changing

Having the page content dance about when switching between pages just
because one has a scrollbar and the other doesn't is annoying, so just
force the scrollbar to show all of the time to avoid this.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2013-07-20 02:07:04 +01:00
parent 4185d5c2d3
commit 1c70da817b
2 changed files with 7 additions and 1 deletions

1
TODO
View File

@ -14,7 +14,6 @@ Later:
* Show layer type in layer detail?
* Usage links in list page?
* Subdirs in list page?
* Avoid page content changing size depending on whether scrollbar is there or not?
* Query backend service? i.e. special URL to query information for external apps/scripts
* Add comparison to duplicates page
* Dynamic loading/filtering for recipes list

View File

@ -1,3 +1,7 @@
html {
overflow-y: scroll;
}
.top-padded {
padding-top: 65px;
}
@ -179,3 +183,6 @@ padding: 8px;
margin-top: 2px;
}
.breadcrumb {
background-color: transparent;
}