Skip to content

Commit 7cffe55

Browse files
committed
Fix hovercard background color when using Dark Mode
Summary: This CSS fix replaces the disabled hovercard hard coded white background color value by the page.content CSS variable. Fix : T15056 Test Plan: - Flush all Phorge caches - Sign in - Open any page including a reference to a closed manifest (https://we.phorge.it/D25395) - Mouve the mouse over the closed manifest reference - Check that hovercard background color is consistent with the theme. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25402
1 parent 747d7db commit 7cffe55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webroot/rsrc/css/phui/phui-hovercard.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
}
114114

115115
.hovercard-task-view .phui-oi-disabled.phui-workcard {
116-
background-color: #fff;
116+
background-color: {$page.content};
117117
}
118118

119119
.phui-hovercard-object-type {

0 commit comments

Comments
 (0)