| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #sources-panel-sources-view { | 31 #sources-panel-sources-view { |
| 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 position: relative; | 38 position: relative; |
| 39 flex: 0 0 20px; | 39 flex: 0 0 20px; |
| 40 background-color: #eee; | 40 background-color: #f3f3f3; |
| 41 border-top: 1px solid rgb(196,196,196); | 41 border-top: 1px solid rgb(196,196,196); |
| 42 overflow: hidden; | 42 overflow: hidden; |
| 43 } | 43 } |
| 44 | 44 |
| 45 .material #sources-panel-sources-view .sources-toolbar { | 45 .material #sources-panel-sources-view .sources-toolbar { |
| 46 flex: 0 0 24px; | 46 flex: 0 0 24px; |
| 47 } | 47 } |
| 48 | 48 |
| 49 #sources-panel-sources-view .sources-toolbar .toolbar { | 49 #sources-panel-sources-view .sources-toolbar .toolbar { |
| 50 margin-top: -2px; | 50 margin-top: -2px; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 to { | 119 to { |
| 120 background-color: inherit; | 120 background-color: inherit; |
| 121 color: inherit; | 121 color: inherit; |
| 122 } | 122 } |
| 123 } | 123 } |
| 124 | 124 |
| 125 .source-frame-value-update-highlight { | 125 .source-frame-value-update-highlight { |
| 126 -webkit-animation: source-frame-value-update-highlight-animation 0.8s 1 cubi
c-bezier(0, 0, 0.2, 1); | 126 -webkit-animation: source-frame-value-update-highlight-animation 0.8s 1 cubi
c-bezier(0, 0, 0.2, 1); |
| 127 border-radius: 2px; | 127 border-radius: 2px; |
| 128 } | 128 } |
| OLD | NEW |