mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Clean up UI spacing/fallbacks in Durable Column Header
Summary: Correct minor spacing issues, makes long Conpherence Titles fallback to ellipsis when overflow. Fixes T7541 Test Plan: Test a long and short title Conpherence. {F336174} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7541 Differential Revision: https://secure.phabricator.com/D12048
This commit is contained in:
parent
6a036f32b2
commit
e7b09fe5fe
2 changed files with 11 additions and 3 deletions
|
@ -44,7 +44,7 @@ return array(
|
|||
'rsrc/css/application/config/config-welcome.css' => '6abd79be',
|
||||
'rsrc/css/application/config/setup-issue.css' => '22270af2',
|
||||
'rsrc/css/application/config/unhandled-exception.css' => '37d4f9a2',
|
||||
'rsrc/css/application/conpherence/durable-column.css' => '51235e34',
|
||||
'rsrc/css/application/conpherence/durable-column.css' => '587fc261',
|
||||
'rsrc/css/application/conpherence/menu.css' => 'c6ac5299',
|
||||
'rsrc/css/application/conpherence/message-pane.css' => '5930260a',
|
||||
'rsrc/css/application/conpherence/notification.css' => '04a6e10a',
|
||||
|
@ -514,7 +514,7 @@ return array(
|
|||
'changeset-view-manager' => '88be0133',
|
||||
'config-options-css' => '7fedf08b',
|
||||
'config-welcome-css' => '6abd79be',
|
||||
'conpherence-durable-column-view' => '51235e34',
|
||||
'conpherence-durable-column-view' => '587fc261',
|
||||
'conpherence-menu-css' => 'c6ac5299',
|
||||
'conpherence-message-pane-css' => '5930260a',
|
||||
'conpherence-notification-css' => '04a6e10a',
|
||||
|
|
|
@ -39,12 +39,20 @@
|
|||
z-index: 1;
|
||||
}
|
||||
|
||||
.conpherence-durable-column-header .phabricator-application-menu {
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.conpherence-durable-column-header-text {
|
||||
float: left;
|
||||
padding: 12px 16px;
|
||||
padding: 13px 0 12px 12px;
|
||||
font-size: 15px;
|
||||
color: rgba(255,255,255,.8);
|
||||
width: 230px;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
border-left: 1px solid rgba(0,0,0,.2);
|
||||
}
|
||||
|
||||
.conpherence-durable-column-icon-bar {
|
||||
|
|
Loading…
Reference in a new issue