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

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

Issue 2651083002: DevTools: do not override font size to 11px (Closed)
Patch Set: more 11pxs Created 3 years, 10 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 background-color: rgb(203, 226, 255); 69 background-color: rgb(203, 226, 255);
70 border-radius: 7px; 70 border-radius: 7px;
71 border: 2px solid rgb(169, 172, 203); 71 border: 2px solid rgb(169, 172, 203);
72 width: 90%; 72 width: 90%;
73 pointer-events: auto; 73 pointer-events: auto;
74 } 74 }
75 75
76 .source-frame-breakpoint-message { 76 .source-frame-breakpoint-message {
77 background-color: transparent; 77 background-color: transparent;
78 font-weight: normal; 78 font-weight: normal;
79 font-size: 11px;
80 text-align: left; 79 text-align: left;
81 text-shadow: none; 80 text-shadow: none;
82 color: rgb(85, 85, 85); 81 color: rgb(85, 85, 85);
83 cursor: default; 82 cursor: default;
84 margin: 0 0 2px 0; 83 margin: 0 0 2px 0;
85 } 84 }
86 85
87 #source-frame-breakpoint-condition { 86 #source-frame-breakpoint-condition {
88 margin: 0; 87 margin: 0;
89 border: 1px inset rgb(190, 190, 190) !important; 88 border: 1px inset rgb(190, 190, 190) !important;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 90% { background-color: rgba(158, 54, 153, 0); } 164 90% { background-color: rgba(158, 54, 153, 0); }
166 to { background-color: transparent; } 165 to { background-color: transparent; }
167 } 166 }
168 167
169 @keyframes source-line-modification-foreground-fadeout { 168 @keyframes source-line-modification-foreground-fadeout {
170 from { color: white; } 169 from { color: white; }
171 50% { color: white; } 170 50% { color: white; }
172 90% { color: intial; } 171 90% { color: intial; }
173 to { color: intial; } 172 to { color: intial; }
174 } 173 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698