2016-04-14 21:36:04 +01:00
|
|
|
#container {
|
|
|
|
|
position: absolute;
|
2016-06-29 12:16:02 +01:00
|
|
|
top: 40px;
|
2016-04-14 21:36:04 +01:00
|
|
|
bottom: 0px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
right: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.full-container {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
right: 0px;
|
|
|
|
|
bottom:0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.full-container-pane {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.top-container {
|
|
|
|
|
min-height: 300px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pg-debugger-panel {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0; bottom: 0; right: 0; left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-20 09:00:25 -04:00
|
|
|
.debugger-container .breakpoints {
|
2016-06-29 12:16:02 +01:00
|
|
|
width: 0.9em;
|
2016-04-14 21:36:04 +01:00
|
|
|
}
|
|
|
|
|
|
2016-05-06 16:02:11 +05:30
|
|
|
.CodeMirror, .CodeMirror-gutters {
|
2016-06-29 12:16:02 +01:00
|
|
|
min-height: 100%;
|
2016-05-06 16:02:11 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter {
|
|
|
|
|
width: .9em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter-open,
|
|
|
|
|
.CodeMirror-foldgutter-folded {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter-open:after {
|
|
|
|
|
content: "\25BC";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter-folded:after {
|
|
|
|
|
content: "\25B6";
|
|
|
|
|
}
|