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 margin-top: 20px; | |
98 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; | |
99 white-space: pre; | |
chenwilliam
2017/02/25 00:56:43
we don't need this anymore right?
luoe
2017/03/09 18:48:28
Done.
| |
100 line-height: 2; | |
101 } | |
102 | |
103 .sources-placeholder-row { | |
104 display: flex; | |
105 } | |
106 | |
107 .sources-placeholder-key { | |
108 flex: 1; | |
109 text-align: right; | |
110 padding-right: 15px | |
111 } | |
112 | |
113 .sources-placeholder-value { | |
114 flex: 1; | |
115 padding-left: 15px | |
116 } | |
117 | |
95 @-webkit-keyframes source-frame-value-update-highlight-animation { | 118 @-webkit-keyframes source-frame-value-update-highlight-animation { |
96 from { | 119 from { |
97 background-color: inherit; | 120 background-color: inherit; |
98 color: inherit; | 121 color: inherit; |
99 } | 122 } |
100 10% { | 123 10% { |
101 background-color: rgb(158, 54, 153); | 124 background-color: rgb(158, 54, 153); |
102 color: white; | 125 color: white; |
103 } | 126 } |
104 to { | 127 to { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
164 90% { background-color: rgba(158, 54, 153, 0); } | 187 90% { background-color: rgba(158, 54, 153, 0); } |
165 to { background-color: transparent; } | 188 to { background-color: transparent; } |
166 } | 189 } |
167 | 190 |
168 @keyframes source-line-modification-foreground-fadeout { | 191 @keyframes source-line-modification-foreground-fadeout { |
169 from { color: white; } | 192 from { color: white; } |
170 50% { color: white; } | 193 50% { color: white; } |
171 90% { color: intial; } | 194 90% { color: intial; } |
172 to { color: intial; } | 195 to { color: intial; } |
173 } | 196 } |
OLD | NEW |