mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix some form layout issues in settings
Summary: Form inputs with just text or certain selects had extra space. This uses better text centering. Test Plan: Review forms on all Settings pages, Custom Policy, Herald. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17005
This commit is contained in:
parent
58ea40ad64
commit
8bbed7974d
3 changed files with 10 additions and 12 deletions
|
@ -9,7 +9,7 @@ return array(
|
|||
'names' => array(
|
||||
'conpherence.pkg.css' => '0b64e988',
|
||||
'conpherence.pkg.js' => '6249a1cf',
|
||||
'core.pkg.css' => '58d21331',
|
||||
'core.pkg.css' => '37566cc9',
|
||||
'core.pkg.js' => 'e4260032',
|
||||
'darkconsole.pkg.js' => 'e7393ebb',
|
||||
'differential.pkg.css' => 'a4ba74b5',
|
||||
|
@ -131,7 +131,7 @@ return array(
|
|||
'rsrc/css/phui/phui-button.css' => '4a5fbe3d',
|
||||
'rsrc/css/phui/phui-chart.css' => '6bf6f78e',
|
||||
'rsrc/css/phui/phui-cms.css' => 'be43c8a8',
|
||||
'rsrc/css/phui/phui-comment-form.css' => '4ecc56ef',
|
||||
'rsrc/css/phui/phui-comment-form.css' => 'c953b75e',
|
||||
'rsrc/css/phui/phui-comment-panel.css' => 'f50152ad',
|
||||
'rsrc/css/phui/phui-crumbs-view.css' => '195ac419',
|
||||
'rsrc/css/phui/phui-curtain-view.css' => '947bf1a4',
|
||||
|
@ -140,7 +140,7 @@ return array(
|
|||
'rsrc/css/phui/phui-document.css' => 'c32e8dec',
|
||||
'rsrc/css/phui/phui-feed-story.css' => '44a9c8e9',
|
||||
'rsrc/css/phui/phui-fontkit.css' => '9cda225e',
|
||||
'rsrc/css/phui/phui-form-view.css' => '3fadd537',
|
||||
'rsrc/css/phui/phui-form-view.css' => 'cd79ff6a',
|
||||
'rsrc/css/phui/phui-form.css' => '2342b0e5',
|
||||
'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f',
|
||||
'rsrc/css/phui/phui-header-view.css' => '6ec8f155',
|
||||
|
@ -844,7 +844,7 @@ return array(
|
|||
'phui-calendar-month-css' => '8e10e92c',
|
||||
'phui-chart-css' => '6bf6f78e',
|
||||
'phui-cms-css' => 'be43c8a8',
|
||||
'phui-comment-form-css' => '4ecc56ef',
|
||||
'phui-comment-form-css' => 'c953b75e',
|
||||
'phui-comment-panel-css' => 'f50152ad',
|
||||
'phui-crumbs-view-css' => '195ac419',
|
||||
'phui-curtain-view-css' => '947bf1a4',
|
||||
|
@ -855,7 +855,7 @@ return array(
|
|||
'phui-font-icon-base-css' => '870a7360',
|
||||
'phui-fontkit-css' => '9cda225e',
|
||||
'phui-form-css' => '2342b0e5',
|
||||
'phui-form-view-css' => '3fadd537',
|
||||
'phui-form-view-css' => 'cd79ff6a',
|
||||
'phui-head-thing-view-css' => 'fd311e5f',
|
||||
'phui-header-view-css' => '6ec8f155',
|
||||
'phui-hovercard' => '1bd28176',
|
||||
|
|
|
@ -107,7 +107,7 @@ body.device .phui-box.phui-object-box.phui-comment-form-view {
|
|||
.phui-comment-form-view .phui-comment-action-bar {
|
||||
border-bottom: 1px solid {$thinblueborder};
|
||||
background-color: rgba(239, 243, 252, .75);
|
||||
padding: 2px 12px 4px 12px;
|
||||
padding: 4px 12px 4px 12px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
|
|
|
@ -154,10 +154,6 @@
|
|||
height: 24em;
|
||||
}
|
||||
|
||||
.aphront-form-control-select .aphront-form-input {
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
.phui-form-view .aphront-form-caption {
|
||||
font-size: {$smallerfontsize};
|
||||
color: {$bluetext};
|
||||
|
@ -198,12 +194,14 @@
|
|||
margin: .5em 2em;
|
||||
}
|
||||
|
||||
.aphront-form-control-static .aphront-form-input,
|
||||
.aphront-form-control-markup .aphront-form-input {
|
||||
padding-top: 6px;
|
||||
font-size: {$normalfontsize};
|
||||
}
|
||||
|
||||
.aphront-form-control-static .aphront-form-input {
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.aphront-form-control-togglebuttons .aphront-form-input {
|
||||
padding: 2px 0 0 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue