| 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 21 matching lines...) Expand all Loading... |
| 32 flex: auto; | 32 flex: auto; |
| 33 position: relative; | 33 position: relative; |
| 34 } | 34 } |
| 35 | 35 |
| 36 #sources-panel-sources-view .sources-toolbar { | 36 #sources-panel-sources-view .sources-toolbar { |
| 37 display: flex; | 37 display: flex; |
| 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 z-index: 0; |
| 42 } | 43 } |
| 43 | 44 |
| 44 .sources-toolbar .toolbar { | 45 .sources-toolbar .toolbar { |
| 45 cursor: default; | 46 cursor: default; |
| 46 } | 47 } |
| 47 | 48 |
| 48 .sources-toolbar-spacer { | 49 .sources-toolbar-spacer { |
| 49 flex: auto; | 50 flex: auto; |
| 50 pointer-events: none; | 51 pointer-events: none; |
| 51 } | 52 } |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 90% { background-color: rgba(158, 54, 153, 0); } | 165 90% { background-color: rgba(158, 54, 153, 0); } |
| 165 to { background-color: transparent; } | 166 to { background-color: transparent; } |
| 166 } | 167 } |
| 167 | 168 |
| 168 @keyframes source-line-modification-foreground-fadeout { | 169 @keyframes source-line-modification-foreground-fadeout { |
| 169 from { color: white; } | 170 from { color: white; } |
| 170 50% { color: white; } | 171 50% { color: white; } |
| 171 90% { color: intial; } | 172 90% { color: intial; } |
| 172 to { color: intial; } | 173 to { color: intial; } |
| 173 } | 174 } |
| OLD | NEW |