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

Fix invalid CSS transition value for .jx-scrollbar-handle

Summary:
The W3C CSS validator throws `0 is not a transition value : opacity 0 linear`.
`0` is not a valid value; likely `0s` were meant as in other existing CSS definitions.
See https://developer.mozilla.org/en-US/docs/Web/CSS/transition

Test Plan: Paste `standard-page-view.css` into https://jigsaw.w3.org/css-validator/ and read some CSS docs.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25923

+7 -7
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '2f25eb4f', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '5eeca167', 12 + 'core.pkg.css' => '40c6f67d', 13 13 'core.pkg.js' => 'f58c3c6e', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'b343ce15', ··· 42 42 'rsrc/css/application/base/main-menu-view.css' => '741a6bba', 43 43 'rsrc/css/application/base/notification-menu.css' => '4df1ee30', 44 44 'rsrc/css/application/base/phui-theme.css' => '35883b37', 45 - 'rsrc/css/application/base/standard-page-view.css' => '392a0904', 45 + 'rsrc/css/application/base/standard-page-view.css' => '3ee36ff5', 46 46 'rsrc/css/application/conduit/conduit-api.css' => 'ce2cfc41', 47 47 'rsrc/css/application/config/config-options.css' => '16c920ae', 48 48 'rsrc/css/application/config/config-template.css' => '20babf50', ··· 805 805 'phabricator-shaped-request' => '995f5102', 806 806 'phabricator-slowvote-css' => '1694baed', 807 807 'phabricator-source-code-view-css' => 'e382316a', 808 - 'phabricator-standard-page-view' => '392a0904', 808 + 'phabricator-standard-page-view' => '3ee36ff5', 809 809 'phabricator-textareautils' => 'f340a484', 810 810 'phabricator-title' => '43bc9360', 811 811 'phabricator-tooltip' => '83754533',
+4 -4
webroot/rsrc/css/application/base/standard-page-view.css
··· 183 183 184 184 .jx-scrollbar-bar:hover .jx-scrollbar-handle { 185 185 opacity: 0.7; 186 - -webkit-transition: opacity 0 linear; 187 - -moz-transition: opacity 0 linear; 188 - -ms-transition: opacity 0 linear; 189 - transition: opacity 0 linear; 186 + -webkit-transition: opacity 0s linear; 187 + -moz-transition: opacity 0s linear; 188 + -ms-transition: opacity 0s linear; 189 + transition: opacity 0s linear; 190 190 } 191 191 192 192 .jx-scrollbar-bar .jx-scrollbar-visible {