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

Basic style for exception page

Summary: Fixes T6846, cleans up spacing, makes it look scary red.

Test Plan: Fake an exception, see new layout

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6846

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

+13 -13
+2 -2
resources/celerity/map.php
··· 45 45 'rsrc/css/application/config/config-template.css' => '25d446d6', 46 46 'rsrc/css/application/config/config-welcome.css' => 'b0d16200', 47 47 'rsrc/css/application/config/setup-issue.css' => '8f852bc0', 48 - 'rsrc/css/application/config/unhandled-exception.css' => '38f08073', 48 + 'rsrc/css/application/config/unhandled-exception.css' => '37d4f9a2', 49 49 'rsrc/css/application/conpherence/menu.css' => 'e1e0fdf1', 50 50 'rsrc/css/application/conpherence/message-pane.css' => '042886d1', 51 51 'rsrc/css/application/conpherence/notification.css' => '04a6e10a', ··· 817 817 'sprite-tokens-css' => '1706b943', 818 818 'syntax-highlighting-css' => '56c1ba38', 819 819 'tokens-css' => '3d0f239e', 820 - 'unhandled-exception-css' => '38f08073', 820 + 'unhandled-exception-css' => '37d4f9a2', 821 821 ), 822 822 'requires' => array( 823 823 '00861799' => array(
+11 -11
webroot/rsrc/css/application/config/unhandled-exception.css
··· 2 2 * @provides unhandled-exception-css 3 3 */ 4 4 5 - .unhandled-exception { 6 - background: #222228; 7 - } 8 - 9 5 .unhandled-exception-detail { 10 6 max-width: 760px; 11 - margin: 16px auto; 12 - background: #f7f7f7; 13 - border: 2px solid #ffffff; 7 + margin: 24px auto; 8 + background: #fff; 9 + border: 1px solid #f4c6c6; 10 + border-bottom: 1px solid #eb9797; 14 11 } 15 12 16 13 .unhandled-exception-detail .unhandled-exception-title { 14 + color: #802b2b; 15 + text-shadow: 0 1px #fff; 16 + padding: 16px 12px; 17 + border-bottom: 1px solid #f4c6c6; 17 18 font-size: 15px; 18 19 font-weight: bold; 20 + background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAADwCAIAAABHUjkYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEpJREFUeNrs0TEKADAIBEER//9aa00bmzTGNNnrBhEO1ayxcJctKjUmmaf5a5tEtPazt/+67/Q/bvfr3nu6D8YYY4wxxvgfLwEGAIQkJawSMraKAAAAAElFTkSuQmCC'); 21 + background-repeat: repeat-x; 19 22 margin: 0; 20 - padding: 16px; 21 - background: #DFE0E2; 22 23 } 23 24 24 25 .unhandled-exception-detail .unhandled-exception-body { 25 - padding: 16px; 26 - color: #4B4D51; 26 + padding: 16px 12px; 27 27 }