@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+18 -12
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '39dc2caa', 10 + 'core.pkg.css' => '005bc22f', 11 11 'core.pkg.js' => '573e6664', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '2de124c9', ··· 102 102 'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 103 103 'rsrc/css/application/uiexample/example.css' => '528b19de', 104 104 'rsrc/css/core/core.css' => 'a76cefc9', 105 - 'rsrc/css/core/remarkup.css' => 'b748dc17', 105 + 'rsrc/css/core/remarkup.css' => '64277c02', 106 106 'rsrc/css/core/syntax.css' => '9fd11da8', 107 107 'rsrc/css/core/z-index.css' => 'a36a45da', 108 108 'rsrc/css/diviner/diviner-shared.css' => 'aa3656aa', ··· 758 758 'phabricator-object-selector-css' => '85ee8ce6', 759 759 'phabricator-phtize' => 'd254d646', 760 760 'phabricator-prefab' => 'e67df814', 761 - 'phabricator-remarkup-css' => 'b748dc17', 761 + 'phabricator-remarkup-css' => '64277c02', 762 762 'phabricator-search-results-css' => '7dea472c', 763 763 'phabricator-shaped-request' => '7cbe244b', 764 764 'phabricator-side-menu-view-css' => '3a3d9f41',
+15 -9
webroot/rsrc/css/core/remarkup.css
··· 565 565 .phuix-autocomplete { 566 566 position: absolute; 567 567 width: 300px; 568 - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.300); 568 + box-shadow: {$dropshadow}; 569 569 background: #ffffff; 570 - border: 1px solid {$blueborder}; 570 + border: 1px solid {$lightgreyborder}; 571 + border-radius: 3px; 571 572 } 572 573 573 574 .phuix-autocomplete-head { 574 575 white-space: nowrap; 575 576 overflow: hidden; 576 577 text-overflow: ellipsis; 577 - padding: 4px 8px; 578 + padding: 6px 8px; 578 579 background: {$lightgreybackground}; 579 - color: {$greytext}; 580 + color: {$darkgreytext}; 581 + border-radius: 3px; 580 582 } 581 583 582 584 .phuix-autocomplete-head .phui-icon-view { 583 585 margin-right: 4px; 584 - color: {$greytext}; 586 + color: {$lightgreytext}; 585 587 } 586 588 587 589 .phuix-autocomplete-echo { ··· 591 593 592 594 .phuix-autocomplete-list a.jx-result { 593 595 display: block; 594 - padding: 4px 8px; 596 + padding: 5px 8px; 595 597 font-size: {$normalfontsize}; 596 - border-top: 1px solid {$hoverborder}; 598 + border-top: 1px solid {$thinblueborder}; 599 + font-weight: bold; 597 600 color: {$darkgreytext}; 598 601 } 599 602 600 603 .phuix-autocomplete-list a.jx-result .phui-icon-view { 601 604 margin-right: 4px; 605 + color: {$lightbluetext}; 602 606 } 603 607 604 608 .phuix-autocomplete-list a.jx-result:hover { 605 609 text-decoration: none; 606 - background: {$hoverblue}; 610 + background: {$sh-bluebackground}; 611 + color: #000; 607 612 } 608 613 609 614 .phuix-autocomplete-list a.jx-result.focused, 610 615 .phuix-autocomplete-list a.jx-result.focused:hover { 611 - background: {$hoverblue}; 616 + background: {$sh-bluebackground}; 617 + color: #000; 612 618 }