Revert "Remove position: absolute
and z-index from #p-logo"
Caused the logo (which is a link to the main page) to become unclickable.
This reverts commit 909aed33cb
.
Bug: T171195
Change-Id: I3e215ef493568222bd4c2e0dbffc0da74241673a
This commit is contained in:
parent
909aed33cb
commit
123375a84b
1 changed files with 8 additions and 1 deletions
9
main.css
9
main.css
|
@ -28,6 +28,10 @@ div#column-content {
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#column-one {
|
||||||
|
padding-top: 160px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Hide, but keep accessible for screen-readers */
|
/* Hide, but keep accessible for screen-readers */
|
||||||
#column-one h2 {
|
#column-one h2 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -208,8 +212,11 @@ table.rimage {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#p-logo {
|
#p-logo {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
position: absolute; /*needed to use z-index */
|
||||||
|
z-index: 3;
|
||||||
height: 155px;
|
height: 155px;
|
||||||
margin-bottom: 5px;
|
|
||||||
width: 12em;
|
width: 12em;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue