mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 19:40:55 +01:00
Fix 'Not Done' button hover state on inline comments
Summary: This rule was missing. Test Plan: Test a comment where "Not Done" was present. Hover over button, it doesn't change. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12193
This commit is contained in:
parent
a909b48d15
commit
43be66d8b9
2 changed files with 11 additions and 3 deletions
|
@ -57,7 +57,7 @@ return array(
|
|||
'rsrc/css/application/differential/add-comment.css' => 'c47f8c40',
|
||||
'rsrc/css/application/differential/changeset-view.css' => 'f36406b1',
|
||||
'rsrc/css/application/differential/core.css' => '7ac3cabc',
|
||||
'rsrc/css/application/differential/phui-inline-comment.css' => '0cdae426',
|
||||
'rsrc/css/application/differential/phui-inline-comment.css' => '7277be53',
|
||||
'rsrc/css/application/differential/results-table.css' => '181aa9d9',
|
||||
'rsrc/css/application/differential/revision-comment.css' => '024dda6b',
|
||||
'rsrc/css/application/differential/revision-history.css' => '0e8eb855',
|
||||
|
@ -790,7 +790,7 @@ return array(
|
|||
'phui-image-mask-css' => '5a8b09c8',
|
||||
'phui-info-panel-css' => '27ea50a1',
|
||||
'phui-info-view-css' => 'c6f0aef8',
|
||||
'phui-inline-comment-view-css' => '0cdae426',
|
||||
'phui-inline-comment-view-css' => '7277be53',
|
||||
'phui-list-view-css' => '2e25ebfb',
|
||||
'phui-object-box-css' => 'd68ce5dc',
|
||||
'phui-object-item-list-view-css' => '9db65899',
|
||||
|
|
|
@ -273,7 +273,7 @@
|
|||
color: {$sky};
|
||||
}
|
||||
|
||||
.differential-inline-comment.inline-state-is-draft
|
||||
.device-desktop .differential-inline-comment.inline-state-is-draft
|
||||
.button-not-done:hover {
|
||||
color: {$lightgreytext} !important;
|
||||
background-color: transparent;
|
||||
|
@ -281,6 +281,14 @@
|
|||
cursor: auto;
|
||||
}
|
||||
|
||||
.device-desktop .differential-inline-comment .differential-inline-comment-head
|
||||
.simple.button.button-not-done:hover {
|
||||
color: {$sh-yellowicon};
|
||||
background-color: transparent;
|
||||
border-color: {$sh-yellowborder};
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.differential-inline-comment.inline-is-done .differential-inline-comment-head
|
||||
.button.simple.button-done {
|
||||
background-color: #fff;
|
||||
|
|
Loading…
Reference in a new issue