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

Side by Side Diff: resources/inspector/textViewer.css

Issue 2824040: Updating the Chrome reference build to revision 51178. This revision will cur... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/reference_builds/chrome/
Patch Set: Created 10 years, 5 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 | « resources/inspector/inspector.html ('k') | servers/chrome_launcher.exe » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .text-editor { 1 .text-editor {
2 position: absolute; 2 position: absolute;
3 top:0; 3 top:0;
4 left:0; 4 left:0;
5 right:0; 5 right:0;
6 bottom:0; 6 bottom:0;
7 white-space: pre; 7 white-space: pre;
8 overflow: auto; 8 overflow: auto;
9 } 9 }
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 position: relative; 56 position: relative;
57 top: 2px; 57 top: 2px;
58 margin: 0 4px; 58 margin: 0 4px;
59 } 59 }
60 60
61 .webkit-line-number { 61 .webkit-line-number {
62 color: rgb(128, 128, 128); 62 color: rgb(128, 128, 128);
63 background-color: rgb(240, 240, 240); 63 background-color: rgb(240, 240, 240);
64 border-right: 1px solid rgb(187, 187, 187); 64 border-right: 1px solid rgb(187, 187, 187);
65 text-align: right; 65 text-align: right;
66 vertical-align: top;
66 word-break: normal; 67 word-break: normal;
67 -webkit-user-select: none; 68 -webkit-user-select: none;
68 padding-right: 4px; 69 padding-right: 4px;
69 padding-left: 6px; 70 padding-left: 6px;
70 } 71 }
71 72
72 .webkit-line-number-outer { 73 .webkit-line-number-outer {
73 margin-right: -4px; 74 margin-right: -4px;
74 margin-left: -4px; 75 margin-left: -4px;
75 border-color: transparent; 76 border-color: transparent;
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 } 154 }
154 155
155 .webkit-highlighted-line .webkit-line-content { 156 .webkit-highlighted-line .webkit-line-content {
156 -webkit-animation: "fadeout" 2s 0s; 157 -webkit-animation: "fadeout" 2s 0s;
157 } 158 }
158 159
159 @-webkit-keyframes fadeout { 160 @-webkit-keyframes fadeout {
160 from {background-color: rgb(255, 255, 120); } 161 from {background-color: rgb(255, 255, 120); }
161 to { background-color: white; } 162 to { background-color: white; }
162 } 163 }
OLDNEW
« no previous file with comments | « resources/inspector/inspector.html ('k') | servers/chrome_launcher.exe » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698