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

Standard colors on config-tables

Summary: Moving standard colors in some new places, going well so far.

Test Plan: reload page

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: Korvin, aran

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

+10 -8
+1 -1
src/__celerity_resource_map__.php
··· 963 963 ), 964 964 'config-options-css' => 965 965 array( 966 - 'uri' => '/res/39061c0e/rsrc/css/application/config/config-options.css', 966 + 'uri' => '/res/cbef6aae/rsrc/css/application/config/config-options.css', 967 967 'type' => 'css', 968 968 'requires' => 969 969 array(
+9 -7
webroot/rsrc/css/application/config/config-options.css
··· 5 5 .config-option-table { 6 6 width: 100%; 7 7 border-collapse: collapse; 8 - border: 1px solid #cccccc; 8 + border: 1px solid {$lightgreyborder}; 9 9 background: #fff; 10 10 } 11 11 12 12 .config-option-table th, 13 13 .config-option-table td { 14 14 padding: 4px 12px; 15 - border: 1px solid #cccccc; 15 + border: 1px solid {$lightgreyborder}; 16 16 } 17 17 18 18 .config-option-table th { 19 - background: #e9e9e9; 19 + background: {$lightgreybackground}; 20 + color: {$bluetext}; 20 21 text-align: right; 21 22 white-space: nowrap; 22 23 } 23 24 24 - .config-option-table th em { 25 + .config-option-table th em, 26 + .config-option-table td em { 25 27 font-weight: normal; 26 28 color: {$greytext}; 27 29 } 28 30 29 31 .config-option-table td { 30 - color: #333333; 32 + color: {$darkgreytext}; 31 33 width: 100%; 32 34 } 33 35 34 36 .config-option-table .column-labels th { 35 37 font-weight: bold; 36 - color: #333333; 38 + color: {$bluetext}; 37 39 text-align: center; 38 - background: #e0e0e0; 40 + background: {$greybackground}; 39 41 } 40 42 41 43 .config-options-current-value {