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

Side by Side Diff: Source/devtools/front_end/cm/cmdevtools.css

Issue 219413003: DevTools: promote CodeMirror scrollbars to a discrete rendering layer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .CodeMirror * { 1 .CodeMirror * {
2 box-sizing: content-box; 2 box-sizing: content-box;
3 } 3 }
4 4
5 .CodeMirror { 5 .CodeMirror {
6 line-height: 1.2em !important; 6 line-height: 1.2em !important;
7 background-color: transparent !important; 7 background-color: transparent !important;
8 } 8 }
9 9
10 .CodeMirror .source-frame-eval-expression { 10 .CodeMirror .source-frame-eval-expression {
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 235
236 .CodeMirror .webkit-html-warning-message { 236 .CodeMirror .webkit-html-warning-message {
237 background-color: rgb(100%, 62%, 42%); 237 background-color: rgb(100%, 62%, 42%);
238 border: 2px solid rgb(100%, 52%, 21%); 238 border: 2px solid rgb(100%, 52%, 21%);
239 } 239 }
240 240
241 .CodeMirror .webkit-html-error-message { 241 .CodeMirror .webkit-html-error-message {
242 background-color: rgb(100%, 42%, 42%); 242 background-color: rgb(100%, 42%, 42%);
243 border: 2px solid rgb(100%, 31%, 31%); 243 border: 2px solid rgb(100%, 31%, 31%);
244 } 244 }
245
246 /** @see crbug.com/358161 */
247 .CodeMirror .CodeMirror-vscrollbar, .CodeMirror .CodeMirror-hscrollbar {
248 -webkit-transform: translateZ(0);
249 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698