| OLD | NEW |
| (Empty) |
| 1 /* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file */ | |
| 2 /* for details. All rights reserved. Use of this source code is governed by a */ | |
| 3 /* BSD-style license that can be found in the LICENSE file. */ | |
| 4 | |
| 5 .CodeMirror, .CodeMirror-scroll { | |
| 6 margin: 0px; | |
| 7 height:100%; | |
| 8 } | |
| 9 | |
| 10 body, | |
| 11 html { | |
| 12 margin:0; | |
| 13 padding:0; | |
| 14 } | |
| 15 | |
| 16 .main { | |
| 17 width:100%; | |
| 18 height:100%; | |
| 19 } | |
| 20 | |
| 21 .left-pane, | |
| 22 .right-pane { | |
| 23 width:100%; | |
| 24 height:100%; | |
| 25 margin:0 auto; | |
| 26 border:1px solid #aaa; | |
| 27 border-top:0px; | |
| 28 } | |
| 29 .right-pane { | |
| 30 border-left:0px; | |
| 31 } | |
| 32 | |
| 33 .editor { | |
| 34 height:475px; | |
| 35 overflow: auto; | |
| 36 } | |
| 37 | |
| 38 .output { | |
| 39 height:475px; | |
| 40 overflow: auto; | |
| 41 } | |
| 42 | |
| 43 .hidden { | |
| 44 display: none; | |
| 45 } | |
| 46 | |
| 47 .tabs { | |
| 48 list-style-type: none; | |
| 49 padding: 0; | |
| 50 margin: 0; | |
| 51 border-bottom: 1px solid #aaa; | |
| 52 } | |
| 53 | |
| 54 .tab { | |
| 55 display:inline-block; | |
| 56 padding:5px 15px; | |
| 57 margin:0px; | |
| 58 background-color: #eee; | |
| 59 color: black; | |
| 60 border: 0px; | |
| 61 border-right: 1px solid #aaa; | |
| 62 font-weight: bold; | |
| 63 } | |
| 64 | |
| 65 .tab-selected { | |
| 66 background-color: #aaa; | |
| 67 color:black; | |
| 68 } | |
| 69 | |
| 70 .console { | |
| 71 background-color: #555; | |
| 72 color: white; | |
| 73 text-decoration: bold; | |
| 74 margin: 0px; | |
| 75 font-weight: bold; | |
| 76 font-family: monospace; | |
| 77 width: 100%; | |
| 78 } | |
| 79 | |
| 80 .console-line { | |
| 81 margin: 0px; | |
| 82 padding: 2px; | |
| 83 display: block; | |
| 84 } | |
| 85 | |
| 86 #results { | |
| 87 overflow-y: scroll; | |
| 88 } | |
| 89 | |
| 90 #resultFrame { | |
| 91 border: 0px; | |
| 92 } | |
| 93 | |
| 94 .compile_error { | |
| 95 background: #c55; | |
| 96 text-decoration: underline red; | |
| 97 } | |
| 98 | |
| 99 .compile_warning { | |
| 100 background: orange; | |
| 101 } | |
| 102 | |
| 103 .hbox, .vbox { | |
| 104 display: -webkit-box; | |
| 105 -webkit-box-align: stretch; | |
| 106 } | |
| 107 | |
| 108 .vbox > *, | |
| 109 .hbox > * { | |
| 110 -webkit-box-flex: 1; | |
| 111 } | |
| 112 | |
| 113 .vbox { | |
| 114 -webkit-box-orient: vertical; | |
| 115 } | |
| 116 | |
| 117 .hbox { | |
| 118 -moz-box-orient: horizontal; | |
| 119 } | |
| OLD | NEW |