mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 11:30:55 +01:00
Fix firefox float bug in Conphernce menu
Summary: These floats were wonky in FF, adding some hardening to make sure they clear. Test Plan: Firefox, Chrome, IE. {F1815981} Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16547
This commit is contained in:
parent
5d8b5c0ee3
commit
98a62c9e49
3 changed files with 5 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
return array(
|
||||
'names' => array(
|
||||
'conpherence.pkg.css' => 'afbb036b',
|
||||
'conpherence.pkg.css' => 'fdc05791',
|
||||
'core.pkg.css' => '1ca373de',
|
||||
'core.pkg.js' => '1d376fa9',
|
||||
'darkconsole.pkg.js' => 'e7393ebb',
|
||||
|
@ -46,7 +46,7 @@ return array(
|
|||
'rsrc/css/application/config/setup-issue.css' => 'f794cfc3',
|
||||
'rsrc/css/application/config/unhandled-exception.css' => '4c96257a',
|
||||
'rsrc/css/application/conpherence/durable-column.css' => '194ac487',
|
||||
'rsrc/css/application/conpherence/menu.css' => '67235d90',
|
||||
'rsrc/css/application/conpherence/menu.css' => '8344d122',
|
||||
'rsrc/css/application/conpherence/message-pane.css' => 'ee0e27be',
|
||||
'rsrc/css/application/conpherence/notification.css' => '6cdcc253',
|
||||
'rsrc/css/application/conpherence/transaction.css' => '2c71247c',
|
||||
|
@ -617,7 +617,7 @@ return array(
|
|||
'config-options-css' => '0ede4c9b',
|
||||
'config-page-css' => '8798e14f',
|
||||
'conpherence-durable-column-view' => '194ac487',
|
||||
'conpherence-menu-css' => '67235d90',
|
||||
'conpherence-menu-css' => '8344d122',
|
||||
'conpherence-message-pane-css' => 'ee0e27be',
|
||||
'conpherence-notification-css' => '6cdcc253',
|
||||
'conpherence-thread-manager' => '01774ab2',
|
||||
|
|
|
@ -228,7 +228,7 @@ final class ConpherenceThreadListView extends AphrontView {
|
|||
->setHref('/conpherence/new/')
|
||||
->setWorkflow(true);
|
||||
|
||||
$custom = array($rooms, $icons);
|
||||
$custom = phutil_tag_div('grouped', array($rooms, $icons));
|
||||
|
||||
$item = id(new PHUIListItemView())
|
||||
->setType(PHUIListItemView::TYPE_CUSTOM)
|
||||
|
|
|
@ -58,6 +58,7 @@
|
|||
color: {$darkgreytext};
|
||||
font-weight: bold;
|
||||
font-size: {$smallerfontsize};
|
||||
float: left;
|
||||
}
|
||||
|
||||
.conpherence-menu-pane.phabricator-side-menu .room-list-icons {
|
||||
|
|
Loading…
Reference in a new issue