@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 kbd CSS for remarkup

Summary: Keyboard key CSS for Remarkup.

Test Plan:
edit test in html, see new CSS

{F1803550}

Reviewers: stratosgear, epriestley

Reviewed By: stratosgear, epriestley

Subscribers: stratosgear, Korvin

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

authored by

Chad Little and committed by
chad
9ced2d7e f82adbf0

+19 -3
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'ee3f9253', 10 + 'core.pkg.css' => '6791587e', 11 11 'core.pkg.js' => '1d376fa9', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '3fb7f532', ··· 105 105 'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 106 106 'rsrc/css/application/uiexample/example.css' => '528b19de', 107 107 'rsrc/css/core/core.css' => 'd0801452', 108 - 'rsrc/css/core/remarkup.css' => '5ed06ed8', 108 + 'rsrc/css/core/remarkup.css' => '9905d6c4', 109 109 'rsrc/css/core/syntax.css' => '769d3498', 110 110 'rsrc/css/core/z-index.css' => '2b01a823', 111 111 'rsrc/css/diviner/diviner-shared.css' => 'aa3656aa', ··· 792 792 'phabricator-object-selector-css' => '85ee8ce6', 793 793 'phabricator-phtize' => 'd254d646', 794 794 'phabricator-prefab' => 'cfd23f37', 795 - 'phabricator-remarkup-css' => '5ed06ed8', 795 + 'phabricator-remarkup-css' => '9905d6c4', 796 796 'phabricator-search-results-css' => '7dea472c', 797 797 'phabricator-shaped-request' => '7cbe244b', 798 798 'phabricator-slowvote-css' => 'a94b7230',
+16
webroot/rsrc/css/core/remarkup.css
··· 54 54 white-space: pre-wrap; 55 55 } 56 56 57 + .phabricator-remarkup kbd { 58 + display: inline-block; 59 + min-width: 1em; 60 + padding: 4px 5px 5px; 61 + font-weight: normal; 62 + font-size: 0.8rem; 63 + text-align: center; 64 + text-decoration: none; 65 + line-height: 0.6rem; 66 + border-radius: 3px; 67 + box-shadow: inset 0 -1px 0 rgba({$alphablue},0.08); 68 + user-select: none; 69 + background: #f7f7f7; 70 + border: 1px solid {$lightgreyborder}; 71 + } 72 + 57 73 .phabricator-remarkup pre.remarkup-counterexample { 58 74 background-color: {$sh-redbackground}; 59 75 }