2015-08-10 23:55:43 +02:00
|
|
|
/**
|
|
|
|
* @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;
|
|
|
|
}
|
2015-08-17 02:50:11 +02:00
|
|
|
|
|
|
|
.phui-two-column-view pre {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|