mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7212e825fa
Summary: Fixes T9154, tables have special needs with widths and pres Test Plan: Test a long piece of code in a Ponder question Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T9154 Differential Revision: https://secure.phabricator.com/D13904
37 lines
680 B
CSS
37 lines
680 B
CSS
/**
|
|
* @provides phui-two-column-view-css
|
|
*/
|
|
|
|
.phui-two-column-view {
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
|
|
.phui-two-column-row {
|
|
display: table-row;
|
|
}
|
|
|
|
.device-desktop .phui-two-column-view .phui-main-column {
|
|
display: table-cell;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.device-desktop .phui-two-column-view .phui-side-column {
|
|
width: 320px;
|
|
display: table-cell;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.device-desktop .phui-two-column-view
|
|
.phui-main-column .phui-object-box:first-child {
|
|
margin: 0 16px 0 16px;
|
|
}
|
|
|
|
.device-desktop .phui-two-column-view
|
|
.phui-side-column .phui-object-box:first-child {
|
|
margin: 0 16px 16px 0;
|
|
}
|
|
|
|
.phui-two-column-view pre {
|
|
white-space: pre-wrap;
|
|
}
|