OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 | 103 |
104 .paint-profiler-canvas-container .overview-grid-dividers-background, | 104 .paint-profiler-canvas-container .overview-grid-dividers-background, |
105 .paint-profiler-canvas-container .overview-grid-window { | 105 .paint-profiler-canvas-container .overview-grid-window { |
106 bottom: 0; | 106 bottom: 0; |
107 height: auto; | 107 height: auto; |
108 } | 108 } |
109 | 109 |
110 .paint-profiler-canvas-container .overview-grid-window-resizer { | 110 .paint-profiler-canvas-container .overview-grid-window-resizer { |
111 z-index: 2000; | 111 z-index: 2000; |
112 } | 112 } |
| 113 |
| 114 .paint-profiler-view canvas { |
| 115 height: 100%; |
| 116 width: 100%; |
| 117 } |
| 118 |
| 119 .profiler-log-view .console-formatted-string { |
| 120 white-space: nowrap; |
| 121 } |
| 122 |
| 123 .profiler-log-view.section .properties { |
| 124 display: block; |
| 125 } |
OLD | NEW |