mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Add some spacing around jx-tooltips
Summary: Using tooltips with icons is problematic because we currently draw the arrow after the tooltip location, meaning it goes 5px into the container. This gives a 5px padding around the outer container to better account for this. Test Plan: tested tooltips in remarkup bar, project icon nav, and in durable column. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12184
This commit is contained in:
parent
52a4c821f5
commit
90ccd37a8c
2 changed files with 4 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
||||||
*/
|
*/
|
||||||
return array(
|
return array(
|
||||||
'names' => array(
|
'names' => array(
|
||||||
'core.pkg.css' => 'f4d1cd07',
|
'core.pkg.css' => '1601392f',
|
||||||
'core.pkg.js' => '75599122',
|
'core.pkg.js' => '75599122',
|
||||||
'darkconsole.pkg.js' => '8ab24e01',
|
'darkconsole.pkg.js' => '8ab24e01',
|
||||||
'differential.pkg.css' => '5a0b221c',
|
'differential.pkg.css' => '5a0b221c',
|
||||||
|
@ -28,7 +28,7 @@ return array(
|
||||||
'rsrc/css/aphront/phabricator-nav-view.css' => '7aeaf435',
|
'rsrc/css/aphront/phabricator-nav-view.css' => '7aeaf435',
|
||||||
'rsrc/css/aphront/table-view.css' => '3e77fefe',
|
'rsrc/css/aphront/table-view.css' => '3e77fefe',
|
||||||
'rsrc/css/aphront/tokenizer.css' => '82ce2142',
|
'rsrc/css/aphront/tokenizer.css' => '82ce2142',
|
||||||
'rsrc/css/aphront/tooltip.css' => '4099b97e',
|
'rsrc/css/aphront/tooltip.css' => '7672b60f',
|
||||||
'rsrc/css/aphront/transaction.css' => '042fc4bb',
|
'rsrc/css/aphront/transaction.css' => '042fc4bb',
|
||||||
'rsrc/css/aphront/two-column.css' => '16ab3ad2',
|
'rsrc/css/aphront/two-column.css' => '16ab3ad2',
|
||||||
'rsrc/css/aphront/typeahead.css' => '0e403212',
|
'rsrc/css/aphront/typeahead.css' => '0e403212',
|
||||||
|
@ -506,7 +506,7 @@ return array(
|
||||||
'aphront-panel-view-css' => '8427b78d',
|
'aphront-panel-view-css' => '8427b78d',
|
||||||
'aphront-table-view-css' => '3e77fefe',
|
'aphront-table-view-css' => '3e77fefe',
|
||||||
'aphront-tokenizer-control-css' => '82ce2142',
|
'aphront-tokenizer-control-css' => '82ce2142',
|
||||||
'aphront-tooltip-css' => '4099b97e',
|
'aphront-tooltip-css' => '7672b60f',
|
||||||
'aphront-two-column-view-css' => '16ab3ad2',
|
'aphront-two-column-view-css' => '16ab3ad2',
|
||||||
'aphront-typeahead-control-css' => '0e403212',
|
'aphront-typeahead-control-css' => '0e403212',
|
||||||
'auth-css' => '1e655982',
|
'auth-css' => '1e655982',
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
.jx-tooltip-container {
|
.jx-tooltip-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.jx-tooltip-inner {
|
.jx-tooltip-inner {
|
||||||
|
|
Loading…
Reference in a new issue