diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2011-12-08 22:49:24 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2011-12-08 22:49:24 +0100 |
commit | 6b9320eab2e848a2b2ac2f454af939f467f3d738 (patch) | |
tree | fb0f29edc6e03bdc5e9180caeceafe3824c0ad7d /skins/custom | |
parent | 91f7bb260df5cee55f05c15ee5900323964809da (diff) | |
download | bugzilla-6b9320eab2e848a2b2ac2f454af939f467f3d738.tar.gz bugzilla-6b9320eab2e848a2b2ac2f454af939f467f3d738.tar.xz |
Fixed index.html to display icons correctly
Diffstat (limited to 'skins/custom')
-rw-r--r-- | skins/custom/index.css | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/skins/custom/index.css b/skins/custom/index.css index 3c1db9340..0c6884124 100644 --- a/skins/custom/index.css +++ b/skins/custom/index.css @@ -4,8 +4,28 @@ */ /* index.html.tmpl puts intro hook contents inside a div which causes - * * the icons to display over two rows when adding the Help icon. - * * So we change to inline to make it display a single row. */ + * the icons to display over two rows when adding the Help icon. + * So we change to inline to make it display a single row. */ #page-index .intro { display: inline; } #get_help { background: url(../standard/index/help.png) no-repeat; } + +.bz_common_actions { + display: block; + height: 170px; + width: 145px; + float: left; + margin: 0 2ex 2em 0; + text-align: center; +} +.bz_common_actions span { + position: relative; + top: 95%; + font-weight: bold; +} +.bz_common_actions, +.bz_common_actions:visited, +.bz_common_actions:hover +{ + text-decoration: none; +} |