2017-07-11 01:01:43 +02:00
|
|
|
/**
|
|
|
|
* @provides phui-left-right-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phui-left-right-view {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-lr-container {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-left-view {
|
|
|
|
display: table-cell;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-right-view {
|
|
|
|
display: table-cell;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2017-08-21 22:07:38 +02:00
|
|
|
.phui-left-view .button {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-right-view .button {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
2017-07-11 01:01:43 +02:00
|
|
|
.phui-lr-view-top .phui-left-view,
|
|
|
|
.phui-lr-view-top .phui-right-view {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-lr-view-bottom .phui-left-view,
|
|
|
|
.phui-lr-view-bottom .phui-right-view {
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|