mirror of
https://github.com/atom/atom.git
synced 2026-01-23 22:08:08 -05:00
Using percentage dimensions to absolutely position the panes on screen where they need to be located. Flexbox would have been nice, but unfortunately I could not work around what seem to be bugs (or at least major inconveniences) in its current implementation.
39 lines
486 B
CSS
39 lines
486 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: Lucida Grande;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#root-view {
|
|
height: 100%;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
position: relative;
|
|
background-image: url(static/images/linen.png);
|
|
}
|
|
|
|
.column {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
.row {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.column > *, .row > * {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|