1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-09 16:32:39 +01:00

Mobile fix for creating another task UI

Summary: Makes the layout more useful on mobile. Fixes T3042

Test Plan: Review layout on mobile.

Reviewers: epriestley

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Maniphest Tasks: T3042

Differential Revision: https://secure.phabricator.com/D7860
This commit is contained in:
Chad Little 2013-12-30 15:19:48 -08:00
parent 2de96c6f08
commit ad382b3abe
2 changed files with 20 additions and 3 deletions

View file

@ -853,7 +853,7 @@ celerity_register_resource_map(array(
),
'aphront-contextbar-view-css' =>
array(
'uri' => '/res/46c6248f/rsrc/css/aphront/context-bar.css',
'uri' => '/res/d2e04a0a/rsrc/css/aphront/context-bar.css',
'type' => 'css',
'requires' =>
array(

View file

@ -8,6 +8,10 @@
border-bottom: 1px solid {$lightblueborder};
}
.device-phone .aphront-contextbar-view {
padding: 12px 8px;
}
.aphront-contextbar-content {
padding-top: 5px;
font-size: 13px;
@ -18,11 +22,24 @@
float: right;
}
.device-phone .aphront-contextbar-buttons {
float: none;
}
.aphront-contextbar-buttons label {
font-weight: bold;
color: {$bluetext};
}
.aphront-contextbar-buttons a {
margin: 0 0 0 .5em;
.device-phone .aphront-contextbar-buttons label {
display: block;
margin-bottom: 4px;
}
.aphront-contextbar-buttons a {
margin: 0 0 0 8px;
}
.device-phone .aphront-contextbar-buttons a {
margin: 0 8px 0 0;
}