mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix "Phabricator" logo hover state in Firefox
Summary: For some reason, Webkit parses the completely made-up "background-position-y" property. Firefox does not. Use a real property instead of a creative one that doesn't exist. Test Plan: Hovered over "Phabricator" logo in Firefox, Safari. Reviewed By: codeblock Reviewers: codeblock, aran, jungejason, tuomaspelkonen CC: aran, codeblock Differential Revision: 484
This commit is contained in:
parent
25bbe741f4
commit
27967aa66a
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@
|
|||
}
|
||||
|
||||
.phabricator-logo a:hover {
|
||||
background-position-y: -40px;
|
||||
background-position: 0 -40px;
|
||||
}
|
||||
|
||||
.phabricator-primary-navigation td {
|
||||
|
|
Loading…
Reference in a new issue