mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
ad382b3abe
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
45 lines
738 B
CSS
45 lines
738 B
CSS
/**
|
|
* @provides aphront-contextbar-view-css
|
|
*/
|
|
|
|
.aphront-contextbar-view {
|
|
background: #fff;
|
|
padding: 8px 16px;
|
|
border-bottom: 1px solid {$lightblueborder};
|
|
}
|
|
|
|
.device-phone .aphront-contextbar-view {
|
|
padding: 12px 8px;
|
|
}
|
|
|
|
.aphront-contextbar-content {
|
|
padding-top: 5px;
|
|
font-size: 13px;
|
|
color: {$bluetext};
|
|
}
|
|
|
|
.aphront-contextbar-buttons {
|
|
float: right;
|
|
}
|
|
|
|
.device-phone .aphront-contextbar-buttons {
|
|
float: none;
|
|
}
|
|
|
|
.aphront-contextbar-buttons label {
|
|
font-weight: bold;
|
|
color: {$bluetext};
|
|
}
|
|
|
|
.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;
|
|
}
|