@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.

Clean up SIMPLE button styles

Summary: Some of these are unused, defaults to a lighter color naturally.

Test Plan: uiexamples, grep, phriction

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D18020

+13 -18
+5 -5
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'ff161f2d', 11 11 'conpherence.pkg.js' => 'b5b51108', 12 - 'core.pkg.css' => 'd556e3e2', 12 + 'core.pkg.css' => '2c6a5ba4', 13 13 'core.pkg.js' => '21d34805', 14 14 'darkconsole.pkg.js' => '1f9a31bc', 15 15 'differential.pkg.css' => '7d4cfa59', ··· 140 140 'rsrc/css/phui/phui-basic-nav-view.css' => 'a0705f53', 141 141 'rsrc/css/phui/phui-big-info-view.css' => 'bd903741', 142 142 'rsrc/css/phui/phui-box.css' => '269cbc99', 143 - 'rsrc/css/phui/phui-button.css' => '8d23596a', 143 + 'rsrc/css/phui/phui-button.css' => 'ccd8c6c5', 144 144 'rsrc/css/phui/phui-chart.css' => '6bf6f78e', 145 145 'rsrc/css/phui/phui-cms.css' => '504b4b23', 146 146 'rsrc/css/phui/phui-comment-form.css' => '57af2e14', 147 147 'rsrc/css/phui/phui-comment-panel.css' => 'f50152ad', 148 148 'rsrc/css/phui/phui-crumbs-view.css' => '6ece3bbb', 149 149 'rsrc/css/phui/phui-curtain-view.css' => '55dd0e59', 150 - 'rsrc/css/phui/phui-document-pro.css' => '62c4dcbf', 150 + 'rsrc/css/phui/phui-document-pro.css' => '58199f99', 151 151 'rsrc/css/phui/phui-document-summary.css' => '9ca48bdf', 152 152 'rsrc/css/phui/phui-document.css' => 'c32e8dec', 153 153 'rsrc/css/phui/phui-feed-story.css' => '44a9c8e9', ··· 838 838 'phui-basic-nav-view-css' => 'a0705f53', 839 839 'phui-big-info-view-css' => 'bd903741', 840 840 'phui-box-css' => '269cbc99', 841 - 'phui-button-css' => '8d23596a', 841 + 'phui-button-css' => 'ccd8c6c5', 842 842 'phui-calendar-css' => '477acfaa', 843 843 'phui-calendar-day-css' => '572b1893', 844 844 'phui-calendar-list-css' => '576be600', ··· 851 851 'phui-curtain-view-css' => '55dd0e59', 852 852 'phui-document-summary-view-css' => '9ca48bdf', 853 853 'phui-document-view-css' => 'c32e8dec', 854 - 'phui-document-view-pro-css' => '62c4dcbf', 854 + 'phui-document-view-pro-css' => '58199f99', 855 855 'phui-feed-story-css' => '44a9c8e9', 856 856 'phui-font-icon-base-css' => '870a7360', 857 857 'phui-fontkit-css' => '1320ed01',
-3
src/applications/uiexample/examples/PHUIButtonExample.php
··· 131 131 ); 132 132 $colors = array( 133 133 PHUIButtonView::SIMPLE, 134 - PHUIButtonView::SIMPLE_YELLOW, 135 - PHUIButtonView::SIMPLE_GREY, 136 - PHUIButtonView::SIMPLE_BLUE, 137 134 ); 138 135 $column = array(); 139 136 foreach ($colors as $color) {
-4
src/view/phui/PHUIButtonView.php
··· 5 5 const GREEN = 'green'; 6 6 const GREY = 'grey'; 7 7 const DISABLED = 'disabled'; 8 - 9 8 const SIMPLE = 'simple'; 10 - const SIMPLE_YELLOW = 'simple simple-yellow'; 11 - const SIMPLE_GREY = 'simple simple-grey'; 12 - const SIMPLE_BLUE = 'simple simple-blue'; 13 9 14 10 const SMALL = 'small'; 15 11 const BIG = 'big';
+5 -5
webroot/rsrc/css/phui/phui-button.css
··· 91 91 a.simple, 92 92 a.simple:visited { 93 93 background: #fff; 94 - color: {$blue}; 95 - border: 1px solid {$blue}; 94 + color: {$bluetext}; 95 + border: 1px solid {$lightblueborder}; 96 96 } 97 97 98 98 a.simple.current { ··· 103 103 input[type="submit"].simple .phui-icon-view, 104 104 a.simple .phui-icon-view, 105 105 a.simple:visited .phui-icon-view { 106 - color: {$blue}; 106 + color: {$lightbluetext}; 107 107 } 108 108 109 109 a.disabled, ··· 145 145 146 146 a.button.simple:hover, 147 147 button.simple:hover { 148 - background-color: {$blue}; 148 + background-color: {$lightblue}; 149 149 background-image: linear-gradient(to bottom, {$blue}, {$blue}); 150 150 color: #fff; 151 - transition: 0.1s; 151 + transition: 0s; 152 152 } 153 153 154 154 a.button.simple:hover .phui-icon-view,
+3 -1
webroot/rsrc/css/phui/phui-document-pro.css
··· 75 75 display: inline-block; 76 76 height: 16px; 77 77 width: 20px; 78 - padding: 3px 8px 4px 8px; 78 + padding-left: 8px; 79 + padding-right: 8px; 79 80 } 80 81 81 82 .phui-document-view-pro .phui-document-toc-list { ··· 105 106 106 107 .phui-document-toc-open .phui-document-toc { 107 108 background-color: {$blue}; 109 + border-color: {$blue}; 108 110 } 109 111 110 112 .phui-document-toc-open .phui-document-toc .phui-icon-view {