| 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 27 matching lines...) Expand all Loading... |
| 38 flex: 0 0 27px; | 38 flex: 0 0 27px; |
| 39 background-color: #f3f3f3; | 39 background-color: #f3f3f3; |
| 40 border-top: 1px solid #dadada; | 40 border-top: 1px solid #dadada; |
| 41 overflow: hidden; | 41 overflow: hidden; |
| 42 } | 42 } |
| 43 | 43 |
| 44 .sources-toolbar .toolbar { | 44 .sources-toolbar .toolbar { |
| 45 cursor: default; | 45 cursor: default; |
| 46 } | 46 } |
| 47 | 47 |
| 48 .sources-toolbar-spacer { |
| 49 flex: auto; |
| 50 pointer-events: none; |
| 51 } |
| 52 |
| 48 .source-frame-debugger-script { | 53 .source-frame-debugger-script { |
| 49 background-color: rgba(255, 255, 194, 0.5); | 54 background-color: rgba(255, 255, 194, 0.5); |
| 50 } | 55 } |
| 51 | 56 |
| 52 .-theme-with-dark-background .source-frame-debugger-script { | 57 .-theme-with-dark-background .source-frame-debugger-script { |
| 53 background-color: #444; | 58 background-color: #444; |
| 54 } | 59 } |
| 55 | 60 |
| 56 .source-frame-unsaved-committed-changes { | 61 .source-frame-unsaved-committed-changes { |
| 57 background-color: rgba(255, 225, 205, 0.40); | 62 background-color: rgba(255, 225, 205, 0.40); |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 90% { background-color: rgba(158, 54, 153, 0); } | 164 90% { background-color: rgba(158, 54, 153, 0); } |
| 160 to { background-color: transparent; } | 165 to { background-color: transparent; } |
| 161 } | 166 } |
| 162 | 167 |
| 163 @keyframes source-line-modification-foreground-fadeout { | 168 @keyframes source-line-modification-foreground-fadeout { |
| 164 from { color: white; } | 169 from { color: white; } |
| 165 50% { color: white; } | 170 50% { color: white; } |
| 166 90% { color: intial; } | 171 90% { color: intial; } |
| 167 to { color: intial; } | 172 to { color: intial; } |
| 168 } | 173 } |
| OLD | NEW |