1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 12:52:42 +01:00

Minor CSS tweaks to autocomplete

Summary: Tweaky

Test Plan:
Lots of testing projects and people

{F1065397}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D15070
This commit is contained in:
Chad Little 2016-01-20 13:30:34 -08:00
parent 92ee3e7642
commit e0fef74be7
2 changed files with 18 additions and 12 deletions

View file

@ -7,7 +7,7 @@
*/ */
return array( return array(
'names' => array( 'names' => array(
'core.pkg.css' => '39dc2caa', 'core.pkg.css' => '005bc22f',
'core.pkg.js' => '573e6664', 'core.pkg.js' => '573e6664',
'darkconsole.pkg.js' => 'e7393ebb', 'darkconsole.pkg.js' => 'e7393ebb',
'differential.pkg.css' => '2de124c9', 'differential.pkg.css' => '2de124c9',
@ -102,7 +102,7 @@ return array(
'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 'rsrc/css/application/tokens/tokens.css' => '3d0f239e',
'rsrc/css/application/uiexample/example.css' => '528b19de', 'rsrc/css/application/uiexample/example.css' => '528b19de',
'rsrc/css/core/core.css' => 'a76cefc9', 'rsrc/css/core/core.css' => 'a76cefc9',
'rsrc/css/core/remarkup.css' => 'b748dc17', 'rsrc/css/core/remarkup.css' => '64277c02',
'rsrc/css/core/syntax.css' => '9fd11da8', 'rsrc/css/core/syntax.css' => '9fd11da8',
'rsrc/css/core/z-index.css' => 'a36a45da', 'rsrc/css/core/z-index.css' => 'a36a45da',
'rsrc/css/diviner/diviner-shared.css' => 'aa3656aa', 'rsrc/css/diviner/diviner-shared.css' => 'aa3656aa',
@ -758,7 +758,7 @@ return array(
'phabricator-object-selector-css' => '85ee8ce6', 'phabricator-object-selector-css' => '85ee8ce6',
'phabricator-phtize' => 'd254d646', 'phabricator-phtize' => 'd254d646',
'phabricator-prefab' => 'e67df814', 'phabricator-prefab' => 'e67df814',
'phabricator-remarkup-css' => 'b748dc17', 'phabricator-remarkup-css' => '64277c02',
'phabricator-search-results-css' => '7dea472c', 'phabricator-search-results-css' => '7dea472c',
'phabricator-shaped-request' => '7cbe244b', 'phabricator-shaped-request' => '7cbe244b',
'phabricator-side-menu-view-css' => '3a3d9f41', 'phabricator-side-menu-view-css' => '3a3d9f41',

View file

@ -565,23 +565,25 @@ var.remarkup-assist-textarea {
.phuix-autocomplete { .phuix-autocomplete {
position: absolute; position: absolute;
width: 300px; width: 300px;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.300); box-shadow: {$dropshadow};
background: #ffffff; background: #ffffff;
border: 1px solid {$blueborder}; border: 1px solid {$lightgreyborder};
border-radius: 3px;
} }
.phuix-autocomplete-head { .phuix-autocomplete-head {
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
padding: 4px 8px; padding: 6px 8px;
background: {$lightgreybackground}; background: {$lightgreybackground};
color: {$greytext}; color: {$darkgreytext};
border-radius: 3px;
} }
.phuix-autocomplete-head .phui-icon-view { .phuix-autocomplete-head .phui-icon-view {
margin-right: 4px; margin-right: 4px;
color: {$greytext}; color: {$lightgreytext};
} }
.phuix-autocomplete-echo { .phuix-autocomplete-echo {
@ -591,22 +593,26 @@ var.remarkup-assist-textarea {
.phuix-autocomplete-list a.jx-result { .phuix-autocomplete-list a.jx-result {
display: block; display: block;
padding: 4px 8px; padding: 5px 8px;
font-size: {$normalfontsize}; font-size: {$normalfontsize};
border-top: 1px solid {$hoverborder}; border-top: 1px solid {$thinblueborder};
font-weight: bold;
color: {$darkgreytext}; color: {$darkgreytext};
} }
.phuix-autocomplete-list a.jx-result .phui-icon-view { .phuix-autocomplete-list a.jx-result .phui-icon-view {
margin-right: 4px; margin-right: 4px;
color: {$lightbluetext};
} }
.phuix-autocomplete-list a.jx-result:hover { .phuix-autocomplete-list a.jx-result:hover {
text-decoration: none; text-decoration: none;
background: {$hoverblue}; background: {$sh-bluebackground};
color: #000;
} }
.phuix-autocomplete-list a.jx-result.focused, .phuix-autocomplete-list a.jx-result.focused,
.phuix-autocomplete-list a.jx-result.focused:hover { .phuix-autocomplete-list a.jx-result.focused:hover {
background: {$hoverblue}; background: {$sh-bluebackground};
color: #000;
} }