Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/sourcesView.css

Issue 2859623002: DevTools: Migrate from -webkit-user-modify to contenteditable (Closed)
Patch Set: Add contenteditable on attach Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 cursor: default; 82 cursor: default;
83 margin: 0 0 2px 0; 83 margin: 0 0 2px 0;
84 } 84 }
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;
93 } 92 }
94 93
95 @-webkit-keyframes source-frame-value-update-highlight-animation { 94 @-webkit-keyframes source-frame-value-update-highlight-animation {
96 from { 95 from {
97 background-color: inherit; 96 background-color: inherit;
98 color: inherit; 97 color: inherit;
99 } 98 }
100 10% { 99 10% {
101 background-color: rgb(158, 54, 153); 100 background-color: rgb(158, 54, 153);
102 color: white; 101 color: white;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 90% { background-color: rgba(158, 54, 153, 0); } 163 90% { background-color: rgba(158, 54, 153, 0); }
165 to { background-color: transparent; } 164 to { background-color: transparent; }
166 } 165 }
167 166
168 @keyframes source-line-modification-foreground-fadeout { 167 @keyframes source-line-modification-foreground-fadeout {
169 from { color: white; } 168 from { color: white; }
170 50% { color: white; } 169 50% { color: white; }
171 90% { color: intial; } 170 90% { color: intial; }
172 to { color: intial; } 171 to { color: intial; }
173 } 172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698