aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-07-20 02:07:04 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-08-11 11:28:15 +0100
commit1c70da817b085707bee51529292d138c009f6069 (patch)
treeaf8f2444cf1d0e1cf856dc14b3f301c0bf674f53 /layerindex
parent4185d5c2d3047ac5411d15463681df97bca93d7c (diff)
downloadopenembedded-core-contrib-1c70da817b085707bee51529292d138c009f6069.tar.gz
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>
Diffstat (limited to 'layerindex')
-rw-r--r--layerindex/static/css/additional.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/layerindex/static/css/additional.css b/layerindex/static/css/additional.css
index a0795551b1..155154a143 100644
--- a/layerindex/static/css/additional.css
+++ b/layerindex/static/css/additional.css
@@ -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;
+}