| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 } | 71 } |
| 72 | 72 |
| 73 .canvas-replay-log { | 73 .canvas-replay-log { |
| 74 position: absolute; | 74 position: absolute; |
| 75 top: 24px; | 75 top: 24px; |
| 76 left: 0; | 76 left: 0; |
| 77 right: 0; | 77 right: 0; |
| 78 bottom: 0; | 78 bottom: 0; |
| 79 } | 79 } |
| 80 | 80 |
| 81 .canvas-replay-log .data-grid { |
| 82 border: none; |
| 83 } |
| 84 |
| 81 button.status-bar-item.canvas-sidebar-show-hide-button { | 85 button.status-bar-item.canvas-sidebar-show-hide-button { |
| 82 right: 15px; | 86 right: 15px; |
| 83 z-index: 13; | 87 z-index: 13; |
| 84 } | 88 } |
| 85 | 89 |
| 86 button.status-bar-item.canvas-sidebar-show-hide-button.toggled-left { | 90 button.status-bar-item.canvas-sidebar-show-hide-button.toggled-left { |
| 87 right: 0; | 91 right: 0; |
| 88 } | 92 } |
| 89 | 93 |
| 90 .canvas-replay-button { | 94 .canvas-replay-button { |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 | 189 |
| 186 @-webkit-keyframes fadeout-odd { | 190 @-webkit-keyframes fadeout-odd { |
| 187 from { background-color: rgb(255, 255, 25); } | 191 from { background-color: rgb(255, 255, 25); } |
| 188 to { background-color: rgb(255, 255, 175); } | 192 to { background-color: rgb(255, 255, 175); } |
| 189 } | 193 } |
| 190 | 194 |
| 191 @-webkit-keyframes fadeout-even { | 195 @-webkit-keyframes fadeout-even { |
| 192 from { background-color: rgb(255, 255, 25); } | 196 from { background-color: rgb(255, 255, 25); } |
| 193 to { background-color: rgb(235, 235, 120); } | 197 to { background-color: rgb(235, 235, 120); } |
| 194 } | 198 } |
| OLD | NEW |