mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-12 22:50:54 +03:00
8ea4b4eb72
Only editors inside #root-view #panes are tracked as the most recent active editor. Otherwise the file finder tries to open the selected file in its own mini editor.
53 lines
734 B
CSS
53 lines
734 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);
|
|
}
|
|
|
|
#root-view #panes {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.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%;
|
|
box-sizing: border-box;
|
|
-webkit-box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, .1);
|
|
}
|
|
|
|
.row > * + * {
|
|
border-left: 5px solid #515151;
|
|
}
|
|
|
|
.column > * + * {
|
|
border-top: 5px solid #515151;
|
|
}
|