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:
parent
92ee3e7642
commit
e0fef74be7
2 changed files with 18 additions and 12 deletions
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
return array(
|
||||
'names' => array(
|
||||
'core.pkg.css' => '39dc2caa',
|
||||
'core.pkg.css' => '005bc22f',
|
||||
'core.pkg.js' => '573e6664',
|
||||
'darkconsole.pkg.js' => 'e7393ebb',
|
||||
'differential.pkg.css' => '2de124c9',
|
||||
|
@ -102,7 +102,7 @@ return array(
|
|||
'rsrc/css/application/tokens/tokens.css' => '3d0f239e',
|
||||
'rsrc/css/application/uiexample/example.css' => '528b19de',
|
||||
'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/z-index.css' => 'a36a45da',
|
||||
'rsrc/css/diviner/diviner-shared.css' => 'aa3656aa',
|
||||
|
@ -758,7 +758,7 @@ return array(
|
|||
'phabricator-object-selector-css' => '85ee8ce6',
|
||||
'phabricator-phtize' => 'd254d646',
|
||||
'phabricator-prefab' => 'e67df814',
|
||||
'phabricator-remarkup-css' => 'b748dc17',
|
||||
'phabricator-remarkup-css' => '64277c02',
|
||||
'phabricator-search-results-css' => '7dea472c',
|
||||
'phabricator-shaped-request' => '7cbe244b',
|
||||
'phabricator-side-menu-view-css' => '3a3d9f41',
|
||||
|
|
|
@ -565,23 +565,25 @@ var.remarkup-assist-textarea {
|
|||
.phuix-autocomplete {
|
||||
position: absolute;
|
||||
width: 300px;
|
||||
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.300);
|
||||
box-shadow: {$dropshadow};
|
||||
background: #ffffff;
|
||||
border: 1px solid {$blueborder};
|
||||
border: 1px solid {$lightgreyborder};
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.phuix-autocomplete-head {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
padding: 4px 8px;
|
||||
padding: 6px 8px;
|
||||
background: {$lightgreybackground};
|
||||
color: {$greytext};
|
||||
color: {$darkgreytext};
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.phuix-autocomplete-head .phui-icon-view {
|
||||
margin-right: 4px;
|
||||
color: {$greytext};
|
||||
color: {$lightgreytext};
|
||||
}
|
||||
|
||||
.phuix-autocomplete-echo {
|
||||
|
@ -591,22 +593,26 @@ var.remarkup-assist-textarea {
|
|||
|
||||
.phuix-autocomplete-list a.jx-result {
|
||||
display: block;
|
||||
padding: 4px 8px;
|
||||
padding: 5px 8px;
|
||||
font-size: {$normalfontsize};
|
||||
border-top: 1px solid {$hoverborder};
|
||||
border-top: 1px solid {$thinblueborder};
|
||||
font-weight: bold;
|
||||
color: {$darkgreytext};
|
||||
}
|
||||
|
||||
.phuix-autocomplete-list a.jx-result .phui-icon-view {
|
||||
margin-right: 4px;
|
||||
color: {$lightbluetext};
|
||||
}
|
||||
|
||||
.phuix-autocomplete-list a.jx-result:hover {
|
||||
text-decoration: none;
|
||||
background: {$hoverblue};
|
||||
background: {$sh-bluebackground};
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.phuix-autocomplete-list a.jx-result.focused,
|
||||
.phuix-autocomplete-list a.jx-result.focused:hover {
|
||||
background: {$hoverblue};
|
||||
background: {$sh-bluebackground};
|
||||
color: #000;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue