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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 85 |
86 #source-frame-breakpoint-condition { | 86 #source-frame-breakpoint-condition { |
87 margin: 0; | 87 margin: 0; |
88 border: 1px inset rgb(190, 190, 190) !important; | 88 border: 1px inset rgb(190, 190, 190) !important; |
89 width: 100%; | 89 width: 100%; |
90 box-shadow: none !important; | 90 box-shadow: none !important; |
91 outline: none !important; | 91 outline: none !important; |
92 -webkit-user-modify: read-write; | 92 -webkit-user-modify: read-write; |
93 } | 93 } |
94 | 94 |
| 95 .sources-placeholder { |
| 96 font-size: 14px; |
| 97 text-align: center; |
| 98 margin-top: 20px; |
| 99 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; |
| 100 line-height: 2; |
| 101 overflow: hidden; |
| 102 } |
| 103 |
| 104 .sources-placeholder-row { |
| 105 display: flex; |
| 106 text-align: center; |
| 107 white-space: nowrap; |
| 108 } |
| 109 |
| 110 .sources-placeholder-key { |
| 111 flex: 1; |
| 112 text-align: right; |
| 113 padding-right: 15px |
| 114 } |
| 115 |
| 116 .sources-placeholder-value { |
| 117 flex: 1; |
| 118 padding-left: 15px; |
| 119 text-align: left; |
| 120 } |
| 121 |
95 @-webkit-keyframes source-frame-value-update-highlight-animation { | 122 @-webkit-keyframes source-frame-value-update-highlight-animation { |
96 from { | 123 from { |
97 background-color: inherit; | 124 background-color: inherit; |
98 color: inherit; | 125 color: inherit; |
99 } | 126 } |
100 10% { | 127 10% { |
101 background-color: rgb(158, 54, 153); | 128 background-color: rgb(158, 54, 153); |
102 color: white; | 129 color: white; |
103 } | 130 } |
104 to { | 131 to { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 90% { background-color: rgba(158, 54, 153, 0); } | 191 90% { background-color: rgba(158, 54, 153, 0); } |
165 to { background-color: transparent; } | 192 to { background-color: transparent; } |
166 } | 193 } |
167 | 194 |
168 @keyframes source-line-modification-foreground-fadeout { | 195 @keyframes source-line-modification-foreground-fadeout { |
169 from { color: white; } | 196 from { color: white; } |
170 50% { color: white; } | 197 50% { color: white; } |
171 90% { color: intial; } | 198 90% { color: intial; } |
172 to { color: intial; } | 199 to { color: intial; } |
173 } | 200 } |
OLD | NEW |