mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 14:00:56 +01:00
Fix Firefox select dropdowns, maybe
Summary: Fixes T12930. I can't verify this fix, but the colors here work in light/dark mode correctly. Test Plan: Wait for @cspeckmim to verify Reviewers: epriestley, cspeckmim Reviewed By: cspeckmim Subscribers: cspeckmim, Korvin Maniphest Tasks: T12930 Differential Revision: https://secure.phabricator.com/D18286
This commit is contained in:
parent
e47f85cd98
commit
a7121f022f
2 changed files with 4 additions and 5 deletions
|
@ -9,7 +9,7 @@ return array(
|
||||||
'names' => array(
|
'names' => array(
|
||||||
'conpherence.pkg.css' => 'e68cf1fa',
|
'conpherence.pkg.css' => 'e68cf1fa',
|
||||||
'conpherence.pkg.js' => 'b5b51108',
|
'conpherence.pkg.js' => 'b5b51108',
|
||||||
'core.pkg.css' => 'c0a7ecfd',
|
'core.pkg.css' => 'd6046dd9',
|
||||||
'core.pkg.js' => '5d80e0db',
|
'core.pkg.js' => '5d80e0db',
|
||||||
'darkconsole.pkg.js' => '1f9a31bc',
|
'darkconsole.pkg.js' => '1f9a31bc',
|
||||||
'differential.pkg.css' => '45951e9e',
|
'differential.pkg.css' => '45951e9e',
|
||||||
|
@ -156,7 +156,7 @@ return array(
|
||||||
'rsrc/css/phui/phui-feed-story.css' => '44a9c8e9',
|
'rsrc/css/phui/phui-feed-story.css' => '44a9c8e9',
|
||||||
'rsrc/css/phui/phui-fontkit.css' => '1320ed01',
|
'rsrc/css/phui/phui-fontkit.css' => '1320ed01',
|
||||||
'rsrc/css/phui/phui-form-view.css' => '6175808d',
|
'rsrc/css/phui/phui-form-view.css' => '6175808d',
|
||||||
'rsrc/css/phui/phui-form.css' => 'efa86a27',
|
'rsrc/css/phui/phui-form.css' => '7aaa04e3',
|
||||||
'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f',
|
'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f',
|
||||||
'rsrc/css/phui/phui-header-view.css' => 'e7de7ee2',
|
'rsrc/css/phui/phui-header-view.css' => 'e7de7ee2',
|
||||||
'rsrc/css/phui/phui-hovercard.css' => 'f0592bcf',
|
'rsrc/css/phui/phui-hovercard.css' => 'f0592bcf',
|
||||||
|
@ -843,7 +843,7 @@ return array(
|
||||||
'phui-feed-story-css' => '44a9c8e9',
|
'phui-feed-story-css' => '44a9c8e9',
|
||||||
'phui-font-icon-base-css' => '870a7360',
|
'phui-font-icon-base-css' => '870a7360',
|
||||||
'phui-fontkit-css' => '1320ed01',
|
'phui-fontkit-css' => '1320ed01',
|
||||||
'phui-form-css' => 'efa86a27',
|
'phui-form-css' => '7aaa04e3',
|
||||||
'phui-form-view-css' => '6175808d',
|
'phui-form-view-css' => '6175808d',
|
||||||
'phui-head-thing-view-css' => 'fd311e5f',
|
'phui-head-thing-view-css' => 'fd311e5f',
|
||||||
'phui-header-view-css' => 'e7de7ee2',
|
'phui-header-view-css' => 'e7de7ee2',
|
||||||
|
|
|
@ -22,7 +22,7 @@ div.jx-tokenizer-container {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
color: {$darkbluetext};
|
color: inherit;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
font: {$basefont};
|
font: {$basefont};
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
|
@ -108,7 +108,6 @@ select {
|
||||||
background: {$page.content} url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC") no-repeat right 8px center;
|
background: {$page.content} url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC") no-repeat right 8px center;
|
||||||
background-size: 8px 10px;
|
background-size: 8px 10px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
color: {$darkbluetext};
|
|
||||||
border: 1px solid {$greyborder};
|
border: 1px solid {$greyborder};
|
||||||
height: 30px;
|
height: 30px;
|
||||||
padding: 0 24px 0 8px;
|
padding: 0 24px 0 8px;
|
||||||
|
|
Loading…
Reference in a new issue