| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 display: block; | 56 display: block; |
| 57 } | 57 } |
| 58 | 58 |
| 59 .canvas-debug-info { | 59 .canvas-debug-info { |
| 60 position: absolute; | 60 position: absolute; |
| 61 left: 0; | 61 left: 0; |
| 62 right: 0; | 62 right: 0; |
| 63 bottom: 6px; | 63 bottom: 6px; |
| 64 } | 64 } |
| 65 | 65 |
| 66 .canvas-spinner-icon { | 66 .canvas-profile-view .spinner-icon { |
| 67 content: url(Images/spinnerActiveSelected.gif); | |
| 68 position: absolute; | 67 position: absolute; |
| 69 width: 16px; | 68 width: 16px; |
| 69 height: 16px; |
| 70 right: 4px; | 70 right: 4px; |
| 71 bottom: 4px; | 71 bottom: 4px; |
| 72 } | 72 } |
| 73 | 73 |
| 74 .canvas-replay-log { | 74 .canvas-replay-log { |
| 75 position: absolute; | 75 position: absolute; |
| 76 top: 24px; | 76 top: 24px; |
| 77 left: 0; | 77 left: 0; |
| 78 right: 0; | 78 right: 0; |
| 79 bottom: 0; | 79 bottom: 0; |
| 80 } | 80 } |
| 81 | 81 |
| 82 .canvas-replay-log .data-grid { | 82 .canvas-replay-log .data-grid { |
| 83 border: none; | 83 border: none; |
| 84 } | 84 } |
| 85 | 85 |
| 86 button.status-bar-item.canvas-sidebar-show-hide-button { | 86 .canvas-profile-view button.right-sidebar-show-hide-button.canvas-sidebar-show-h
ide-button.toggled-hide { |
| 87 right: 15px; | 87 margin-right: 15px; |
| 88 z-index: 13; | |
| 89 } | |
| 90 | |
| 91 button.status-bar-item.canvas-sidebar-show-hide-button.toggled-left { | |
| 92 right: 0; | |
| 93 } | 88 } |
| 94 | 89 |
| 95 .canvas-replay-button { | 90 .canvas-replay-button { |
| 96 min-width: 32px; | 91 min-width: 32px; |
| 97 } | 92 } |
| 98 | 93 |
| 99 .canvas-replay-first-step .glyph { | 94 .canvas-replay-first-step .glyph { |
| 100 -webkit-mask-position: 0 -72px; | 95 -webkit-mask-position: 0 -72px; |
| 101 -webkit-transform: rotate(180deg); | 96 -webkit-transform: rotate(180deg); |
| 102 top: 0; | 97 top: 0; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 185 |
| 191 @-webkit-keyframes fadeout-odd { | 186 @-webkit-keyframes fadeout-odd { |
| 192 from { background-color: rgb(255, 255, 25); } | 187 from { background-color: rgb(255, 255, 25); } |
| 193 to { background-color: rgb(255, 255, 175); } | 188 to { background-color: rgb(255, 255, 175); } |
| 194 } | 189 } |
| 195 | 190 |
| 196 @-webkit-keyframes fadeout-even { | 191 @-webkit-keyframes fadeout-even { |
| 197 from { background-color: rgb(255, 255, 25); } | 192 from { background-color: rgb(255, 255, 25); } |
| 198 to { background-color: rgb(235, 235, 120); } | 193 to { background-color: rgb(235, 235, 120); } |
| 199 } | 194 } |
| OLD | NEW |