Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/phui/phui-left-right.css
12241 views
1
/**
2
* @provides phui-left-right-css
3
*/
4
5
.phui-left-right-view {
6
display: table;
7
width: 100%;
8
}
9
10
.phui-lr-container {
11
display: table-row;
12
}
13
14
.phui-left-view {
15
display: table-cell;
16
text-align: left;
17
}
18
19
.phui-right-view {
20
display: table-cell;
21
text-align: right;
22
}
23
24
.phui-left-view .button {
25
margin-right: 8px;
26
}
27
28
.phui-right-view .button {
29
margin-left: 8px;
30
}
31
32
.phui-lr-view-top .phui-left-view,
33
.phui-lr-view-top .phui-right-view {
34
vertical-align: top;
35
}
36
37
.phui-lr-view-bottom .phui-left-view,
38
.phui-lr-view-bottom .phui-right-view {
39
vertical-align: bottom;
40
}
41
42