1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Normalize spacing a little with Typeahead Browse

Summary: Minor spacing updates. Ref T7841

Test Plan:
Lots of zoooooom.

{F375573}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T7841

Differential Revision: https://secure.phabricator.com/D12464
This commit is contained in:
Chad Little 2015-04-18 12:27:43 -07:00
parent e5b97cd17c
commit 7c7a42f6c8
2 changed files with 11 additions and 6 deletions

View file

@ -30,7 +30,7 @@ return array(
'rsrc/css/aphront/tokenizer.css' => 'c10c061e', 'rsrc/css/aphront/tokenizer.css' => 'c10c061e',
'rsrc/css/aphront/tooltip.css' => '7672b60f', 'rsrc/css/aphront/tooltip.css' => '7672b60f',
'rsrc/css/aphront/two-column.css' => '16ab3ad2', 'rsrc/css/aphront/two-column.css' => '16ab3ad2',
'rsrc/css/aphront/typeahead-browse.css' => '343ab59f', 'rsrc/css/aphront/typeahead-browse.css' => 'efe293a0',
'rsrc/css/aphront/typeahead.css' => '0e403212', 'rsrc/css/aphront/typeahead.css' => '0e403212',
'rsrc/css/application/almanac/almanac.css' => 'dbb9b3af', 'rsrc/css/application/almanac/almanac.css' => 'dbb9b3af',
'rsrc/css/application/auth/auth.css' => '1e655982', 'rsrc/css/application/auth/auth.css' => '1e655982',
@ -838,7 +838,7 @@ return array(
'sprite-tokens-css' => '1706b943', 'sprite-tokens-css' => '1706b943',
'syntax-highlighting-css' => '56c1ba38', 'syntax-highlighting-css' => '56c1ba38',
'tokens-css' => '3d0f239e', 'tokens-css' => '3d0f239e',
'typeahead-browse-css' => '343ab59f', 'typeahead-browse-css' => 'efe293a0',
'unhandled-exception-css' => '37d4f9a2', 'unhandled-exception-css' => '37d4f9a2',
), ),
'requires' => array( 'requires' => array(

View file

@ -28,9 +28,9 @@
.typeahead-browse-frame { .typeahead-browse-frame {
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
padding: 4px;
height: 260px; height: 260px;
border: 1px solid {$lightgreyborder}; border: 1px solid {$lightblueborder};
border-bottom: 1px solid {$blueborder};
} }
.typeahead-browse-frame.loading { .typeahead-browse-frame.loading {
@ -38,7 +38,7 @@
} }
.typeahead-browse-header { .typeahead-browse-header {
padding: 4px 0; padding: 0 0 8px 0;
} }
input.typeahead-browse-input { input.typeahead-browse-input {
@ -56,5 +56,10 @@ input.typeahead-browse-input {
.typeahead-browse-item button { .typeahead-browse-item button {
float: right; float: right;
margin: 2px 4px; margin: 2px 6px;
}
.typeahead-browse-item a.jx-tokenizer-token {
margin-top: 1px;
margin-left: 6px;
} }