Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /** | |
| 2 * Style for javascript debugger. See debugger.html. | |
| 3 */ | |
| 4 | |
| 5 html,body { | |
| 6 margin: 0px; | |
| 7 padding: 0px; | |
| 8 height: 100%; | |
| 9 } | |
| 10 #output { | |
| 11 font-family: monospace; | |
| 12 background-color: #ffffff; | |
| 13 min-height: 100%; | |
| 14 } | |
| 15 #outer { | |
| 16 height: 100%; | |
| 17 width: 100%; | |
| 18 white-space: pre-wrap; | |
| 19 padding: 0px 0px 24px 0px; | |
| 20 } | |
| 21 #command-line { | |
| 22 bottom: 0px; | |
| 23 /* not quite sure why this 5px is necessary */ | |
| 24 right: 5px; | |
| 25 left: 0px; | |
| 26 position: fixed; | |
| 27 padding: 0px; | |
| 28 margin: 0px; | |
| 29 } | |
| 30 #command-line-text { | |
| 31 height: 20px; | |
| 32 display: block; | |
| 33 width: 100%; | |
| 34 font-family: monospace; | |
| 35 } | |
| OLD | NEW |