mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 00:32:42 +01:00
Fix icon color on project icon chooser
Summary: These colors are also off from the icon change. Test Plan: Project -> Manage -> Edit Picture -> Choose Icon Reviewers: epriestley, 20after4 Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17328
This commit is contained in:
parent
3b558d7dd0
commit
7d0d4708ca
2 changed files with 10 additions and 10 deletions
|
@ -82,7 +82,7 @@ return array(
|
|||
'rsrc/css/application/owners/owners-path-editor.css' => '2f00933b',
|
||||
'rsrc/css/application/paste/paste.css' => '1898e534',
|
||||
'rsrc/css/application/people/people-picture-menu-item.css' => 'a06f7f34',
|
||||
'rsrc/css/application/people/people-profile.css' => '2473d929',
|
||||
'rsrc/css/application/people/people-profile.css' => '4df76faf',
|
||||
'rsrc/css/application/phame/phame.css' => '53fa6236',
|
||||
'rsrc/css/application/pholio/pholio-edit.css' => '07676f51',
|
||||
'rsrc/css/application/pholio/pholio-inline-comments.css' => '8e545e49',
|
||||
|
@ -779,7 +779,7 @@ return array(
|
|||
'paste-css' => '1898e534',
|
||||
'path-typeahead' => 'f7fc67ec',
|
||||
'people-picture-menu-item-css' => 'a06f7f34',
|
||||
'people-profile-css' => '2473d929',
|
||||
'people-profile-css' => '4df76faf',
|
||||
'phabricator-action-list-view-css' => 'f980c059',
|
||||
'phabricator-busy' => '59a7976a',
|
||||
'phabricator-chatlog-css' => 'd295b020',
|
||||
|
|
|
@ -15,7 +15,7 @@ button.profile-image-button {
|
|||
.compose-dialog button.profile-image-button-selected {
|
||||
background-image: none;
|
||||
background-color: {$lightblue};
|
||||
border-color: {$blueborder};
|
||||
border-color: {$sky};
|
||||
}
|
||||
|
||||
.compose-header {
|
||||
|
@ -32,17 +32,17 @@ form.compose-dialog {
|
|||
.compose-dialog .phui-icon-view {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background-color: {$darkgreytext};
|
||||
}
|
||||
|
||||
.compose-dialog .compose-icon-bg {
|
||||
color: rgba({$alphawhite},0.8);
|
||||
line-height: 50px;
|
||||
width: 50px;
|
||||
.compose-dialog .compose-icon-bg.phui-icon-view {
|
||||
color: #e7e7e7;
|
||||
line-height: 48px;
|
||||
width: 48px;
|
||||
text-align: center;
|
||||
font-size: 32px;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.compose-dialog .compose-background-red {
|
||||
|
|
Loading…
Reference in a new issue