Fix invalid CSS border-left-color value for .phabricator-action-view-submenu .caret-right
Summary: The W3C CSS validator throws `Value Error : border-left-color Too many values or values are not recognized : 71,87,120`. The value lacks `rgb()` wrapping. See other lines in the same CSS file. Test Plan: Paste celerity processed `phui-action-list.css` into https://jigsaw.w3.org/css-validator/; look at the browser console while editing a task. 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/D25925
This commit is contained in:
parent
56797b17ed
commit
633d4037e5
|
@ -9,7 +9,7 @@ return array(
|
|||
'names' => array(
|
||||
'conpherence.pkg.css' => '2f25eb4f',
|
||||
'conpherence.pkg.js' => '020aebcf',
|
||||
'core.pkg.css' => '40c6f67d',
|
||||
'core.pkg.css' => 'be74e96c',
|
||||
'core.pkg.js' => 'f58c3c6e',
|
||||
'dark-console.pkg.js' => '187792c2',
|
||||
'differential.pkg.css' => 'b343ce15',
|
||||
|
@ -135,7 +135,7 @@ return array(
|
|||
'rsrc/css/phui/object-item/phui-oi-flush-ui.css' => '490e2e2e',
|
||||
'rsrc/css/phui/object-item/phui-oi-list-view.css' => '9275ff55',
|
||||
'rsrc/css/phui/object-item/phui-oi-simple-ui.css' => '9b03a61f',
|
||||
'rsrc/css/phui/phui-action-list.css' => '1b0085b2',
|
||||
'rsrc/css/phui/phui-action-list.css' => 'd26ccb62',
|
||||
'rsrc/css/phui/phui-action-panel.css' => '6c386cbf',
|
||||
'rsrc/css/phui/phui-badge.css' => 'c4ef4923',
|
||||
'rsrc/css/phui/phui-basic-nav-view.css' => 'a5693cf0',
|
||||
|
@ -768,7 +768,7 @@ return array(
|
|||
'path-typeahead' => 'ad486db3',
|
||||
'people-picture-menu-item-css' => 'fe8e07cf',
|
||||
'people-profile-css' => '2ea2daa1',
|
||||
'phabricator-action-list-view-css' => '1b0085b2',
|
||||
'phabricator-action-list-view-css' => 'd26ccb62',
|
||||
'phabricator-busy' => '5202e831',
|
||||
'phabricator-content-source-view-css' => 'cdf0d579',
|
||||
'phabricator-core-css' => '531ad849',
|
||||
|
|
|
@ -192,7 +192,7 @@
|
|||
position: absolute;
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
border-left-color: {$alphablue};
|
||||
border-left-color: rgb({$alphablue});
|
||||
}
|
||||
|
||||
.phabricator-action-view-submenu .caret {
|
||||
|
|
Loading…
Reference in a new issue